From 2e44401da063276af8f3f25bac9602caa9e4bdfe Mon Sep 17 00:00:00 2001 From: Jannik Buhr Date: Wed, 4 Sep 2024 16:24:17 +0200 Subject: [PATCH 1/4] update gh actions workflows --- .github/workflows/draft.yml | 16 ++++ .github/workflows/lint.yml | 12 --- .github/workflows/publish.yml | 51 ++++++++++++ .github/workflows/release.yml | 87 +++----------------- .github/workflows/test-local.yml | 3 +- .github/workflows/test-release.yml | 25 ------ .github/workflows/{test-pr.yml => tests.yml} | 15 ++-- 7 files changed, 86 insertions(+), 123 deletions(-) create mode 100644 .github/workflows/draft.yml delete mode 100644 .github/workflows/lint.yml create mode 100644 .github/workflows/publish.yml delete mode 100644 .github/workflows/test-release.yml rename .github/workflows/{test-pr.yml => tests.yml} (55%) diff --git a/.github/workflows/draft.yml b/.github/workflows/draft.yml new file mode 100644 index 0000000..ab7b1c3 --- /dev/null +++ b/.github/workflows/draft.yml @@ -0,0 +1,16 @@ +# Marks all newly opened pull requests as drafts +name: Draft on Open +on: + pull_request: + types: [ opened ] + +jobs: + mark-as-draft: + name: Mark as draft + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - name: Mark as draft + uses: voiceflow/draft-pr@latest + with: + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 26c0832..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: lint -on: - pull_request: - branches: [ main ] - -jobs: - lint: - if: "!startsWith(github.head_ref, 'release-please-')" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: psf/black@stable diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..0bf755a --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,51 @@ +name: publish + +on: + workflow_call: + workflow_dispatch: + + +jobs: + build: + name: Build distribution 📦 + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.x" + - name: Install pypa/build + run: >- + python3 -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: python3 -m build + - name: Store the distribution packages + uses: actions/upload-artifact@v4 + with: + name: python-package-distributions + path: dist/ + + publish-to-pypi: + name: >- + Publish Python 🐍 distribution 📦 to PyPI + needs: + - build + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/kimmdy-reactions + permissions: + id-token: write + steps: + - name: Download all the dists + uses: actions/download-artifact@v4 + with: + name: python-package-distributions + path: dist/ + - name: Publish distribution 📦 to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8891168..f189f29 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,21 +1,24 @@ name: release-please on: + workflow_dispatch: push: branches: [ main ] +permissions: + contents: write + pull-requests: write + jobs: release: runs-on: ubuntu-latest outputs: created: ${{ steps.release.outputs.release_created }} steps: - - uses: google-github-actions/release-please-action@v3 + - uses: googleapis/release-please-action@v4 id: release with: release-type: python - package-name: kimmdy-reactions - changelog-notes-type: default - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: tag stable versions if: ${{ steps.release.outputs.release_created }} run: | @@ -26,80 +29,10 @@ jobs: git push origin :stable || true git tag -a stable -m "Last Stable Release" git push origin stable - - build: + publish: needs: release if: ${{ needs.release.outputs.created }} - name: Build distribution 📦 - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.x" - - name: Install pypa/build - run: >- - python3 -m - pip install - build - --user - - name: Build a binary wheel and a source tarball - run: python3 -m build - - name: Store the distribution packages - uses: actions/upload-artifact@v3 - with: - name: python-package-distributions - path: dist/ - - publish-to-pypi: - name: >- - Publish Python 🐍 distribution 📦 to PyPI - # if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes - if: ${{ needs.release.outputs.created }} - needs: - - build - - release - runs-on: ubuntu-latest - environment: - name: pypi - url: https://pypi.org/p/kimmdy-reactions - permissions: - id-token: write # IMPORTANT: mandatory for trusted publishing - - steps: - - name: Download all the dists - uses: actions/download-artifact@v3 - with: - name: python-package-distributions - path: dist/ - - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - - publish-to-testpypi: - name: Publish Python 🐍 distribution 📦 to TestPyPI - if: ${{ needs.release.outputs.created }} - needs: - - build - - release - runs-on: ubuntu-latest - - environment: - name: testpypi - url: https://test.pypi.org/p/kimmdy-reactions - permissions: - id-token: write # IMPORTANT: mandatory for trusted publishing - - steps: - - name: Download all the dists - uses: actions/download-artifact@v3 - with: - name: python-package-distributions - path: dist/ - - name: Publish distribution 📦 to TestPyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - repository-url: https://test.pypi.org/legacy/ + id-token: write + uses: ./.github/workflows/publish.yml diff --git a/.github/workflows/test-local.yml b/.github/workflows/test-local.yml index 344691f..f90fc20 100644 --- a/.github/workflows/test-local.yml +++ b/.github/workflows/test-local.yml @@ -5,7 +5,7 @@ on: jobs: test-local: runs-on: ubuntu-latest - container: riedmiki/gromacs-plumed-python:2021 + container: riedmiki/gromacs-plumed-python:2023.5-plumed steps: - uses: actions/checkout@v3 - name: run tox @@ -19,4 +19,3 @@ jobs: name: coverage artifact path: htmlcov.zip - diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml deleted file mode 100644 index fdbd852..0000000 --- a/.github/workflows/test-release.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: test latest release -on: - pull_request: - branches: [ main ] - types: [labeled] - -jobs: - test: - if: startsWith(github.head_ref, 'release-please-') && github.event.label.name == 'testthis' - runs-on: ubuntu-latest - container: riedmiki/gromacs-plumed-python:2021 - steps: - - uses: actions/checkout@v3 - - name: run tox - run: tox - - name: zip coverage report - if: ${{ !cancelled() }} - run: zip -r htmlcov.zip htmlcov || true - - uses: actions/upload-artifact@v3 - if: ${{ !cancelled() }} - with: - name: coverage artifact - path: htmlcov.zip - - diff --git a/.github/workflows/test-pr.yml b/.github/workflows/tests.yml similarity index 55% rename from .github/workflows/test-pr.yml rename to .github/workflows/tests.yml index 1d8050b..030b94b 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/tests.yml @@ -1,26 +1,27 @@ -name: test PR +name: tests on: + workflow_call: workflow_dispatch: pull_request: branches: [ main ] - types: [labeled] + types: [opened, synchronize, reopened, ready_for_review] jobs: test: - if: github.event.label.name == 'testthis' && !startsWith(github.head_ref, 'release-please-') + if: github.event.pull_request.draft == false runs-on: ubuntu-latest - container: riedmiki/gromacs-plumed-python:2021 + container: riedmiki/gromacs-plumed-python:2023.5-plumed steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - uses: psf/black@stable - name: run tox run: tox - name: zip coverage report if: ${{ !cancelled() }} run: zip -r htmlcov.zip htmlcov || true - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: name: coverage artifact path: htmlcov.zip - From 1d23998b25cf24665f4ad9b4321d4eac739d2c41 Mon Sep 17 00:00:00 2001 From: Jannik Buhr Date: Thu, 5 Sep 2024 09:56:02 +0200 Subject: [PATCH 2/4] format --- src/homolysis/reaction.py | 4 +++- tests/test_default_reactions.py | 10 +++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/homolysis/reaction.py b/src/homolysis/reaction.py index 9a3b2e7..299dfed 100644 --- a/src/homolysis/reaction.py +++ b/src/homolysis/reaction.py @@ -80,7 +80,9 @@ def get_recipe_collection(self, files: TaskFiles): # f"plumedid: {plumedid}, atomids: {atomnrs}, atomtypes: {atomtypes}, b0: {b0}, kb: {kb}, E_dis: {E_dis}" # ) - k_avg, _ = morse_transition_rate([sum(dists) / len(dists)], b0, E_dis, kb,frequency_factor,temperature) + k_avg, _ = morse_transition_rate( + [sum(dists) / len(dists)], b0, E_dis, kb, frequency_factor, temperature + ) # averaging distances works here because we typically have # one conformational state per calculation diff --git a/tests/test_default_reactions.py b/tests/test_default_reactions.py index bc5f4d1..d1f9312 100644 --- a/tests/test_default_reactions.py +++ b/tests/test_default_reactions.py @@ -140,12 +140,12 @@ def test_morse_transition_rate(homolysis_files): [ 0.00000000e00, 0.00000000e00, - 1.01587680e-40, + 1.01587680e-40, 2.89436858e-11, - 3.69638684e-03, - 2.17458162e-01, - 2.88000000e-01, - 2.88000000e-01 + 3.69638684e-03, + 2.17458162e-01, + 2.88000000e-01, + 2.88000000e-01, ] ) fs_ref = np.asarray( From 9ba49b5241440b931db9588fb351ac921cbb429f Mon Sep 17 00:00:00 2001 From: Jannik Buhr Date: Thu, 5 Sep 2024 10:34:26 +0200 Subject: [PATCH 3/4] docs: add docs --- .github/workflows/build-docs.yml | 40 + Makefile | 29 + README.md | 25 +- _extensions/machow/interlinks/.gitignore | 3 + _extensions/machow/interlinks/_extension.yml | 7 + _extensions/machow/interlinks/interlinks.lua | 254 ++ _inv/numpy_objects.json | 1 + _inv/python_objects.json | 1 + _quarto.yml | 80 + _reference/dummyreaction.reaction.qmd | 17 + _reference/hat_naive.reaction.qmd | 17 + _reference/homolysis.reaction.qmd | 18 + _reference/index.qmd | 19 + _reference/reaction.DummyReaction.qmd | 5 + _reference/reaction.Homolysis.qmd | 6 + _reference/reaction.NaiveHAT.qmd | 5 + _reference/reaction.qmd | 17 + _sidebar.yml | 15 + docs/_reference/dummyreaction.reaction.html | 832 +++++++ docs/_reference/hat_naive.reaction.html | 836 +++++++ docs/_reference/homolysis.reaction.html | 836 +++++++ docs/_reference/index.html | 841 +++++++ docs/_reference/reaction.DummyReaction.html | 721 ++++++ docs/_reference/reaction.Homolysis.html | 721 ++++++ docs/_reference/reaction.NaiveHAT.html | 721 ++++++ docs/_reference/reaction.html | 748 ++++++ docs/index.html | 782 +++++++ docs/robots.txt | 1 + docs/search.json | 181 ++ .../bootstrap/bootstrap-dark.min.css | 12 + docs/site_libs/bootstrap/bootstrap-icons.css | 2078 +++++++++++++++++ docs/site_libs/bootstrap/bootstrap-icons.woff | Bin 0 -> 176200 bytes docs/site_libs/bootstrap/bootstrap.min.css | 12 + docs/site_libs/bootstrap/bootstrap.min.js | 7 + docs/site_libs/clipboard/clipboard.min.js | 7 + docs/site_libs/quarto-html/anchor.min.js | 9 + docs/site_libs/quarto-html/popper.min.js | 6 + .../quarto-syntax-highlighting-dark.css | 189 ++ .../quarto-syntax-highlighting.css | 205 ++ docs/site_libs/quarto-html/quarto.js | 908 +++++++ docs/site_libs/quarto-html/tippy.css | 1 + docs/site_libs/quarto-html/tippy.umd.min.js | 2 + docs/site_libs/quarto-nav/headroom.min.js | 7 + docs/site_libs/quarto-nav/quarto-nav.js | 325 +++ .../quarto-search/autocomplete.umd.js | 3 + docs/site_libs/quarto-search/fuse.min.js | 9 + docs/site_libs/quarto-search/quarto-search.js | 1290 ++++++++++ docs/sitemap.xml | 39 + index.qmd | 1 + objects.json | 1 + setup.cfg | 10 + www/theme-dark.scss | 32 + www/theme.scss | 55 + 53 files changed, 12981 insertions(+), 6 deletions(-) create mode 100644 .github/workflows/build-docs.yml create mode 100644 Makefile create mode 100644 _extensions/machow/interlinks/.gitignore create mode 100644 _extensions/machow/interlinks/_extension.yml create mode 100644 _extensions/machow/interlinks/interlinks.lua create mode 100644 _inv/numpy_objects.json create mode 100644 _inv/python_objects.json create mode 100644 _quarto.yml create mode 100644 _reference/dummyreaction.reaction.qmd create mode 100644 _reference/hat_naive.reaction.qmd create mode 100644 _reference/homolysis.reaction.qmd create mode 100644 _reference/index.qmd create mode 100644 _reference/reaction.DummyReaction.qmd create mode 100644 _reference/reaction.Homolysis.qmd create mode 100644 _reference/reaction.NaiveHAT.qmd create mode 100644 _reference/reaction.qmd create mode 100644 _sidebar.yml create mode 100644 docs/_reference/dummyreaction.reaction.html create mode 100644 docs/_reference/hat_naive.reaction.html create mode 100644 docs/_reference/homolysis.reaction.html create mode 100644 docs/_reference/index.html create mode 100644 docs/_reference/reaction.DummyReaction.html create mode 100644 docs/_reference/reaction.Homolysis.html create mode 100644 docs/_reference/reaction.NaiveHAT.html create mode 100644 docs/_reference/reaction.html create mode 100644 docs/index.html create mode 100644 docs/robots.txt create mode 100644 docs/search.json create mode 100644 docs/site_libs/bootstrap/bootstrap-dark.min.css create mode 100644 docs/site_libs/bootstrap/bootstrap-icons.css create mode 100644 docs/site_libs/bootstrap/bootstrap-icons.woff create mode 100644 docs/site_libs/bootstrap/bootstrap.min.css create mode 100644 docs/site_libs/bootstrap/bootstrap.min.js create mode 100644 docs/site_libs/clipboard/clipboard.min.js create mode 100644 docs/site_libs/quarto-html/anchor.min.js create mode 100644 docs/site_libs/quarto-html/popper.min.js create mode 100644 docs/site_libs/quarto-html/quarto-syntax-highlighting-dark.css create mode 100644 docs/site_libs/quarto-html/quarto-syntax-highlighting.css create mode 100644 docs/site_libs/quarto-html/quarto.js create mode 100644 docs/site_libs/quarto-html/tippy.css create mode 100644 docs/site_libs/quarto-html/tippy.umd.min.js create mode 100644 docs/site_libs/quarto-nav/headroom.min.js create mode 100644 docs/site_libs/quarto-nav/quarto-nav.js create mode 100644 docs/site_libs/quarto-search/autocomplete.umd.js create mode 100644 docs/site_libs/quarto-search/fuse.min.js create mode 100644 docs/site_libs/quarto-search/quarto-search.js create mode 100644 docs/sitemap.xml create mode 100644 index.qmd create mode 100644 objects.json create mode 100644 www/theme-dark.scss create mode 100644 www/theme.scss diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml new file mode 100644 index 0000000..395cbe4 --- /dev/null +++ b/.github/workflows/build-docs.yml @@ -0,0 +1,40 @@ +name: docs + +on: + workflow_call: + workflow_dispatch: + pull_request: + branches: [ main ] + types: [labeled] + +permissions: + contents: write + +jobs: + build-docs: + runs-on: ubuntu-latest + if: github.event.label.name == 'docthis' + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.10" + - uses: quarto-dev/quarto-actions/setup@v2 + with: + version: "1.5.53" + - name: Install dependencies + run: | + python -m pip install .[dev] + - name: Build docs + run: | + make docs + - name: Commit rendered docs + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "chore(docs): render docs" + commit_user_name: "github-actions[bot]" + commit_user_email: "github-actions[bot]@users.noreply.github.com" + commit_author: "github-actions[bot] " + file_pattern: "docs/ _inv/ _reference/ _freeze/" + push_options: "--force" + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..24c834b --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +.PHONY: Makefile setup-docs preview docs clear-docs watch + +preview: + quarto preview + +watch: + python -m quartodoc build --watch + +docs: + python -m quartodoc build + python -m quartodoc interlinks + quarto render + +setup-docs: clear-docs + quarto add --no-prompt machow/quartodoc + python -m quartodoc build --verbose + python -m quartodoc interlinks + quarto render + +clear-docs: + rm -rf docs + rm -rf .quarto + rm -rf _inv + rm -rf _reference + rm -f ./objects.json + rm -f _sidebar.yml + +format: + black src tests diff --git a/README.md b/README.md index 0fa61b5..3504644 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,28 @@ -# Reaction template for KIMMDY +# A collection of simple reactions for KIMMDY + +[![test latest release](https://github.com/graeter-group/kimmdy-reactions/actions/workflows/tests.yml/badge.svg?branch=release-please--branches--main)](https://github.com/graeter-group/kimmdy-reactions/actions/workflows/tests.yml/?branch=release-please--branches--main) + +## Documentation + +See [KIMMDY documentation](https://graeter-group.github.io/kimmdy/). ## Installation -Should get installed together with kimmdy. If you want to install it separatly: -* Download -* `pip install -e ./` or for development: `pip install -r requirements.txt` +Together with KIMMDY + +```bash +pip installl kimmdy[reactions] +``` + +To install it separatly: + +```bash +pip install kimmdy-reactions +``` ## Making your own + * Implement your reaction as a subclass of `kimmdy.reaction.Reaction` * Register your Reaction class in the **[options.entry_points]** section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy! - - diff --git a/_extensions/machow/interlinks/.gitignore b/_extensions/machow/interlinks/.gitignore new file mode 100644 index 0000000..5a1bf0b --- /dev/null +++ b/_extensions/machow/interlinks/.gitignore @@ -0,0 +1,3 @@ +*.html +*.pdf +*_files/ diff --git a/_extensions/machow/interlinks/_extension.yml b/_extensions/machow/interlinks/_extension.yml new file mode 100644 index 0000000..c8a8121 --- /dev/null +++ b/_extensions/machow/interlinks/_extension.yml @@ -0,0 +1,7 @@ +title: Interlinks +author: Michael Chow +version: 1.1.0 +quarto-required: ">=1.2.0" +contributes: + filters: + - interlinks.lua diff --git a/_extensions/machow/interlinks/interlinks.lua b/_extensions/machow/interlinks/interlinks.lua new file mode 100644 index 0000000..47aa61f --- /dev/null +++ b/_extensions/machow/interlinks/interlinks.lua @@ -0,0 +1,254 @@ +local function read_inv_text(filename) + -- read file + local file = io.open(filename, "r") + if file == nil then + return nil + end + local str = file:read("a") + file:close() + + + local project = str:match("# Project: (%S+)") + local version = str:match("# Version: (%S+)") + + local data = {project = project, version = version, items = {}} + + local ptn_data = + "^" .. + "(.-)%s+" .. -- name + "([%S:]-):" .. -- domain + "([%S]+)%s+" .. -- role + "(%-?%d+)%s+" .. -- priority + "(%S*)%s+" .. -- uri + "(.-)\r?$" -- dispname + + + -- Iterate through each line in the file content + for line in str:gmatch("[^\r\n]+") do + if not line:match("^#") then + -- Match each line against the pattern + local name, domain, role, priority, uri, dispName = line:match(ptn_data) + + -- if name is nil, raise an error + if name == nil then + error("Error parsing line: " .. line) + end + + data.items[#data.items + 1] = { + name = name, + domain = domain, + role = role, + priority = priority, + uri = uri, + dispName = dispName + } + end + end + return data +end + +local function read_json(filename) + + local file = io.open(filename, "r") + if file == nil then + return nil + end + local str = file:read("a") + file:close() + + local decoded = quarto.json.decode(str) + return decoded +end + +local function read_inv_text_or_json(base_name) + local file = io.open(base_name .. ".txt", "r") + if file then + -- TODO: refactors so we don't just close the file immediately + io.close(file) + json = read_inv_text(base_name .. ".txt") + + else + json = read_json(base_name .. ".json") + end + + return json +end + +local inventory = {} + +local function lookup(search_object) + + local results = {} + for _, inv in ipairs(inventory) do + for _, item in ipairs(inv.items) do + -- e.g. :external+:::`` + if item.inv_name and item.inv_name ~= search_object.inv_name then + goto continue + end + + if item.name ~= search_object.name then + goto continue + end + + if search_object.role and item.role ~= search_object.role then + goto continue + end + + if search_object.domain and item.domain ~= search_object.domain then + goto continue + else + if search_object.domain or item.domain == "py" then + table.insert(results, item) + end + + goto continue + end + + ::continue:: + end + end + + if #results == 1 then + return results[1] + end + if #results > 1 then + quarto.log.warning("Found multiple matches for " .. search_object.name .. ", using the first match.") + return results[1] + end + if #results == 0 then + quarto.log.warning("Found no matches for object:\n", search_object) + end + + return nil +end + +local function mysplit (inputstr, sep) + if sep == nil then + sep = "%s" + end + local t={} + for str in string.gmatch(inputstr, "([^"..sep.."]+)") do + table.insert(t, str) + end + return t +end + +local function normalize_role(role) + if role == "func" then + return "function" + end + return role +end + +local function build_search_object(str) + local starts_with_colon = str:sub(1, 1) == ":" + local search = {} + if starts_with_colon then + local t = mysplit(str, ":") + if #t == 2 then + -- e.g. :py:func:`my_func` + search.role = normalize_role(t[1]) + search.name = t[2]:match("%%60(.*)%%60") + elseif #t == 3 then + -- e.g. :py:func:`my_func` + search.domain = t[1] + search.role = normalize_role(t[2]) + search.name = t[3]:match("%%60(.*)%%60") + elseif #t == 4 then + -- e.g. :ext+inv:py:func:`my_func` + search.external = true + + search.inv_name = t[1]:match("external%+(.*)") + search.domain = t[2] + search.role = normalize_role(t[3]) + search.name = t[4]:match("%%60(.*)%%60") + else + quarto.log.warning("couldn't parse this link: " .. str) + return {} + end + else + search.name = str:match("%%60(.*)%%60") + end + + if search.name == nil then + quarto.log.warning("couldn't parse this link: " .. str) + return {} + end + + if search.name:sub(1, 1) == "~" then + search.shortened = true + search.name = search.name:sub(2, -1) + end + return search +end + +local function report_broken_link(link, search_object, replacement) + -- TODO: how to unescape html elements like [? + return pandoc.Code(pandoc.utils.stringify(link.content)) +end + +function Link(link) + -- do not process regular links ---- + if not link.target:match("%%60") then + return link + end + + -- lookup item ---- + local search = build_search_object(link.target) + local item = lookup(search) + + -- determine replacement, used if no link text specified ---- + local original_text = pandoc.utils.stringify(link.content) + local replacement = search.name + if search.shortened then + local t = mysplit(search.name, ".") + replacement = t[#t] + end + + -- set link text ---- + if original_text == "" and replacement ~= nil then + link.content = pandoc.Code(replacement) + end + + -- report broken links ---- + if item == nil then + return report_broken_link(link, search) + end + link.target = item.uri:gsub("%$$", search.name) + + + return link +end + +local function fixup_json(json, prefix) + for _, item in ipairs(json.items) do + item.uri = prefix .. item.uri + end + table.insert(inventory, json) +end + +return { + { + Meta = function(meta) + local json + local prefix + if meta.interlinks and meta.interlinks.sources then + for k, v in pairs(meta.interlinks.sources) do + local base_name = quarto.project.offset .. "/_inv/" .. k .. "_objects" + json = read_inv_text_or_json(base_name) + prefix = pandoc.utils.stringify(v.url) + if json ~= nil then + fixup_json(json, prefix) + end + end + end + json = read_inv_text_or_json(quarto.project.offset .. "/objects") + if json ~= nil then + fixup_json(json, "/") + end + end + }, + { + Link = Link + } +} diff --git a/_inv/numpy_objects.json b/_inv/numpy_objects.json new file mode 100644 index 0000000..977234c --- /dev/null +++ b/_inv/numpy_objects.json @@ -0,0 +1 @@ +{"project": "NumPy", "version": "2.1", "count": 8444, "items": [{"name": "NO_IMPORT_ARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NO_IMPORT_UFUNC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "NPY_1_PI", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_2_PI", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_ALLOW_C_API", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ALLOW_C_API_DEF", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ALLOW_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ANYORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ORDER.$", "dispname": "-"}, {"name": "NPY_AO", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.base", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.data", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.descr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.dimensions", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.nd", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.strides", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_AO.weakreflist", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_API_SYMBOL_ATTRIBUTE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAYMETHOD_FLAGS", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAYMETHOD_FLAGS.NPY_METH_IS_REORDERABLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAYMETHOD_FLAGS.NPY_METH_NO_FLOATINGPOINT_ERRORS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAYMETHOD_FLAGS.NPY_METH_REQUIRES_PYAPI", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAYMETHOD_FLAGS.NPY_METH_RUNTIME_FLAGS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAYMETHOD_FLAGS.NPY_METH_SUPPORTS_UNALIGNED", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_ALIGNED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_BEHAVED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_BEHAVED_NS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_CARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_CARRAY_RO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_C_CONTIGUOUS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_DEFAULT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_ELEMENTSTRIDES", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_ENSUREARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_ENSURECOPY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_FARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_FARRAY_RO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_FORCECAST", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_F_CONTIGUOUS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_INOUT_ARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_INOUT_FARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_IN_ARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_IN_FARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_NOTSWAPPED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_OUT_ARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_OUT_FARRAY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_OWNDATA", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_UPDATE_ALL", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_WRITEABLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARRAY_WRITEBACKIFCOPY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ARR_HAS_DESCR", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/arrays.interface.html#c.$", "dispname": "-"}, {"name": "NPY_AUXDATA_CLONE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_AUXDATA_CLONE.auxdata", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_AUXDATA_CLONE", "dispname": "-"}, {"name": "NPY_AUXDATA_FREE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_AUXDATA_FREE.auxdata", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_AUXDATA_FREE", "dispname": "-"}, {"name": "NPY_BEGIN_ALLOW_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BEGIN_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BEGIN_THREADS_DEF", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BEGIN_THREADS_DESCR", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BEGIN_THREADS_DESCR.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_BEGIN_THREADS_DESCR", "dispname": "-"}, {"name": "NPY_BEGIN_THREADS_THRESHOLDED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BEGIN_THREADS_THRESHOLDED.loop_size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_BEGIN_THREADS_THRESHOLDED", "dispname": "-"}, {"name": "NPY_BIG", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BIG_ENDIAN", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_BOOL", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_BOOL_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_BUFSIZE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_BYTE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_BYTE_ORDER", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CASTING", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CASTING.NPY_EQUIV_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CASTING.NPY_NO_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CASTING.NPY_SAFE_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CASTING.NPY_SAME_KIND_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CASTING.NPY_UNSAFE_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CDOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_CFLOAT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_CLIP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CLIPMODE.$", "dispname": "-"}, {"name": "NPY_CLIPMODE", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CLIPMODE.NPY_CLIP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CLIPMODE.NPY_RAISE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CLIPMODE.NPY_WRAP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_CLONGDOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_COMPLEX128", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_COMPLEX64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_COMPLEX_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_CORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ORDER.$", "dispname": "-"}, {"name": "NPY_CPU_AMD64", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_IA64", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_PARISC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_PPC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_PPC64", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_S390", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_SPARC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_SPARC64", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_CPU_X86", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIME", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_D", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_ERROR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_GENERIC", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_M", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_W", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_Y", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_as", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_fs", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_h", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_m", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_ms", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_ns", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_ps", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_s", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DATETIMEUNIT.NPY_FR_us", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NPY_DEFAULT_TYPE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_DISABLE_C_API", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_DTYPE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_ABSTRACT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_NUMERIC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_NewRef", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_NewRef.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_DT_NewRef", "dispname": "-"}, {"name": "NPY_DT_PARAMETRIC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_argmax", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_argmin", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_argsort", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_compare", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_dotfunc", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_fill", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_fillwithscalar", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_fromstr", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_getitem", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_nonzero", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_scanfunc", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_setitem", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_PyArray_ArrFuncs_sort", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_common_dtype", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_common_instance", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_default_descr", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_discover_descr_from_pyobject", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_ensure_canonical", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_finalize_descr", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_get_clear_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_get_fill_zero_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_getitem", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_DT_setitem", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_E", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_END_ALLOW_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_END_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_END_THREADS_DESCR", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_END_THREADS_DESCR.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_END_THREADS_DESCR", "dispname": "-"}, {"name": "NPY_EQUIV_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CASTING.$", "dispname": "-"}, {"name": "NPY_EULER", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_FAIL", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_FALSE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_FEATURE_VERSION", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_FLOAT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_FLOAT16", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_FLOAT32", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_FLOAT64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_FLOAT_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_FORTRANORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ORDER.$", "dispname": "-"}, {"name": "NPY_FROM_FIELDS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_FR_D", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_ERROR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_GENERIC", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_M", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_W", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_Y", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_as", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_fs", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_h", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_m", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_ms", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_ns", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_ps", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_s", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_FR_us", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NPY_DATETIMEUNIT.$", "dispname": "-"}, {"name": "NPY_HALF", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_HALF_NAN", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_NEGONE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_NINF", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_NZERO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_ONE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_PINF", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_PZERO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HALF_ZERO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_HEAPSORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SORTKIND.$", "dispname": "-"}, {"name": "NPY_IGNORE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_INFINITY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_INT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_INT16", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_INT32", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_INT64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_INT8", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_INTNEG_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_INTP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_INTPOS_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_INTP_FMT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_INTROSELECT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SELECTKIND.$", "dispname": "-"}, {"name": "NPY_ITEM_HASOBJECT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_ITEM_IS_POINTER", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_ITEM_REFCOUNT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_ALIGNED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_ALLOCATE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_ARRAYMASK", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_BUFFERED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_COMMON_DTYPE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_CONTIG", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_COPY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_COPY_IF_OVERLAP", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_C_INDEX", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_DELAY_BUFALLOC", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_DONT_NEGATE_STRIDES", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_EXTERNAL_LOOP", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_F_INDEX", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_GROWINNER", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_MULTI_INDEX", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_NBO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_NO_BROADCAST", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_NO_SUBTYPE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_OVERLAP_ASSUME_ELEMENTWISE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_RANGED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_READONLY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_READWRITE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_REDUCE_OK", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_REFS_OK", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_UPDATEIFCOPY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_WRITEMASKED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_WRITEONLY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_ITER_ZEROSIZE_OK", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NPY_KEEPORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ORDER.$", "dispname": "-"}, {"name": "NPY_LIKELY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_LIST_PICKLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_LITTLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_LITTLE_ENDIAN", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_LOG10E", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_LOG2E", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_LOGE10", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_LOGE2", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_LONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_LONGDOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_LONGDOUBLE_FMT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_LONGLONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_LONGLONG_FMT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_LOOP_BEGIN_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "NPY_LOOP_END_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "NPY_MASK", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_MAXARGS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_MAXDIMS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_MAX_BUFSIZE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_MERGESORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SORTKIND.$", "dispname": "-"}, {"name": "NPY_METH_IS_REORDERABLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ARRAYMETHOD_FLAGS.$", "dispname": "-"}, {"name": "NPY_METH_NO_FLOATINGPOINT_ERRORS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ARRAYMETHOD_FLAGS.$", "dispname": "-"}, {"name": "NPY_METH_REQUIRES_PYAPI", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ARRAYMETHOD_FLAGS.$", "dispname": "-"}, {"name": "NPY_METH_RUNTIME_FLAGS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ARRAYMETHOD_FLAGS.$", "dispname": "-"}, {"name": "NPY_METH_SUPPORTS_UNALIGNED", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_ARRAYMETHOD_FLAGS.$", "dispname": "-"}, {"name": "NPY_METH_contiguous_indexed_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_contiguous_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_get_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_get_reduction_initial", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_resolve_descriptors", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_strided_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_unaligned_contiguous_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_METH_unaligned_strided_loop", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_MIN_BUFSIZE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_NAN", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_NATIVE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_NEEDS_INIT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_NEEDS_PYAPI", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_NOSCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_NOTYPE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_NO_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CASTING.$", "dispname": "-"}, {"name": "NPY_NSCALARKINDS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_NSORTS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SORTKIND.$", "dispname": "-"}, {"name": "NPY_NTYPES_LEGACY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_NUM_FLOATTYPE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_NZERO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_OBJECT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_OBJECT_DTYPE_FLAGS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_OBJECT_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SCALARKIND.$", "dispname": "-"}, {"name": "NPY_ORDER", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ORDER.NPY_ANYORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ORDER.NPY_CORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ORDER.NPY_FORTRANORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_ORDER.NPY_KEEPORDER", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_PI", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_PI_2", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_PI_4", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_PRIORITY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_PZERO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "NPY_QUICKSORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SORTKIND.$", "dispname": "-"}, {"name": "NPY_RAISE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CLIPMODE.$", "dispname": "-"}, {"name": "NPY_RAVEL_AXIS", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SAFE_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CASTING.$", "dispname": "-"}, {"name": "NPY_SAME_KIND_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CASTING.$", "dispname": "-"}, {"name": "NPY_SCALARKIND", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_BOOL_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_COMPLEX_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_FLOAT_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_INTNEG_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_INTPOS_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_NOSCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_NSCALARKINDS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALARKIND.NPY_OBJECT_SCALAR", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SCALAR_PRIORITY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SEARCHLEFT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SEARCHSIDE.$", "dispname": "-"}, {"name": "NPY_SEARCHRIGHT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SEARCHSIDE.$", "dispname": "-"}, {"name": "NPY_SEARCHSIDE", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SEARCHSIDE.NPY_SEARCHLEFT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SEARCHSIDE.NPY_SEARCHRIGHT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SELECTKIND", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SELECTKIND.NPY_INTROSELECT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SHORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_SIZEOF_DOUBLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_FLOAT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_INT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_INTP", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_LONG", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_LONGDOUBLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_LONGLONG", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_LONG_DOUBLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_PY_INTPTR_T", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_PY_LONG_LONG", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SIZEOF_SHORT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_SORTKIND", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SORTKIND.NPY_HEAPSORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SORTKIND.NPY_MERGESORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SORTKIND.NPY_NSORTS", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SORTKIND.NPY_QUICKSORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SORTKIND.NPY_STABLESORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_STABLESORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_SORTKIND.$", "dispname": "-"}, {"name": "NPY_STRING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_SUBTYPE_PRIORITY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SUCCEED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_SWAP", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_TIMEDELTA", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_TRUE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES", "domain": "c", "role": "enum", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_BOOL", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_BYTE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_CDOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_CFLOAT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_CLONGDOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_COMPLEX128", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_COMPLEX64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_DATETIME", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_DEFAULT_TYPE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_DOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_FLOAT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_FLOAT16", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_FLOAT32", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_FLOAT64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_HALF", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_INT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_INT16", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_INT32", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_INT64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_INT8", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_INTP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_LONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_LONGDOUBLE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_LONGLONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_MASK", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_OBJECT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_SHORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_STRING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_TIMEDELTA", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UBYTE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UINT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UINT16", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UINT32", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UINT64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UINT8", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UINTP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_ULONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_ULONGLONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_UNICODE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_USHORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_VOID", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_TYPES.NPY_VSTRING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_UBYTE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINT16", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINT32", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINT64", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINT8", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINTP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UINTP_FMT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_ULONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_ULONGLONG", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_ULONGLONG_FMT", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_UNICODE", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_UNLIKELY", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_UNSAFE_CASTING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CASTING.$", "dispname": "-"}, {"name": "NPY_UNUSED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "NPY_USERDEF", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "NPY_USE_GETITEM", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_USE_SETITEM", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "NPY_USHORT", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_VERSION", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NPY_VOID", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_VSTRING", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/dtype.html#c.NPY_TYPES.$", "dispname": "-"}, {"name": "NPY_WRAP", "domain": "c", "role": "enumerator", "priority": "1", "uri": "reference/c-api/array.html#c.NPY_CLIPMODE.$", "dispname": "-"}, {"name": "NpyAuxData", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NpyAuxData_CloneFunc", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NpyAuxData_FreeFunc", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetime64ToDatetimeStruct", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetime64ToDatetimeStruct.dt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertDatetime64ToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetime64ToDatetimeStruct.meta", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertDatetime64ToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetime64ToDatetimeStruct.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertDatetime64ToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetimeStructToDatetime64", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetimeStructToDatetime64.dts", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertDatetimeStructToDatetime64", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetimeStructToDatetime64.meta", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertDatetimeStructToDatetime64", "dispname": "-"}, {"name": "NpyDatetime_ConvertDatetimeStructToDatetime64.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertDatetimeStructToDatetime64", "dispname": "-"}, {"name": "NpyDatetime_ConvertPyDateTimeToDatetimeStruct", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_ConvertPyDateTimeToDatetimeStruct.apply_tzinfo", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertPyDateTimeToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_ConvertPyDateTimeToDatetimeStruct.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertPyDateTimeToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_ConvertPyDateTimeToDatetimeStruct.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertPyDateTimeToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_ConvertPyDateTimeToDatetimeStruct.out_bestunit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ConvertPyDateTimeToDatetimeStruct", "dispname": "-"}, {"name": "NpyDatetime_GetDatetimeISO8601StrLen", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_GetDatetimeISO8601StrLen.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_GetDatetimeISO8601StrLen", "dispname": "-"}, {"name": "NpyDatetime_GetDatetimeISO8601StrLen.local", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_GetDatetimeISO8601StrLen", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.dts", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.local", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.outlen", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.outstr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.tzoffset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_MakeISO8601Datetime.utc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_MakeISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.out_bestunit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.out_special", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyDatetime_ParseISO8601Datetime.unit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/datetimes.html#c.NpyDatetime_ParseISO8601Datetime", "dispname": "-"}, {"name": "NpyIter", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_AdvancedNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.buffersize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.itershape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.nop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.oa_ndim", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.op_axes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.op_dtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.op_flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_AdvancedNew.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_AdvancedNew", "dispname": "-"}, {"name": "NpyIter_Copy", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_Copy.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_Copy", "dispname": "-"}, {"name": "NpyIter_CreateCompatibleStrides", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_CreateCompatibleStrides.itemsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_CreateCompatibleStrides", "dispname": "-"}, {"name": "NpyIter_CreateCompatibleStrides.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_CreateCompatibleStrides", "dispname": "-"}, {"name": "NpyIter_CreateCompatibleStrides.outstrides", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_CreateCompatibleStrides", "dispname": "-"}, {"name": "NpyIter_Deallocate", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_Deallocate.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_Deallocate", "dispname": "-"}, {"name": "NpyIter_EnableExternalLoop", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_EnableExternalLoop.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_EnableExternalLoop", "dispname": "-"}, {"name": "NpyIter_GetAxisStrideArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetAxisStrideArray.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetAxisStrideArray", "dispname": "-"}, {"name": "NpyIter_GetAxisStrideArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetAxisStrideArray", "dispname": "-"}, {"name": "NpyIter_GetBufferSize", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetBufferSize.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetBufferSize", "dispname": "-"}, {"name": "NpyIter_GetDataPtrArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetDataPtrArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetDataPtrArray", "dispname": "-"}, {"name": "NpyIter_GetDescrArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetDescrArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetDescrArray", "dispname": "-"}, {"name": "NpyIter_GetGetMultiIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetGetMultiIndex.errmsg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetGetMultiIndex", "dispname": "-"}, {"name": "NpyIter_GetGetMultiIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetGetMultiIndex", "dispname": "-"}, {"name": "NpyIter_GetIndexPtr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetIndexPtr.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIndexPtr", "dispname": "-"}, {"name": "NpyIter_GetInitialDataPtrArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetInitialDataPtrArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetInitialDataPtrArray", "dispname": "-"}, {"name": "NpyIter_GetInnerFixedStrideArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetInnerFixedStrideArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetInnerFixedStrideArray", "dispname": "-"}, {"name": "NpyIter_GetInnerFixedStrideArray.out_strides", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetInnerFixedStrideArray", "dispname": "-"}, {"name": "NpyIter_GetInnerLoopSizePtr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetInnerLoopSizePtr.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetInnerLoopSizePtr", "dispname": "-"}, {"name": "NpyIter_GetInnerStrideArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetInnerStrideArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetInnerStrideArray", "dispname": "-"}, {"name": "NpyIter_GetIterIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetIterIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterIndex", "dispname": "-"}, {"name": "NpyIter_GetIterIndexRange", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetIterIndexRange.iend", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterIndexRange", "dispname": "-"}, {"name": "NpyIter_GetIterIndexRange.istart", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterIndexRange", "dispname": "-"}, {"name": "NpyIter_GetIterIndexRange.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterIndexRange", "dispname": "-"}, {"name": "NpyIter_GetIterNext", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetIterNext.errmsg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterNext", "dispname": "-"}, {"name": "NpyIter_GetIterNext.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterNext", "dispname": "-"}, {"name": "NpyIter_GetIterSize", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetIterSize.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterSize", "dispname": "-"}, {"name": "NpyIter_GetIterView", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetIterView.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterView", "dispname": "-"}, {"name": "NpyIter_GetIterView.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetIterView", "dispname": "-"}, {"name": "NpyIter_GetMultiIndexFunc", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetNDim", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetNDim.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetNDim", "dispname": "-"}, {"name": "NpyIter_GetNOp", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetNOp.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetNOp", "dispname": "-"}, {"name": "NpyIter_GetOperandArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetOperandArray.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetOperandArray", "dispname": "-"}, {"name": "NpyIter_GetReadFlags", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetReadFlags.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetReadFlags", "dispname": "-"}, {"name": "NpyIter_GetReadFlags.outreadflags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetReadFlags", "dispname": "-"}, {"name": "NpyIter_GetShape", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetShape.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetShape", "dispname": "-"}, {"name": "NpyIter_GetShape.outshape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetShape", "dispname": "-"}, {"name": "NpyIter_GetWriteFlags", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GetWriteFlags.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetWriteFlags", "dispname": "-"}, {"name": "NpyIter_GetWriteFlags.outwriteflags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GetWriteFlags", "dispname": "-"}, {"name": "NpyIter_GotoIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GotoIndex.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GotoIndex", "dispname": "-"}, {"name": "NpyIter_GotoIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GotoIndex", "dispname": "-"}, {"name": "NpyIter_GotoIterIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GotoIterIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GotoIterIndex", "dispname": "-"}, {"name": "NpyIter_GotoIterIndex.iterindex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GotoIterIndex", "dispname": "-"}, {"name": "NpyIter_GotoMultiIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_GotoMultiIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GotoMultiIndex", "dispname": "-"}, {"name": "NpyIter_GotoMultiIndex.multi_index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_GotoMultiIndex", "dispname": "-"}, {"name": "NpyIter_HasDelayedBufAlloc", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_HasDelayedBufAlloc.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_HasDelayedBufAlloc", "dispname": "-"}, {"name": "NpyIter_HasExternalLoop", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_HasExternalLoop.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_HasExternalLoop", "dispname": "-"}, {"name": "NpyIter_HasIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_HasIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_HasIndex", "dispname": "-"}, {"name": "NpyIter_HasMultiIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_HasMultiIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_HasMultiIndex", "dispname": "-"}, {"name": "NpyIter_IsBuffered", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_IsBuffered.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_IsBuffered", "dispname": "-"}, {"name": "NpyIter_IsFirstVisit", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_IsFirstVisit.iop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_IsFirstVisit", "dispname": "-"}, {"name": "NpyIter_IsFirstVisit.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_IsFirstVisit", "dispname": "-"}, {"name": "NpyIter_IsGrowInner", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_IsGrowInner.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_IsGrowInner", "dispname": "-"}, {"name": "NpyIter_IterNextFunc", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_MultiNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_MultiNew.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_MultiNew.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_MultiNew.nop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_MultiNew.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_MultiNew.op_dtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_MultiNew.op_flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_MultiNew.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_MultiNew", "dispname": "-"}, {"name": "NpyIter_New", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_New.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_New", "dispname": "-"}, {"name": "NpyIter_New.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_New", "dispname": "-"}, {"name": "NpyIter_New.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_New", "dispname": "-"}, {"name": "NpyIter_New.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_New", "dispname": "-"}, {"name": "NpyIter_New.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_New", "dispname": "-"}, {"name": "NpyIter_RemoveAxis", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_RemoveAxis.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_RemoveAxis", "dispname": "-"}, {"name": "NpyIter_RemoveAxis.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_RemoveAxis", "dispname": "-"}, {"name": "NpyIter_RemoveMultiIndex", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_RemoveMultiIndex.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_RemoveMultiIndex", "dispname": "-"}, {"name": "NpyIter_RequiresBuffering", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_RequiresBuffering.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_RequiresBuffering", "dispname": "-"}, {"name": "NpyIter_Reset", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_Reset.errmsg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_Reset", "dispname": "-"}, {"name": "NpyIter_Reset.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_Reset", "dispname": "-"}, {"name": "NpyIter_ResetBasePointers", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_ResetBasePointers.baseptrs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetBasePointers", "dispname": "-"}, {"name": "NpyIter_ResetBasePointers.errmsg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetBasePointers", "dispname": "-"}, {"name": "NpyIter_ResetBasePointers.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetBasePointers", "dispname": "-"}, {"name": "NpyIter_ResetToIterIndexRange", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyIter_ResetToIterIndexRange.errmsg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetToIterIndexRange", "dispname": "-"}, {"name": "NpyIter_ResetToIterIndexRange.iend", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetToIterIndexRange", "dispname": "-"}, {"name": "NpyIter_ResetToIterIndexRange.istart", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetToIterIndexRange", "dispname": "-"}, {"name": "NpyIter_ResetToIterIndexRange.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/iterator.html#c.NpyIter_ResetToIterIndexRange", "dispname": "-"}, {"name": "NpyIter_Type", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/iterator.html#c.$", "dispname": "-"}, {"name": "NpyString_acquire_allocator", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_acquire_allocator.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_acquire_allocator", "dispname": "-"}, {"name": "NpyString_acquire_allocators", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_acquire_allocators.allocators", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_acquire_allocators", "dispname": "-"}, {"name": "NpyString_acquire_allocators.descrs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_acquire_allocators", "dispname": "-"}, {"name": "NpyString_acquire_allocators.n_descriptors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_acquire_allocators", "dispname": "-"}, {"name": "NpyString_load", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_load.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_load", "dispname": "-"}, {"name": "NpyString_load.packed_string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_load", "dispname": "-"}, {"name": "NpyString_load.unpacked_string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_load", "dispname": "-"}, {"name": "NpyString_pack", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_pack.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_pack", "dispname": "-"}, {"name": "NpyString_pack.buf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_pack", "dispname": "-"}, {"name": "NpyString_pack.packed_string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_pack", "dispname": "-"}, {"name": "NpyString_pack.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_pack", "dispname": "-"}, {"name": "NpyString_pack_null", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_pack_null.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_pack_null", "dispname": "-"}, {"name": "NpyString_pack_null.packed_string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_pack_null", "dispname": "-"}, {"name": "NpyString_release_allocator", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_release_allocator.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_release_allocator", "dispname": "-"}, {"name": "NpyString_release_allocators", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "NpyString_release_allocators.allocators", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_release_allocators", "dispname": "-"}, {"name": "NpyString_release_allocators.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/strings.html#c.NpyString_release_allocators", "dispname": "-"}, {"name": "PY_ARRAY_UNIQUE_SYMBOL", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PY_UFUNC_UNIQUE_SYMBOL", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_CommonDType", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_CommonInstance", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_DefaultDescriptor", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_DiscoverDescrFromPyobject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_EnsureCanonical", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_FinalizeDescriptor", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_GetItem", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_SetItem", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_Spec", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_Spec.casts", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_Spec.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_Spec.slots", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_Spec.typeobj", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayDTypeMeta_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayDescr_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInitDTypeMeta_FromSpec", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayInitDTypeMeta_FromSpec.Dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArrayInitDTypeMeta_FromSpec", "dispname": "-"}, {"name": "PyArrayInitDTypeMeta_FromSpec.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArrayInitDTypeMeta_FromSpec", "dispname": "-"}, {"name": "PyArrayInterface", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.data", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.descr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.itemsize", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.nd", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.shape", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.strides", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.two", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayInterface.typekind", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.ao", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.backstrides", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.contiguous", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.coordinates", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.dataptr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.dims_m1", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.factors", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.index", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.nd_m1", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.size", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIterObject.strides", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayIter_Check", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayIter_Check.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArrayIter_Check", "dispname": "-"}, {"name": "PyArrayIter_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMapIterObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMapIter_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethodObject_tag", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Context", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Context.caller", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Context.descriptors", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Context.method", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_GetLoop", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_GetReductionInitial", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_GetTraverseLoop", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_PromoterFunction", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_ResolveDescriptors", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.casting", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.dtypes", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.name", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.nin", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.nout", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_Spec.slots", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_StridedLoop", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_TranslateGivenDescriptors", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_TranslateLoopDescriptors", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMethod_TraverseLoop", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject.dimensions", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject.index", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject.iters", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject.nd", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject.numiter", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIterObject.size", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayMultiIter_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayNeighborhoodIterObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayNeighborhoodIter_Next", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayNeighborhoodIter_Next.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArrayNeighborhoodIter_Next", "dispname": "-"}, {"name": "PyArrayNeighborhoodIter_Reset", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArrayNeighborhoodIter_Reset.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArrayNeighborhoodIter_Reset", "dispname": "-"}, {"name": "PyArrayNeighborhoodIter_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArrayObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_All", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_All.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_All", "dispname": "-"}, {"name": "PyArray_All.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_All", "dispname": "-"}, {"name": "PyArray_All.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_All", "dispname": "-"}, {"name": "PyArray_Any", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Any.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Any", "dispname": "-"}, {"name": "PyArray_Any.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Any", "dispname": "-"}, {"name": "PyArray_Any.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Any", "dispname": "-"}, {"name": "PyArray_Arange", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Arange.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Arange", "dispname": "-"}, {"name": "PyArray_Arange.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Arange", "dispname": "-"}, {"name": "PyArray_Arange.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Arange", "dispname": "-"}, {"name": "PyArray_Arange.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Arange", "dispname": "-"}, {"name": "PyArray_ArangeObj", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ArangeObj.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArangeObj", "dispname": "-"}, {"name": "PyArray_ArangeObj.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArangeObj", "dispname": "-"}, {"name": "PyArray_ArangeObj.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArangeObj", "dispname": "-"}, {"name": "PyArray_ArangeObj.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArangeObj", "dispname": "-"}, {"name": "PyArray_ArgMax", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ArgMax.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgMax", "dispname": "-"}, {"name": "PyArray_ArgMax.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgMax", "dispname": "-"}, {"name": "PyArray_ArgMax.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgMax", "dispname": "-"}, {"name": "PyArray_ArgMin", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ArgMin.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgMin", "dispname": "-"}, {"name": "PyArray_ArgMin.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgMin", "dispname": "-"}, {"name": "PyArray_ArgMin.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgMin", "dispname": "-"}, {"name": "PyArray_ArgPartition", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ArgPartition.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgPartition", "dispname": "-"}, {"name": "PyArray_ArgPartition.ktharray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgPartition", "dispname": "-"}, {"name": "PyArray_ArgPartition.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgPartition", "dispname": "-"}, {"name": "PyArray_ArgPartition.which", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgPartition", "dispname": "-"}, {"name": "PyArray_ArgSort", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ArgSort.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgSort", "dispname": "-"}, {"name": "PyArray_ArgSort.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ArgSort", "dispname": "-"}, {"name": "PyArray_ArrFuncs", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.argmax", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.argmin", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.argsort", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.cancastscalarkindto", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.cancastto", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.cast", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.castdict", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.compare", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.copyswap", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.copyswapn", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.dotfunc", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.fill", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.fillwithscalar", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.fromstr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.getitem", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.nonzero", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.scalarkind", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.scanfunc", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.setitem", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_ArrFuncs.sort", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_AsCArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_AsCArray.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AsCArray", "dispname": "-"}, {"name": "PyArray_AsCArray.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AsCArray", "dispname": "-"}, {"name": "PyArray_AsCArray.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AsCArray", "dispname": "-"}, {"name": "PyArray_AsCArray.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AsCArray", "dispname": "-"}, {"name": "PyArray_AsCArray.typedescr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AsCArray", "dispname": "-"}, {"name": "PyArray_AxisConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_AxisConverter.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AxisConverter", "dispname": "-"}, {"name": "PyArray_AxisConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_AxisConverter", "dispname": "-"}, {"name": "PyArray_BASE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_BASE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BASE", "dispname": "-"}, {"name": "PyArray_BYTES", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_BYTES.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BYTES", "dispname": "-"}, {"name": "PyArray_BoolConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_BoolConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BoolConverter", "dispname": "-"}, {"name": "PyArray_BoolConverter.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BoolConverter", "dispname": "-"}, {"name": "PyArray_Broadcast", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Broadcast.mit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Broadcast", "dispname": "-"}, {"name": "PyArray_BroadcastToShape", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_BroadcastToShape.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BroadcastToShape", "dispname": "-"}, {"name": "PyArray_BroadcastToShape.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BroadcastToShape", "dispname": "-"}, {"name": "PyArray_BroadcastToShape.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BroadcastToShape", "dispname": "-"}, {"name": "PyArray_BufferConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_BufferConverter.buf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BufferConverter", "dispname": "-"}, {"name": "PyArray_BufferConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_BufferConverter", "dispname": "-"}, {"name": "PyArray_ByteorderConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ByteorderConverter.endian", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ByteorderConverter", "dispname": "-"}, {"name": "PyArray_ByteorderConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ByteorderConverter", "dispname": "-"}, {"name": "PyArray_Byteswap", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Byteswap.inplace", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Byteswap", "dispname": "-"}, {"name": "PyArray_Byteswap.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Byteswap", "dispname": "-"}, {"name": "PyArray_CHKFLAGS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CHKFLAGS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CHKFLAGS", "dispname": "-"}, {"name": "PyArray_CHKFLAGS.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CHKFLAGS", "dispname": "-"}, {"name": "PyArray_CLEARFLAGS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CLEARFLAGS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CLEARFLAGS", "dispname": "-"}, {"name": "PyArray_CLEARFLAGS.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CLEARFLAGS", "dispname": "-"}, {"name": "PyArray_CanCastArrayTo", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CanCastArrayTo.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastArrayTo", "dispname": "-"}, {"name": "PyArray_CanCastArrayTo.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastArrayTo", "dispname": "-"}, {"name": "PyArray_CanCastArrayTo.totype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastArrayTo", "dispname": "-"}, {"name": "PyArray_CanCastSafely", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CanCastSafely.fromtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastSafely", "dispname": "-"}, {"name": "PyArray_CanCastSafely.totype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastSafely", "dispname": "-"}, {"name": "PyArray_CanCastTo", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CanCastTo.fromtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastTo", "dispname": "-"}, {"name": "PyArray_CanCastTo.totype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastTo", "dispname": "-"}, {"name": "PyArray_CanCastTypeTo", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CanCastTypeTo.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastTypeTo", "dispname": "-"}, {"name": "PyArray_CanCastTypeTo.fromtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastTypeTo", "dispname": "-"}, {"name": "PyArray_CanCastTypeTo.totype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCastTypeTo", "dispname": "-"}, {"name": "PyArray_CanCoerceScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CanCoerceScalar.neededtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCoerceScalar", "dispname": "-"}, {"name": "PyArray_CanCoerceScalar.scalar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCoerceScalar", "dispname": "-"}, {"name": "PyArray_CanCoerceScalar.thistype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CanCoerceScalar", "dispname": "-"}, {"name": "PyArray_Cast", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Cast.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Cast", "dispname": "-"}, {"name": "PyArray_Cast.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Cast", "dispname": "-"}, {"name": "PyArray_CastScalarToCtype", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CastScalarToCtype.ctypeptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastScalarToCtype", "dispname": "-"}, {"name": "PyArray_CastScalarToCtype.outcode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastScalarToCtype", "dispname": "-"}, {"name": "PyArray_CastScalarToCtype.scalar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastScalarToCtype", "dispname": "-"}, {"name": "PyArray_CastTo", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CastTo.in", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastTo", "dispname": "-"}, {"name": "PyArray_CastTo.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastTo", "dispname": "-"}, {"name": "PyArray_CastToType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CastToType.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastToType", "dispname": "-"}, {"name": "PyArray_CastToType.fortran", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastToType", "dispname": "-"}, {"name": "PyArray_CastToType.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastToType", "dispname": "-"}, {"name": "PyArray_CastingConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CastingConverter.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastingConverter", "dispname": "-"}, {"name": "PyArray_CastingConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CastingConverter", "dispname": "-"}, {"name": "PyArray_Check", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Check.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Check", "dispname": "-"}, {"name": "PyArray_CheckAnyScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CheckAnyScalar.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckAnyScalar", "dispname": "-"}, {"name": "PyArray_CheckAxis", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CheckAxis.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckAxis", "dispname": "-"}, {"name": "PyArray_CheckAxis.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckAxis", "dispname": "-"}, {"name": "PyArray_CheckAxis.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckAxis", "dispname": "-"}, {"name": "PyArray_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CheckExact.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckExact", "dispname": "-"}, {"name": "PyArray_CheckFromAny", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CheckFromAny.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckFromAny", "dispname": "-"}, {"name": "PyArray_CheckFromAny.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckFromAny", "dispname": "-"}, {"name": "PyArray_CheckFromAny.max_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckFromAny", "dispname": "-"}, {"name": "PyArray_CheckFromAny.min_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckFromAny", "dispname": "-"}, {"name": "PyArray_CheckFromAny.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckFromAny", "dispname": "-"}, {"name": "PyArray_CheckFromAny.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckFromAny", "dispname": "-"}, {"name": "PyArray_CheckScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CheckScalar.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckScalar", "dispname": "-"}, {"name": "PyArray_CheckStrides", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CheckStrides.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckStrides", "dispname": "-"}, {"name": "PyArray_CheckStrides.elsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckStrides", "dispname": "-"}, {"name": "PyArray_CheckStrides.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckStrides", "dispname": "-"}, {"name": "PyArray_CheckStrides.newstrides", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckStrides", "dispname": "-"}, {"name": "PyArray_CheckStrides.numbytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CheckStrides", "dispname": "-"}, {"name": "PyArray_Choose", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Choose.NPY_CLIP", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Choose.NPY_RAISE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Choose.NPY_WRAP", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Choose.clipmode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Choose", "dispname": "-"}, {"name": "PyArray_Choose.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Choose", "dispname": "-"}, {"name": "PyArray_Choose.ret", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Choose", "dispname": "-"}, {"name": "PyArray_Choose.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Choose", "dispname": "-"}, {"name": "PyArray_Chunk", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Chunk.base", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Chunk.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Chunk.len", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Chunk.ptr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Clip", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Clip.max", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Clip", "dispname": "-"}, {"name": "PyArray_Clip.min", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Clip", "dispname": "-"}, {"name": "PyArray_Clip.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Clip", "dispname": "-"}, {"name": "PyArray_ClipmodeConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ClipmodeConverter.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ClipmodeConverter", "dispname": "-"}, {"name": "PyArray_ClipmodeConverter.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ClipmodeConverter", "dispname": "-"}, {"name": "PyArray_CommonDType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CommonDType.dtype1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CommonDType", "dispname": "-"}, {"name": "PyArray_CommonDType.dtype2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CommonDType", "dispname": "-"}, {"name": "PyArray_CompareLists", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CompareLists.l1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CompareLists", "dispname": "-"}, {"name": "PyArray_CompareLists.l2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CompareLists", "dispname": "-"}, {"name": "PyArray_CompareLists.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CompareLists", "dispname": "-"}, {"name": "PyArray_Compress", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Compress.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Compress", "dispname": "-"}, {"name": "PyArray_Compress.condition", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Compress", "dispname": "-"}, {"name": "PyArray_Compress.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Compress", "dispname": "-"}, {"name": "PyArray_Compress.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Compress", "dispname": "-"}, {"name": "PyArray_Concatenate", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Concatenate.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Concatenate", "dispname": "-"}, {"name": "PyArray_Concatenate.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Concatenate", "dispname": "-"}, {"name": "PyArray_Conjugate", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Conjugate.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Conjugate", "dispname": "-"}, {"name": "PyArray_Conjugate.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Conjugate", "dispname": "-"}, {"name": "PyArray_ContiguousFromAny", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ContiguousFromAny.max_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromAny", "dispname": "-"}, {"name": "PyArray_ContiguousFromAny.min_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromAny", "dispname": "-"}, {"name": "PyArray_ContiguousFromAny.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromAny", "dispname": "-"}, {"name": "PyArray_ContiguousFromAny.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromAny", "dispname": "-"}, {"name": "PyArray_ContiguousFromObject", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ContiguousFromObject.max_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromObject", "dispname": "-"}, {"name": "PyArray_ContiguousFromObject.min_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromObject", "dispname": "-"}, {"name": "PyArray_ContiguousFromObject.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromObject", "dispname": "-"}, {"name": "PyArray_ContiguousFromObject.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ContiguousFromObject", "dispname": "-"}, {"name": "PyArray_ConvertClipmodeSequence", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ConvertClipmodeSequence.modes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ConvertClipmodeSequence", "dispname": "-"}, {"name": "PyArray_ConvertClipmodeSequence.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ConvertClipmodeSequence", "dispname": "-"}, {"name": "PyArray_ConvertClipmodeSequence.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ConvertClipmodeSequence", "dispname": "-"}, {"name": "PyArray_ConvertToCommonType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ConvertToCommonType.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ConvertToCommonType", "dispname": "-"}, {"name": "PyArray_ConvertToCommonType.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ConvertToCommonType", "dispname": "-"}, {"name": "PyArray_Converter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Converter.address", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Converter", "dispname": "-"}, {"name": "PyArray_Converter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Converter", "dispname": "-"}, {"name": "PyArray_CopyInto", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CopyInto.dest", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CopyInto", "dispname": "-"}, {"name": "PyArray_CopyInto.src", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CopyInto", "dispname": "-"}, {"name": "PyArray_CopyObject", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CopyObject.dest", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CopyObject", "dispname": "-"}, {"name": "PyArray_CopyObject.src", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CopyObject", "dispname": "-"}, {"name": "PyArray_Correlate", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Correlate.mode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Correlate", "dispname": "-"}, {"name": "PyArray_Correlate.op1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Correlate", "dispname": "-"}, {"name": "PyArray_Correlate.op2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Correlate", "dispname": "-"}, {"name": "PyArray_Correlate2", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Correlate2.mode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Correlate2", "dispname": "-"}, {"name": "PyArray_Correlate2.op1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Correlate2", "dispname": "-"}, {"name": "PyArray_Correlate2.op2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Correlate2", "dispname": "-"}, {"name": "PyArray_CountNonzero", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CountNonzero.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CountNonzero", "dispname": "-"}, {"name": "PyArray_CumProd", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CumProd.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumProd", "dispname": "-"}, {"name": "PyArray_CumProd.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumProd", "dispname": "-"}, {"name": "PyArray_CumProd.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumProd", "dispname": "-"}, {"name": "PyArray_CumProd.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumProd", "dispname": "-"}, {"name": "PyArray_CumSum", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_CumSum.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumSum", "dispname": "-"}, {"name": "PyArray_CumSum.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumSum", "dispname": "-"}, {"name": "PyArray_CumSum.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumSum", "dispname": "-"}, {"name": "PyArray_CumSum.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_CumSum", "dispname": "-"}, {"name": "PyArray_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DATA.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DATA", "dispname": "-"}, {"name": "PyArray_DESCR", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DESCR.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DESCR", "dispname": "-"}, {"name": "PyArray_DIM", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DIM.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DIM", "dispname": "-"}, {"name": "PyArray_DIM.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DIM", "dispname": "-"}, {"name": "PyArray_DIMS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DIMS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DIMS", "dispname": "-"}, {"name": "PyArray_DTYPE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DTYPE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DTYPE", "dispname": "-"}, {"name": "PyArray_DTypeMeta", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DTypeMeta.dt_slots", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DTypeMeta.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DTypeMeta.scalar_type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DTypeMeta.singleton", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DTypeMeta.super", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DTypeMeta.type_num", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DatetimeMetaData", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "PyArray_DatetimeMetaData.base", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "PyArray_DatetimeMetaData.num", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.alignment", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.byteorder", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.c_metadata", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.elsize", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.hash", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.kind", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.metadata", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.npy_hash_t", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.type_num", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Descr.typeobj", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrAlignConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrAlignConverter.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrAlignConverter", "dispname": "-"}, {"name": "PyArray_DescrAlignConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrAlignConverter", "dispname": "-"}, {"name": "PyArray_DescrAlignConverter2", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrAlignConverter2.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrAlignConverter2", "dispname": "-"}, {"name": "PyArray_DescrAlignConverter2.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrAlignConverter2", "dispname": "-"}, {"name": "PyArray_DescrCheck", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrCheck.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrCheck", "dispname": "-"}, {"name": "PyArray_DescrConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrConverter.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrConverter", "dispname": "-"}, {"name": "PyArray_DescrConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrConverter", "dispname": "-"}, {"name": "PyArray_DescrConverter2", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrConverter2.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrConverter2", "dispname": "-"}, {"name": "PyArray_DescrConverter2.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrConverter2", "dispname": "-"}, {"name": "PyArray_DescrFromObject", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrFromObject.mintype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrFromObject", "dispname": "-"}, {"name": "PyArray_DescrFromObject.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrFromObject", "dispname": "-"}, {"name": "PyArray_DescrFromScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrFromScalar.scalar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrFromScalar", "dispname": "-"}, {"name": "PyArray_DescrFromType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrFromType.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrFromType", "dispname": "-"}, {"name": "PyArray_DescrNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrNew.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrNew", "dispname": "-"}, {"name": "PyArray_DescrNewByteorder", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrNewByteorder.newendian", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrNewByteorder", "dispname": "-"}, {"name": "PyArray_DescrNewByteorder.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrNewByteorder", "dispname": "-"}, {"name": "PyArray_DescrNewFromType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DescrNewFromType.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DescrNewFromType", "dispname": "-"}, {"name": "PyArray_DescrProto", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Diagonal", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Diagonal.axis1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Diagonal", "dispname": "-"}, {"name": "PyArray_Diagonal.axis2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Diagonal", "dispname": "-"}, {"name": "PyArray_Diagonal.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Diagonal", "dispname": "-"}, {"name": "PyArray_Diagonal.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Diagonal", "dispname": "-"}, {"name": "PyArray_Dims", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Dims.len", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_Dims.ptr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_DiscardWritebackIfCopy", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_DiscardWritebackIfCopy.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_DiscardWritebackIfCopy", "dispname": "-"}, {"name": "PyArray_Dump", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Dump.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Dump", "dispname": "-"}, {"name": "PyArray_Dump.protocol", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Dump", "dispname": "-"}, {"name": "PyArray_Dump.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Dump", "dispname": "-"}, {"name": "PyArray_Dumps", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Dumps.protocol", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Dumps", "dispname": "-"}, {"name": "PyArray_Dumps.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Dumps", "dispname": "-"}, {"name": "PyArray_EMPTY", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EMPTY.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EMPTY", "dispname": "-"}, {"name": "PyArray_EMPTY.fortran", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EMPTY", "dispname": "-"}, {"name": "PyArray_EMPTY.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EMPTY", "dispname": "-"}, {"name": "PyArray_EMPTY.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EMPTY", "dispname": "-"}, {"name": "PyArray_ENABLEFLAGS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ENABLEFLAGS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ENABLEFLAGS", "dispname": "-"}, {"name": "PyArray_ENABLEFLAGS.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ENABLEFLAGS", "dispname": "-"}, {"name": "PyArray_EinsteinSum", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EinsteinSum.casting", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_EinsteinSum.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_EinsteinSum.nop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_EinsteinSum.op_in", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_EinsteinSum.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_EinsteinSum.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_EinsteinSum.subscripts", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EinsteinSum", "dispname": "-"}, {"name": "PyArray_Empty", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Empty.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Empty", "dispname": "-"}, {"name": "PyArray_Empty.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Empty", "dispname": "-"}, {"name": "PyArray_Empty.fortran", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Empty", "dispname": "-"}, {"name": "PyArray_Empty.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Empty", "dispname": "-"}, {"name": "PyArray_EnsureArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EnsureArray.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EnsureArray", "dispname": "-"}, {"name": "PyArray_EquivArrTypes", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EquivArrTypes.a1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivArrTypes", "dispname": "-"}, {"name": "PyArray_EquivArrTypes.a2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivArrTypes", "dispname": "-"}, {"name": "PyArray_EquivByteorders", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EquivByteorders.b1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivByteorders", "dispname": "-"}, {"name": "PyArray_EquivByteorders.b2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivByteorders", "dispname": "-"}, {"name": "PyArray_EquivTypenums", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EquivTypenums.typenum1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivTypenums", "dispname": "-"}, {"name": "PyArray_EquivTypenums.typenum2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivTypenums", "dispname": "-"}, {"name": "PyArray_EquivTypes", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_EquivTypes.type1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivTypes", "dispname": "-"}, {"name": "PyArray_EquivTypes.type2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_EquivTypes", "dispname": "-"}, {"name": "PyArray_FILLWBYTE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FILLWBYTE.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FILLWBYTE", "dispname": "-"}, {"name": "PyArray_FILLWBYTE.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FILLWBYTE", "dispname": "-"}, {"name": "PyArray_FLAGS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FLAGS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FLAGS", "dispname": "-"}, {"name": "PyArray_FROMANY", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FROMANY.max", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROMANY", "dispname": "-"}, {"name": "PyArray_FROMANY.min", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROMANY", "dispname": "-"}, {"name": "PyArray_FROMANY.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROMANY", "dispname": "-"}, {"name": "PyArray_FROMANY.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROMANY", "dispname": "-"}, {"name": "PyArray_FROMANY.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROMANY", "dispname": "-"}, {"name": "PyArray_FROM_O", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FROM_O.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_O", "dispname": "-"}, {"name": "PyArray_FROM_OF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FROM_OF.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OF", "dispname": "-"}, {"name": "PyArray_FROM_OF.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OF", "dispname": "-"}, {"name": "PyArray_FROM_OT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FROM_OT.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OT", "dispname": "-"}, {"name": "PyArray_FROM_OT.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OT", "dispname": "-"}, {"name": "PyArray_FROM_OTF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FROM_OTF.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OTF", "dispname": "-"}, {"name": "PyArray_FROM_OTF.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OTF", "dispname": "-"}, {"name": "PyArray_FROM_OTF.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FROM_OTF", "dispname": "-"}, {"name": "PyArray_FailUnlessWriteable", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FailUnlessWriteable.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FailUnlessWriteable", "dispname": "-"}, {"name": "PyArray_FailUnlessWriteable.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FailUnlessWriteable", "dispname": "-"}, {"name": "PyArray_FillWithScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FillWithScalar.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FillWithScalar", "dispname": "-"}, {"name": "PyArray_FillWithScalar.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FillWithScalar", "dispname": "-"}, {"name": "PyArray_FinalizeFunc", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FinalizeFunc.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FinalizeFunc", "dispname": "-"}, {"name": "PyArray_FinalizeFunc.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FinalizeFunc", "dispname": "-"}, {"name": "PyArray_Flatten", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Flatten.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Flatten", "dispname": "-"}, {"name": "PyArray_Flatten.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Flatten", "dispname": "-"}, {"name": "PyArray_Free", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Free.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Free", "dispname": "-"}, {"name": "PyArray_Free.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Free", "dispname": "-"}, {"name": "PyArray_FromAny", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromAny.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromAny", "dispname": "-"}, {"name": "PyArray_FromAny.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromAny", "dispname": "-"}, {"name": "PyArray_FromAny.max_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromAny", "dispname": "-"}, {"name": "PyArray_FromAny.min_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromAny", "dispname": "-"}, {"name": "PyArray_FromAny.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromAny", "dispname": "-"}, {"name": "PyArray_FromAny.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromAny", "dispname": "-"}, {"name": "PyArray_FromArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromArray.newtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromArray", "dispname": "-"}, {"name": "PyArray_FromArray.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromArray", "dispname": "-"}, {"name": "PyArray_FromArray.requirements", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromArray", "dispname": "-"}, {"name": "PyArray_FromArrayAttr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromArrayAttr.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromArrayAttr", "dispname": "-"}, {"name": "PyArray_FromArrayAttr.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromArrayAttr", "dispname": "-"}, {"name": "PyArray_FromArrayAttr.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromArrayAttr", "dispname": "-"}, {"name": "PyArray_FromBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromBuffer.buf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromBuffer", "dispname": "-"}, {"name": "PyArray_FromBuffer.count", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromBuffer", "dispname": "-"}, {"name": "PyArray_FromBuffer.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromBuffer", "dispname": "-"}, {"name": "PyArray_FromBuffer.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromBuffer", "dispname": "-"}, {"name": "PyArray_FromFile", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromFile.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromFile", "dispname": "-"}, {"name": "PyArray_FromFile.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromFile", "dispname": "-"}, {"name": "PyArray_FromFile.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromFile", "dispname": "-"}, {"name": "PyArray_FromFile.sep", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromFile", "dispname": "-"}, {"name": "PyArray_FromInterface", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromInterface.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromInterface", "dispname": "-"}, {"name": "PyArray_FromObject", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromObject.max_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromObject", "dispname": "-"}, {"name": "PyArray_FromObject.min_depth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromObject", "dispname": "-"}, {"name": "PyArray_FromObject.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromObject", "dispname": "-"}, {"name": "PyArray_FromObject.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromObject", "dispname": "-"}, {"name": "PyArray_FromScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromScalar.outcode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromScalar", "dispname": "-"}, {"name": "PyArray_FromScalar.scalar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromScalar", "dispname": "-"}, {"name": "PyArray_FromString", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromString.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromString", "dispname": "-"}, {"name": "PyArray_FromString.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromString", "dispname": "-"}, {"name": "PyArray_FromString.sep", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromString", "dispname": "-"}, {"name": "PyArray_FromString.slen", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromString", "dispname": "-"}, {"name": "PyArray_FromString.string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromString", "dispname": "-"}, {"name": "PyArray_FromStructInterface", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_FromStructInterface.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_FromStructInterface", "dispname": "-"}, {"name": "PyArray_GETCONTIGUOUS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GETCONTIGUOUS.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETCONTIGUOUS", "dispname": "-"}, {"name": "PyArray_GETITEM", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GETITEM.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETITEM", "dispname": "-"}, {"name": "PyArray_GETITEM.itemptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETITEM", "dispname": "-"}, {"name": "PyArray_GETPTR1", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GETPTR1.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR1", "dispname": "-"}, {"name": "PyArray_GETPTR1.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR1", "dispname": "-"}, {"name": "PyArray_GETPTR2", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GETPTR2.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR2", "dispname": "-"}, {"name": "PyArray_GETPTR2.j", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR2", "dispname": "-"}, {"name": "PyArray_GETPTR2.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR2", "dispname": "-"}, {"name": "PyArray_GETPTR3", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GETPTR3.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR3", "dispname": "-"}, {"name": "PyArray_GETPTR3.j", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR3", "dispname": "-"}, {"name": "PyArray_GETPTR3.k", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR3", "dispname": "-"}, {"name": "PyArray_GETPTR3.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR3", "dispname": "-"}, {"name": "PyArray_GETPTR4", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GETPTR4.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR4", "dispname": "-"}, {"name": "PyArray_GETPTR4.j", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR4", "dispname": "-"}, {"name": "PyArray_GETPTR4.k", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR4", "dispname": "-"}, {"name": "PyArray_GETPTR4.l", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR4", "dispname": "-"}, {"name": "PyArray_GETPTR4.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GETPTR4", "dispname": "-"}, {"name": "PyArray_GetDefaultDescr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GetDefaultDescr.DType", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetDefaultDescr", "dispname": "-"}, {"name": "PyArray_GetEndianness", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "PyArray_GetEndianness.NPY_CPU_BIG", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "PyArray_GetEndianness.NPY_CPU_LITTLE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "PyArray_GetEndianness.NPY_CPU_UNKNOWN_ENDIAN", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/config.html#c.$", "dispname": "-"}, {"name": "PyArray_GetField", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GetField.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetField", "dispname": "-"}, {"name": "PyArray_GetField.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetField", "dispname": "-"}, {"name": "PyArray_GetField.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetField", "dispname": "-"}, {"name": "PyArray_GetNDArrayCFeatureVersion", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GetNDArrayCVersion", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GetPriority", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GetPriority.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetPriority", "dispname": "-"}, {"name": "PyArray_GetPriority.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetPriority", "dispname": "-"}, {"name": "PyArray_GetPtr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_GetPtr.aobj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetPtr", "dispname": "-"}, {"name": "PyArray_GetPtr.ind", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_GetPtr", "dispname": "-"}, {"name": "PyArray_HASFIELDS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_HASFIELDS.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HASFIELDS", "dispname": "-"}, {"name": "PyArray_HasArrayInterface", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_HasArrayInterface.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HasArrayInterface", "dispname": "-"}, {"name": "PyArray_HasArrayInterface.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HasArrayInterface", "dispname": "-"}, {"name": "PyArray_HasArrayInterfaceType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_HasArrayInterfaceType.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HasArrayInterfaceType", "dispname": "-"}, {"name": "PyArray_HasArrayInterfaceType.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HasArrayInterfaceType", "dispname": "-"}, {"name": "PyArray_HasArrayInterfaceType.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HasArrayInterfaceType", "dispname": "-"}, {"name": "PyArray_HasArrayInterfaceType.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_HasArrayInterfaceType", "dispname": "-"}, {"name": "PyArray_INCREF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_INCREF.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_INCREF", "dispname": "-"}, {"name": "PyArray_ISALIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISALIGNED.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISALIGNED", "dispname": "-"}, {"name": "PyArray_ISBEHAVED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISBEHAVED.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISBEHAVED", "dispname": "-"}, {"name": "PyArray_ISBEHAVED_RO", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISBEHAVED_RO.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISBEHAVED_RO", "dispname": "-"}, {"name": "PyArray_ISBOOL", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISBOOL.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISBOOL", "dispname": "-"}, {"name": "PyArray_ISBYTESWAPPED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISBYTESWAPPED.m", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISBYTESWAPPED", "dispname": "-"}, {"name": "PyArray_ISCARRAY", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISCARRAY.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISCARRAY", "dispname": "-"}, {"name": "PyArray_ISCARRAY_RO", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISCARRAY_RO.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISCARRAY_RO", "dispname": "-"}, {"name": "PyArray_ISCOMPLEX", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISCOMPLEX.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISCOMPLEX", "dispname": "-"}, {"name": "PyArray_ISEXTENDED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISEXTENDED.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISEXTENDED", "dispname": "-"}, {"name": "PyArray_ISFARRAY", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISFARRAY.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISFARRAY", "dispname": "-"}, {"name": "PyArray_ISFARRAY_RO", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISFARRAY_RO.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISFARRAY_RO", "dispname": "-"}, {"name": "PyArray_ISFLEXIBLE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISFLEXIBLE.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISFLEXIBLE", "dispname": "-"}, {"name": "PyArray_ISFLOAT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISFLOAT.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISFLOAT", "dispname": "-"}, {"name": "PyArray_ISFORTRAN", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISFORTRAN.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISFORTRAN", "dispname": "-"}, {"name": "PyArray_ISINTEGER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISINTEGER.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISINTEGER", "dispname": "-"}, {"name": "PyArray_ISNOTSWAPPED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISNOTSWAPPED.m", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISNOTSWAPPED", "dispname": "-"}, {"name": "PyArray_ISNUMBER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISNUMBER.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISNUMBER", "dispname": "-"}, {"name": "PyArray_ISOBJECT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISOBJECT.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISOBJECT", "dispname": "-"}, {"name": "PyArray_ISONESEGMENT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISONESEGMENT.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISONESEGMENT", "dispname": "-"}, {"name": "PyArray_ISSIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISSIGNED.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISSIGNED", "dispname": "-"}, {"name": "PyArray_ISSTRING", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISSTRING.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISSTRING", "dispname": "-"}, {"name": "PyArray_ISUNSIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISUNSIGNED.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISUNSIGNED", "dispname": "-"}, {"name": "PyArray_ISUSERDEF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISUSERDEF.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISUSERDEF", "dispname": "-"}, {"name": "PyArray_ISWRITEABLE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ISWRITEABLE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ISWRITEABLE", "dispname": "-"}, {"name": "PyArray_IS_C_CONTIGUOUS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IS_C_CONTIGUOUS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IS_C_CONTIGUOUS", "dispname": "-"}, {"name": "PyArray_IS_F_CONTIGUOUS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IS_F_CONTIGUOUS.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IS_F_CONTIGUOUS", "dispname": "-"}, {"name": "PyArray_ITEMSIZE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITEMSIZE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITEMSIZE", "dispname": "-"}, {"name": "PyArray_ITER_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITER_DATA.iterator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_DATA", "dispname": "-"}, {"name": "PyArray_ITER_GOTO", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITER_GOTO.destination", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_GOTO", "dispname": "-"}, {"name": "PyArray_ITER_GOTO.iterator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_GOTO", "dispname": "-"}, {"name": "PyArray_ITER_GOTO1D", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITER_GOTO1D.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_GOTO1D", "dispname": "-"}, {"name": "PyArray_ITER_GOTO1D.iterator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_GOTO1D", "dispname": "-"}, {"name": "PyArray_ITER_NEXT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITER_NEXT.iterator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_NEXT", "dispname": "-"}, {"name": "PyArray_ITER_NOTDONE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITER_NOTDONE.iterator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_NOTDONE", "dispname": "-"}, {"name": "PyArray_ITER_RESET", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ITER_RESET.iterator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ITER_RESET", "dispname": "-"}, {"name": "PyArray_ImportNumPyAPI", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_InitArrFuncs", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_InitArrFuncs.f", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_InitArrFuncs", "dispname": "-"}, {"name": "PyArray_InnerProduct", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_InnerProduct.obj1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_InnerProduct", "dispname": "-"}, {"name": "PyArray_InnerProduct.obj2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_InnerProduct", "dispname": "-"}, {"name": "PyArray_IntpConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IntpConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IntpConverter", "dispname": "-"}, {"name": "PyArray_IntpConverter.seq", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IntpConverter", "dispname": "-"}, {"name": "PyArray_IntpFromSequence", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IntpFromSequence.maxvals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IntpFromSequence", "dispname": "-"}, {"name": "PyArray_IntpFromSequence.seq", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IntpFromSequence", "dispname": "-"}, {"name": "PyArray_IntpFromSequence.vals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IntpFromSequence", "dispname": "-"}, {"name": "PyArray_IsAnyScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IsAnyScalar.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IsAnyScalar", "dispname": "-"}, {"name": "PyArray_IsPythonNumber", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IsPythonNumber.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IsPythonNumber", "dispname": "-"}, {"name": "PyArray_IsPythonScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IsPythonScalar.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IsPythonScalar", "dispname": "-"}, {"name": "PyArray_IsScalar", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IsZeroDim", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IsZeroDim.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IsZeroDim", "dispname": "-"}, {"name": "PyArray_Item_INCREF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Item_INCREF.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Item_INCREF", "dispname": "-"}, {"name": "PyArray_Item_INCREF.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Item_INCREF", "dispname": "-"}, {"name": "PyArray_Item_XDECREF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Item_XDECREF.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Item_XDECREF", "dispname": "-"}, {"name": "PyArray_Item_XDECREF.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Item_XDECREF", "dispname": "-"}, {"name": "PyArray_IterAllButAxis", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IterAllButAxis.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IterAllButAxis", "dispname": "-"}, {"name": "PyArray_IterAllButAxis.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IterAllButAxis", "dispname": "-"}, {"name": "PyArray_IterNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_IterNew.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_IterNew", "dispname": "-"}, {"name": "PyArray_LexSort", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_LexSort.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_LexSort", "dispname": "-"}, {"name": "PyArray_LexSort.sort_keys", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_LexSort", "dispname": "-"}, {"name": "PyArray_MAX", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MIN", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MatrixProduct", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MatrixProduct.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MatrixProduct", "dispname": "-"}, {"name": "PyArray_MatrixProduct.obj1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MatrixProduct", "dispname": "-"}, {"name": "PyArray_MatrixProduct2", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MatrixProduct2.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MatrixProduct2", "dispname": "-"}, {"name": "PyArray_MatrixProduct2.obj1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MatrixProduct2", "dispname": "-"}, {"name": "PyArray_MatrixProduct2.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MatrixProduct2", "dispname": "-"}, {"name": "PyArray_Max", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Max.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Max", "dispname": "-"}, {"name": "PyArray_Max.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Max", "dispname": "-"}, {"name": "PyArray_Max.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Max", "dispname": "-"}, {"name": "PyArray_Mean", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Mean.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Mean", "dispname": "-"}, {"name": "PyArray_Mean.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Mean", "dispname": "-"}, {"name": "PyArray_Mean.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Mean", "dispname": "-"}, {"name": "PyArray_Mean.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Mean", "dispname": "-"}, {"name": "PyArray_Min", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Min.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Min", "dispname": "-"}, {"name": "PyArray_Min.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Min", "dispname": "-"}, {"name": "PyArray_Min.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Min", "dispname": "-"}, {"name": "PyArray_MinScalarType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MinScalarType.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MinScalarType", "dispname": "-"}, {"name": "PyArray_MultiIterNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIterNew.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIterNew", "dispname": "-"}, {"name": "PyArray_MultiIter_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_DATA.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_DATA", "dispname": "-"}, {"name": "PyArray_MultiIter_DATA.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_DATA", "dispname": "-"}, {"name": "PyArray_MultiIter_DIMS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_DIMS.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_DIMS", "dispname": "-"}, {"name": "PyArray_MultiIter_GOTO", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_GOTO.destination", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_GOTO", "dispname": "-"}, {"name": "PyArray_MultiIter_GOTO.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_GOTO", "dispname": "-"}, {"name": "PyArray_MultiIter_GOTO1D", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_GOTO1D.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_GOTO1D", "dispname": "-"}, {"name": "PyArray_MultiIter_GOTO1D.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_GOTO1D", "dispname": "-"}, {"name": "PyArray_MultiIter_INDEX", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_INDEX.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_INDEX", "dispname": "-"}, {"name": "PyArray_MultiIter_ITERS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_ITERS.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_ITERS", "dispname": "-"}, {"name": "PyArray_MultiIter_NDIM", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_NDIM.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_NDIM", "dispname": "-"}, {"name": "PyArray_MultiIter_NEXT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_NEXT.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_NEXT", "dispname": "-"}, {"name": "PyArray_MultiIter_NEXTi", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_NEXTi.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_NEXTi", "dispname": "-"}, {"name": "PyArray_MultiIter_NEXTi.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_NEXTi", "dispname": "-"}, {"name": "PyArray_MultiIter_NOTDONE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_NOTDONE.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_NOTDONE", "dispname": "-"}, {"name": "PyArray_MultiIter_NUMITER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_NUMITER.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_NUMITER", "dispname": "-"}, {"name": "PyArray_MultiIter_RESET", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_RESET.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_RESET", "dispname": "-"}, {"name": "PyArray_MultiIter_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiIter_SIZE.multi", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiIter_SIZE", "dispname": "-"}, {"name": "PyArray_MultiplyIntList", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiplyIntList.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiplyIntList", "dispname": "-"}, {"name": "PyArray_MultiplyIntList.seq", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiplyIntList", "dispname": "-"}, {"name": "PyArray_MultiplyList", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_MultiplyList.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiplyList", "dispname": "-"}, {"name": "PyArray_MultiplyList.seq", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_MultiplyList", "dispname": "-"}, {"name": "PyArray_NBYTES", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NBYTES.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NBYTES", "dispname": "-"}, {"name": "PyArray_NDIM", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NDIM.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NDIM", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.NPY_NEIGHBORHOOD_ITER_CIRCULAR_PADDING", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.NPY_NEIGHBORHOOD_ITER_CONSTANT_PADDING", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.NPY_NEIGHBORHOOD_ITER_MIRROR_PADDING", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.NPY_NEIGHBORHOOD_ITER_ONE_PADDING", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.NPY_NEIGHBORHOOD_ITER_ZERO_PADDING", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.bounds", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NeighborhoodIterNew", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.fill_value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NeighborhoodIterNew", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NeighborhoodIterNew", "dispname": "-"}, {"name": "PyArray_NeighborhoodIterNew.mode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NeighborhoodIterNew", "dispname": "-"}, {"name": "PyArray_New", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_New.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.itemsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.strides", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.subtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_New.type_num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_New", "dispname": "-"}, {"name": "PyArray_NewCopy", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NewCopy.old", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewCopy", "dispname": "-"}, {"name": "PyArray_NewCopy.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewCopy", "dispname": "-"}, {"name": "PyArray_NewFromDescr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NewFromDescr.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.strides", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewFromDescr.subtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewFromDescr", "dispname": "-"}, {"name": "PyArray_NewLikeArray", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_NewLikeArray.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewLikeArray", "dispname": "-"}, {"name": "PyArray_NewLikeArray.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewLikeArray", "dispname": "-"}, {"name": "PyArray_NewLikeArray.prototype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewLikeArray", "dispname": "-"}, {"name": "PyArray_NewLikeArray.subok", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_NewLikeArray", "dispname": "-"}, {"name": "PyArray_Newshape", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Newshape.newshape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Newshape", "dispname": "-"}, {"name": "PyArray_Newshape.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Newshape", "dispname": "-"}, {"name": "PyArray_Newshape.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Newshape", "dispname": "-"}, {"name": "PyArray_Nonzero", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Nonzero.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Nonzero", "dispname": "-"}, {"name": "PyArray_ObjectType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ObjectType.mintype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ObjectType", "dispname": "-"}, {"name": "PyArray_ObjectType.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ObjectType", "dispname": "-"}, {"name": "PyArray_One", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_One.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_One", "dispname": "-"}, {"name": "PyArray_OrderConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_OrderConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_OrderConverter", "dispname": "-"}, {"name": "PyArray_OrderConverter.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_OrderConverter", "dispname": "-"}, {"name": "PyArray_OutputConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_OutputConverter.address", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_OutputConverter", "dispname": "-"}, {"name": "PyArray_OutputConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_OutputConverter", "dispname": "-"}, {"name": "PyArray_Pack", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Pack.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Pack", "dispname": "-"}, {"name": "PyArray_Pack.item", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Pack", "dispname": "-"}, {"name": "PyArray_Pack.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Pack", "dispname": "-"}, {"name": "PyArray_Partition", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Partition.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Partition", "dispname": "-"}, {"name": "PyArray_Partition.ktharray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Partition", "dispname": "-"}, {"name": "PyArray_Partition.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Partition", "dispname": "-"}, {"name": "PyArray_Partition.which", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Partition", "dispname": "-"}, {"name": "PyArray_Prod", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Prod.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Prod", "dispname": "-"}, {"name": "PyArray_Prod.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Prod", "dispname": "-"}, {"name": "PyArray_Prod.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Prod", "dispname": "-"}, {"name": "PyArray_Prod.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Prod", "dispname": "-"}, {"name": "PyArray_PromoteDTypeSequence", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_PromoteDTypeSequence.dtypes_in", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PromoteDTypeSequence", "dispname": "-"}, {"name": "PyArray_PromoteDTypeSequence.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PromoteDTypeSequence", "dispname": "-"}, {"name": "PyArray_PromoteTypes", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_PromoteTypes.type1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PromoteTypes", "dispname": "-"}, {"name": "PyArray_PromoteTypes.type2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PromoteTypes", "dispname": "-"}, {"name": "PyArray_Ptp", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Ptp.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Ptp", "dispname": "-"}, {"name": "PyArray_Ptp.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Ptp", "dispname": "-"}, {"name": "PyArray_Ptp.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Ptp", "dispname": "-"}, {"name": "PyArray_PutMask", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_PutMask.mask", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutMask", "dispname": "-"}, {"name": "PyArray_PutMask.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutMask", "dispname": "-"}, {"name": "PyArray_PutMask.values", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutMask", "dispname": "-"}, {"name": "PyArray_PutTo", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_PutTo.clipmode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutTo", "dispname": "-"}, {"name": "PyArray_PutTo.indices", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutTo", "dispname": "-"}, {"name": "PyArray_PutTo.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutTo", "dispname": "-"}, {"name": "PyArray_PutTo.values", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PutTo", "dispname": "-"}, {"name": "PyArray_PyIntAsInt", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_PyIntAsInt.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PyIntAsInt", "dispname": "-"}, {"name": "PyArray_PyIntAsIntp", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_PyIntAsIntp.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_PyIntAsIntp", "dispname": "-"}, {"name": "PyArray_Ravel", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Ravel.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Ravel", "dispname": "-"}, {"name": "PyArray_Ravel.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Ravel", "dispname": "-"}, {"name": "PyArray_RegisterCanCast", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_RegisterCanCast.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterCanCast", "dispname": "-"}, {"name": "PyArray_RegisterCanCast.scalar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterCanCast", "dispname": "-"}, {"name": "PyArray_RegisterCanCast.totype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterCanCast", "dispname": "-"}, {"name": "PyArray_RegisterCastFunc", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_RegisterCastFunc.PyArray_VectorUnaryFunc", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_RegisterCastFunc.castfunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterCastFunc", "dispname": "-"}, {"name": "PyArray_RegisterCastFunc.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterCastFunc", "dispname": "-"}, {"name": "PyArray_RegisterCastFunc.totype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterCastFunc", "dispname": "-"}, {"name": "PyArray_RegisterDataType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_RegisterDataType.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RegisterDataType", "dispname": "-"}, {"name": "PyArray_RemoveSmallest", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_RemoveSmallest.mit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_RemoveSmallest", "dispname": "-"}, {"name": "PyArray_Repeat", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Repeat.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Repeat", "dispname": "-"}, {"name": "PyArray_Repeat.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Repeat", "dispname": "-"}, {"name": "PyArray_Repeat.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Repeat", "dispname": "-"}, {"name": "PyArray_Reshape", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Reshape.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Reshape", "dispname": "-"}, {"name": "PyArray_Reshape.shape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Reshape", "dispname": "-"}, {"name": "PyArray_Resize", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Resize.fortran", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Resize", "dispname": "-"}, {"name": "PyArray_Resize.newshape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Resize", "dispname": "-"}, {"name": "PyArray_Resize.refcheck", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Resize", "dispname": "-"}, {"name": "PyArray_Resize.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Resize", "dispname": "-"}, {"name": "PyArray_ResolveWritebackIfCopy", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ResolveWritebackIfCopy.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ResolveWritebackIfCopy", "dispname": "-"}, {"name": "PyArray_ResultType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ResultType.arrs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ResultType", "dispname": "-"}, {"name": "PyArray_ResultType.dtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ResultType", "dispname": "-"}, {"name": "PyArray_ResultType.narrs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ResultType", "dispname": "-"}, {"name": "PyArray_ResultType.ndtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ResultType", "dispname": "-"}, {"name": "PyArray_Return", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Return.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Return", "dispname": "-"}, {"name": "PyArray_Round", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Round.decimals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Round", "dispname": "-"}, {"name": "PyArray_Round.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Round", "dispname": "-"}, {"name": "PyArray_Round.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Round", "dispname": "-"}, {"name": "PyArray_SAMESHAPE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SAMESHAPE.a1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SAMESHAPE", "dispname": "-"}, {"name": "PyArray_SAMESHAPE.a2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SAMESHAPE", "dispname": "-"}, {"name": "PyArray_SETITEM", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SETITEM.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SETITEM", "dispname": "-"}, {"name": "PyArray_SETITEM.itemptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SETITEM", "dispname": "-"}, {"name": "PyArray_SETITEM.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SETITEM", "dispname": "-"}, {"name": "PyArray_SHAPE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SHAPE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SHAPE", "dispname": "-"}, {"name": "PyArray_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SIZE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SIZE", "dispname": "-"}, {"name": "PyArray_STRIDE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_STRIDE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_STRIDE", "dispname": "-"}, {"name": "PyArray_STRIDE.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_STRIDE", "dispname": "-"}, {"name": "PyArray_STRIDES", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_STRIDES.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_STRIDES", "dispname": "-"}, {"name": "PyArray_Scalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Scalar.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Scalar", "dispname": "-"}, {"name": "PyArray_Scalar.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Scalar", "dispname": "-"}, {"name": "PyArray_Scalar.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Scalar", "dispname": "-"}, {"name": "PyArray_ScalarAsCtype", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ScalarAsCtype.ctypeptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ScalarAsCtype", "dispname": "-"}, {"name": "PyArray_ScalarAsCtype.scalar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ScalarAsCtype", "dispname": "-"}, {"name": "PyArray_ScalarKind", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ScalarKind.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ScalarKind", "dispname": "-"}, {"name": "PyArray_ScalarKind.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ScalarKind", "dispname": "-"}, {"name": "PyArray_SearchSorted", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SearchSorted.perm", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SearchSorted", "dispname": "-"}, {"name": "PyArray_SearchSorted.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SearchSorted", "dispname": "-"}, {"name": "PyArray_SearchSorted.side", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SearchSorted", "dispname": "-"}, {"name": "PyArray_SearchSorted.values", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SearchSorted", "dispname": "-"}, {"name": "PyArray_SearchsideConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SearchsideConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SearchsideConverter", "dispname": "-"}, {"name": "PyArray_SearchsideConverter.side", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SearchsideConverter", "dispname": "-"}, {"name": "PyArray_SetBaseObject", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SetBaseObject.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetBaseObject", "dispname": "-"}, {"name": "PyArray_SetBaseObject.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetBaseObject", "dispname": "-"}, {"name": "PyArray_SetField", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SetField.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetField", "dispname": "-"}, {"name": "PyArray_SetField.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetField", "dispname": "-"}, {"name": "PyArray_SetField.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetField", "dispname": "-"}, {"name": "PyArray_SetField.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetField", "dispname": "-"}, {"name": "PyArray_SetWritebackIfCopyBase", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SetWritebackIfCopyBase.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetWritebackIfCopyBase", "dispname": "-"}, {"name": "PyArray_SetWritebackIfCopyBase.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SetWritebackIfCopyBase", "dispname": "-"}, {"name": "PyArray_SimpleNew", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SimpleNew.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNew", "dispname": "-"}, {"name": "PyArray_SimpleNew.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNew", "dispname": "-"}, {"name": "PyArray_SimpleNew.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNew", "dispname": "-"}, {"name": "PyArray_SimpleNewFromData", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SimpleNewFromData.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromData", "dispname": "-"}, {"name": "PyArray_SimpleNewFromData.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromData", "dispname": "-"}, {"name": "PyArray_SimpleNewFromData.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromData", "dispname": "-"}, {"name": "PyArray_SimpleNewFromData.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromData", "dispname": "-"}, {"name": "PyArray_SimpleNewFromDescr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SimpleNewFromDescr.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromDescr", "dispname": "-"}, {"name": "PyArray_SimpleNewFromDescr.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromDescr", "dispname": "-"}, {"name": "PyArray_SimpleNewFromDescr.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SimpleNewFromDescr", "dispname": "-"}, {"name": "PyArray_Size", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Size.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Size", "dispname": "-"}, {"name": "PyArray_Sort", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Sort.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sort", "dispname": "-"}, {"name": "PyArray_Sort.kind", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sort", "dispname": "-"}, {"name": "PyArray_Sort.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sort", "dispname": "-"}, {"name": "PyArray_SortkindConverter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SortkindConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SortkindConverter", "dispname": "-"}, {"name": "PyArray_SortkindConverter.sort", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SortkindConverter", "dispname": "-"}, {"name": "PyArray_Squeeze", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Squeeze.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Squeeze", "dispname": "-"}, {"name": "PyArray_Std", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Std.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Std", "dispname": "-"}, {"name": "PyArray_Std.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Std", "dispname": "-"}, {"name": "PyArray_Std.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Std", "dispname": "-"}, {"name": "PyArray_Std.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Std", "dispname": "-"}, {"name": "PyArray_StringDTypeObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.allocator", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.array_owned", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.base", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.coerce", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.default_string", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.has_nan_na", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.has_string_na", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.na_name", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_StringDTypeObject.na_object", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "PyArray_Sum", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Sum.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sum", "dispname": "-"}, {"name": "PyArray_Sum.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sum", "dispname": "-"}, {"name": "PyArray_Sum.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sum", "dispname": "-"}, {"name": "PyArray_Sum.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Sum", "dispname": "-"}, {"name": "PyArray_SwapAxes", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_SwapAxes.a1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SwapAxes", "dispname": "-"}, {"name": "PyArray_SwapAxes.a2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SwapAxes", "dispname": "-"}, {"name": "PyArray_SwapAxes.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_SwapAxes", "dispname": "-"}, {"name": "PyArray_TYPE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_TYPE.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TYPE", "dispname": "-"}, {"name": "PyArray_TakeFrom", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_TakeFrom.axis", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TakeFrom", "dispname": "-"}, {"name": "PyArray_TakeFrom.clipmode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TakeFrom", "dispname": "-"}, {"name": "PyArray_TakeFrom.indices", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TakeFrom", "dispname": "-"}, {"name": "PyArray_TakeFrom.ret", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TakeFrom", "dispname": "-"}, {"name": "PyArray_TakeFrom.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TakeFrom", "dispname": "-"}, {"name": "PyArray_ToFile", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ToFile.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToFile", "dispname": "-"}, {"name": "PyArray_ToFile.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToFile", "dispname": "-"}, {"name": "PyArray_ToFile.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToFile", "dispname": "-"}, {"name": "PyArray_ToFile.sep", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToFile", "dispname": "-"}, {"name": "PyArray_ToList", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ToList.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToList", "dispname": "-"}, {"name": "PyArray_ToScalar", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ToScalar.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToScalar", "dispname": "-"}, {"name": "PyArray_ToScalar.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToScalar", "dispname": "-"}, {"name": "PyArray_ToString", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ToString.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToString", "dispname": "-"}, {"name": "PyArray_ToString.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ToString", "dispname": "-"}, {"name": "PyArray_Trace", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Trace.axis1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Trace", "dispname": "-"}, {"name": "PyArray_Trace.axis2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Trace", "dispname": "-"}, {"name": "PyArray_Trace.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Trace", "dispname": "-"}, {"name": "PyArray_Trace.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Trace", "dispname": "-"}, {"name": "PyArray_Trace.rtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Trace", "dispname": "-"}, {"name": "PyArray_Trace.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Trace", "dispname": "-"}, {"name": "PyArray_Transpose", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Transpose.permute", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Transpose", "dispname": "-"}, {"name": "PyArray_Transpose.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Transpose", "dispname": "-"}, {"name": "PyArray_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyArray_TypeObjectFromType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_TypeObjectFromType.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_TypeObjectFromType", "dispname": "-"}, {"name": "PyArray_UpdateFlags", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_UpdateFlags.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_UpdateFlags", "dispname": "-"}, {"name": "PyArray_UpdateFlags.flagmask", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_UpdateFlags", "dispname": "-"}, {"name": "PyArray_ValidType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ValidType.typenum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ValidType", "dispname": "-"}, {"name": "PyArray_View", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_View.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_View", "dispname": "-"}, {"name": "PyArray_View.ptype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_View", "dispname": "-"}, {"name": "PyArray_View.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_View", "dispname": "-"}, {"name": "PyArray_Where", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Where.condition", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Where", "dispname": "-"}, {"name": "PyArray_Where.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Where", "dispname": "-"}, {"name": "PyArray_Where.y", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Where", "dispname": "-"}, {"name": "PyArray_XDECREF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_XDECREF.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_XDECREF", "dispname": "-"}, {"name": "PyArray_ZEROS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_ZEROS.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ZEROS", "dispname": "-"}, {"name": "PyArray_ZEROS.fortran", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ZEROS", "dispname": "-"}, {"name": "PyArray_ZEROS.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ZEROS", "dispname": "-"}, {"name": "PyArray_ZEROS.type_num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_ZEROS", "dispname": "-"}, {"name": "PyArray_Zero", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Zero.arr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Zero", "dispname": "-"}, {"name": "PyArray_Zeros", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_Zeros.dims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Zeros", "dispname": "-"}, {"name": "PyArray_Zeros.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Zeros", "dispname": "-"}, {"name": "PyArray_Zeros.fortran", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Zeros", "dispname": "-"}, {"name": "PyArray_Zeros.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_Zeros", "dispname": "-"}, {"name": "PyArray_free", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_free.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_free", "dispname": "-"}, {"name": "PyArray_malloc", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_malloc.nbytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_malloc", "dispname": "-"}, {"name": "PyArray_realloc", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_realloc.NPY_USE_PYMEM", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyArray_realloc.nbytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_realloc", "dispname": "-"}, {"name": "PyArray_realloc.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyArray_realloc", "dispname": "-"}, {"name": "PyDataMem_FREE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataMem_FREE.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataMem_FREE", "dispname": "-"}, {"name": "PyDataMem_GetHandler", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/data_memory.html#c.$", "dispname": "-"}, {"name": "PyDataMem_Handler", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/data_memory.html#c.$", "dispname": "-"}, {"name": "PyDataMem_NEW", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataMem_NEW.nbytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataMem_NEW", "dispname": "-"}, {"name": "PyDataMem_RENEW", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataMem_RENEW.newbytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataMem_RENEW", "dispname": "-"}, {"name": "PyDataMem_RENEW.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataMem_RENEW", "dispname": "-"}, {"name": "PyDataMem_SetHandler", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/data_memory.html#c.$", "dispname": "-"}, {"name": "PyDataMem_SetHandler.handler", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/data_memory.html#c.PyDataMem_SetHandler", "dispname": "-"}, {"name": "PyDataType_ALIGNENT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ALIGNENT.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ALIGNENT", "dispname": "-"}, {"name": "PyDataType_C_METADATA", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_C_METADATA.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_C_METADATA", "dispname": "-"}, {"name": "PyDataType_ELSIZE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ELSIZE.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ELSIZE", "dispname": "-"}, {"name": "PyDataType_FIELDS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_FIELDS.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_FIELDS", "dispname": "-"}, {"name": "PyDataType_FLAGCHK", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyDataType_FLAGCHK.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.PyDataType_FLAGCHK", "dispname": "-"}, {"name": "PyDataType_FLAGCHK.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.PyDataType_FLAGCHK", "dispname": "-"}, {"name": "PyDataType_GetArrFuncs", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyDataType_GetArrFuncs.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.PyDataType_GetArrFuncs", "dispname": "-"}, {"name": "PyDataType_HASFIELDS", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_HASFIELDS.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_HASFIELDS", "dispname": "-"}, {"name": "PyDataType_ISBOOL", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISBOOL.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISBOOL", "dispname": "-"}, {"name": "PyDataType_ISCOMPLEX", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISCOMPLEX.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISCOMPLEX", "dispname": "-"}, {"name": "PyDataType_ISEXTENDED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISEXTENDED.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISEXTENDED", "dispname": "-"}, {"name": "PyDataType_ISFLEXIBLE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISFLEXIBLE.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISFLEXIBLE", "dispname": "-"}, {"name": "PyDataType_ISFLOAT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISFLOAT.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISFLOAT", "dispname": "-"}, {"name": "PyDataType_ISINTEGER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISINTEGER.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISINTEGER", "dispname": "-"}, {"name": "PyDataType_ISNUMBER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISNUMBER.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISNUMBER", "dispname": "-"}, {"name": "PyDataType_ISOBJECT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISOBJECT.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISOBJECT", "dispname": "-"}, {"name": "PyDataType_ISSIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISSIGNED.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISSIGNED", "dispname": "-"}, {"name": "PyDataType_ISSTRING", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISSTRING.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISSTRING", "dispname": "-"}, {"name": "PyDataType_ISUNSIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISUNSIGNED.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISUNSIGNED", "dispname": "-"}, {"name": "PyDataType_ISUNSIZED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISUNSIZED.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISUNSIZED", "dispname": "-"}, {"name": "PyDataType_ISUSERDEF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_ISUSERDEF.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_ISUSERDEF", "dispname": "-"}, {"name": "PyDataType_METADATA", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_METADATA.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_METADATA", "dispname": "-"}, {"name": "PyDataType_NAMES", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_NAMES.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_NAMES", "dispname": "-"}, {"name": "PyDataType_REFCHK", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyDataType_REFCHK.dtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.PyDataType_REFCHK", "dispname": "-"}, {"name": "PyDataType_SET_ELSIZE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_SET_ELSIZE.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_SET_ELSIZE", "dispname": "-"}, {"name": "PyDataType_SET_ELSIZE.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_SET_ELSIZE", "dispname": "-"}, {"name": "PyDataType_SUBARRAY", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_SUBARRAY.PyArray_ArrayDescr", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_SUBARRAY.PyArray_ArrayDescr.base", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_SUBARRAY.PyArray_ArrayDescr.shape", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDataType_SUBARRAY.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDataType_SUBARRAY", "dispname": "-"}, {"name": "PyDimMem_FREE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDimMem_FREE.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDimMem_FREE", "dispname": "-"}, {"name": "PyDimMem_NEW", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDimMem_NEW.nd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDimMem_NEW", "dispname": "-"}, {"name": "PyDimMem_RENEW", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyDimMem_RENEW.newnd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDimMem_RENEW", "dispname": "-"}, {"name": "PyDimMem_RENEW.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyDimMem_RENEW", "dispname": "-"}, {"name": "PyGenericArrType_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyModule_AddIntConstant", "domain": "c", "role": "function", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.$", "dispname": "-"}, {"name": "PyModule_AddIntConstant.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddIntConstant", "dispname": "-"}, {"name": "PyModule_AddIntConstant.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddIntConstant", "dispname": "-"}, {"name": "PyModule_AddIntConstant.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddIntConstant", "dispname": "-"}, {"name": "PyModule_AddObject", "domain": "c", "role": "function", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.$", "dispname": "-"}, {"name": "PyModule_AddObject.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddObject", "dispname": "-"}, {"name": "PyModule_AddObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddObject", "dispname": "-"}, {"name": "PyModule_AddObject.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddObject", "dispname": "-"}, {"name": "PyModule_AddStringConstant", "domain": "c", "role": "function", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.$", "dispname": "-"}, {"name": "PyModule_AddStringConstant.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddStringConstant", "dispname": "-"}, {"name": "PyModule_AddStringConstant.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddStringConstant", "dispname": "-"}, {"name": "PyModule_AddStringConstant.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.how-to-extend.html#c.PyModule_AddStringConstant", "dispname": "-"}, {"name": "PyTypeNum_ISBOOL", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISBOOL.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISBOOL", "dispname": "-"}, {"name": "PyTypeNum_ISCOMPLEX", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISCOMPLEX.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISCOMPLEX", "dispname": "-"}, {"name": "PyTypeNum_ISEXTENDED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISEXTENDED.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISEXTENDED", "dispname": "-"}, {"name": "PyTypeNum_ISFLEXIBLE", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISFLEXIBLE.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISFLEXIBLE", "dispname": "-"}, {"name": "PyTypeNum_ISFLOAT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISFLOAT.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISFLOAT", "dispname": "-"}, {"name": "PyTypeNum_ISINTEGER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISINTEGER.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISINTEGER", "dispname": "-"}, {"name": "PyTypeNum_ISNUMBER", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISNUMBER.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISNUMBER", "dispname": "-"}, {"name": "PyTypeNum_ISOBJECT", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISOBJECT.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISOBJECT", "dispname": "-"}, {"name": "PyTypeNum_ISSIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISSIGNED.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISSIGNED", "dispname": "-"}, {"name": "PyTypeNum_ISSTRING", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISSTRING.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISSTRING", "dispname": "-"}, {"name": "PyTypeNum_ISUNSIGNED", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISUNSIGNED.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISUNSIGNED", "dispname": "-"}, {"name": "PyTypeNum_ISUSERDEF", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyTypeNum_ISUSERDEF.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyTypeNum_ISUSERDEF", "dispname": "-"}, {"name": "PyUFuncGenericFunction", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFuncGenericFunction.loopfunc", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFuncGenericFunction.loopfunc.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFuncGenericFunction.loopfunc", "dispname": "-"}, {"name": "PyUFuncGenericFunction.loopfunc.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFuncGenericFunction.loopfunc", "dispname": "-"}, {"name": "PyUFuncGenericFunction.loopfunc.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFuncGenericFunction.loopfunc", "dispname": "-"}, {"name": "PyUFuncGenericFunction.loopfunc.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFuncGenericFunction.loopfunc", "dispname": "-"}, {"name": "PyUFuncObject", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_dim_flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_dim_ixs", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_dim_sizes", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_enabled", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_num_dim_ix", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_num_dims", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_offsets", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.core_signature", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.data", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.doc", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.functions", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.identity", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.identity_value", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.iter_flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.name", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.nargs", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.nin", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.nout", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.ntypes", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.obj", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.op_flags", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.ptr", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.type_resolver", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.type_resolver.PyUFunc_TypeResolutionFunc", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.types", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFuncObject.userloops", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFunc_AddLoopFromSpec", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyUFunc_AddLoopFromSpec.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddLoopFromSpec", "dispname": "-"}, {"name": "PyUFunc_AddLoopFromSpec.ufunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddLoopFromSpec", "dispname": "-"}, {"name": "PyUFunc_AddPromoter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyUFunc_AddPromoter.DType_tuple", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddPromoter", "dispname": "-"}, {"name": "PyUFunc_AddPromoter.promoter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddPromoter", "dispname": "-"}, {"name": "PyUFunc_AddPromoter.ufunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddPromoter", "dispname": "-"}, {"name": "PyUFunc_AddWrappingLoop", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyUFunc_AddWrappingLoop.new_dtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddWrappingLoop", "dispname": "-"}, {"name": "PyUFunc_AddWrappingLoop.translate_given_descrs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddWrappingLoop", "dispname": "-"}, {"name": "PyUFunc_AddWrappingLoop.translate_loop_descrs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddWrappingLoop", "dispname": "-"}, {"name": "PyUFunc_AddWrappingLoop.ufunc_obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddWrappingLoop", "dispname": "-"}, {"name": "PyUFunc_AddWrappingLoop.wrapped_dtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_AddWrappingLoop", "dispname": "-"}, {"name": "PyUFunc_DD_D", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_DD_D.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_DD_D", "dispname": "-"}, {"name": "PyUFunc_DD_D.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_DD_D", "dispname": "-"}, {"name": "PyUFunc_DD_D.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_DD_D", "dispname": "-"}, {"name": "PyUFunc_DD_D.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_DD_D", "dispname": "-"}, {"name": "PyUFunc_D_D", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_D_D.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_D_D", "dispname": "-"}, {"name": "PyUFunc_D_D.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_D_D", "dispname": "-"}, {"name": "PyUFunc_D_D.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_D_D", "dispname": "-"}, {"name": "PyUFunc_D_D.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_D_D", "dispname": "-"}, {"name": "PyUFunc_FF_F", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_FF_F.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F", "dispname": "-"}, {"name": "PyUFunc_FF_F.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F", "dispname": "-"}, {"name": "PyUFunc_FF_F.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F", "dispname": "-"}, {"name": "PyUFunc_FF_F.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F", "dispname": "-"}, {"name": "PyUFunc_FF_F_As_DD_D", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_FF_F_As_DD_D.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F_As_DD_D", "dispname": "-"}, {"name": "PyUFunc_FF_F_As_DD_D.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F_As_DD_D", "dispname": "-"}, {"name": "PyUFunc_FF_F_As_DD_D.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F_As_DD_D", "dispname": "-"}, {"name": "PyUFunc_FF_F_As_DD_D.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FF_F_As_DD_D", "dispname": "-"}, {"name": "PyUFunc_F_F", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_F_F.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F", "dispname": "-"}, {"name": "PyUFunc_F_F.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F", "dispname": "-"}, {"name": "PyUFunc_F_F.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F", "dispname": "-"}, {"name": "PyUFunc_F_F.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F", "dispname": "-"}, {"name": "PyUFunc_F_F_As_D_D", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_F_F_As_D_D.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F_As_D_D", "dispname": "-"}, {"name": "PyUFunc_F_F_As_D_D.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F_As_D_D", "dispname": "-"}, {"name": "PyUFunc_F_F_As_D_D.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F_As_D_D", "dispname": "-"}, {"name": "PyUFunc_F_F_As_D_D.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_F_F_As_D_D", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.doc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.identity", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.nin", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.nout", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.ntypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.types", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndData.unused", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndData", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.doc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.identity", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.nin", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.nout", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.ntypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.signature", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.types", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignature.unused", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignature", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.doc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.identity", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.identity_value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.nin", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.nout", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.ntypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.signature", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.types", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_FromFuncAndDataAndSignatureAndIdentity.unused", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_FromFuncAndDataAndSignatureAndIdentity", "dispname": "-"}, {"name": "PyUFunc_GG_G", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_GG_G.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_GG_G", "dispname": "-"}, {"name": "PyUFunc_GG_G.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_GG_G", "dispname": "-"}, {"name": "PyUFunc_GG_G.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_GG_G", "dispname": "-"}, {"name": "PyUFunc_GG_G.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_GG_G", "dispname": "-"}, {"name": "PyUFunc_G_G", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_G_G.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_G_G", "dispname": "-"}, {"name": "PyUFunc_G_G.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_G_G", "dispname": "-"}, {"name": "PyUFunc_G_G.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_G_G", "dispname": "-"}, {"name": "PyUFunc_G_G.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_G_G", "dispname": "-"}, {"name": "PyUFunc_GiveFloatingpointErrors", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "PyUFunc_GiveFloatingpointErrors.fpe_errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_GiveFloatingpointErrors", "dispname": "-"}, {"name": "PyUFunc_GiveFloatingpointErrors.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/array.html#c.PyUFunc_GiveFloatingpointErrors", "dispname": "-"}, {"name": "PyUFunc_IdentityValue", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ImportUFuncAPI", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_Loop1d", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFunc_MinusOne", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_None", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_OO_O", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_OO_O.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O", "dispname": "-"}, {"name": "PyUFunc_OO_O.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O", "dispname": "-"}, {"name": "PyUFunc_OO_O.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O", "dispname": "-"}, {"name": "PyUFunc_OO_O.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O", "dispname": "-"}, {"name": "PyUFunc_OO_O_method", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_OO_O_method.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O_method", "dispname": "-"}, {"name": "PyUFunc_OO_O_method.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O_method", "dispname": "-"}, {"name": "PyUFunc_OO_O_method.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O_method", "dispname": "-"}, {"name": "PyUFunc_OO_O_method.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_OO_O_method", "dispname": "-"}, {"name": "PyUFunc_O_O", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_O_O.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O", "dispname": "-"}, {"name": "PyUFunc_O_O.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O", "dispname": "-"}, {"name": "PyUFunc_O_O.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O", "dispname": "-"}, {"name": "PyUFunc_O_O.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O", "dispname": "-"}, {"name": "PyUFunc_O_O_method", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_O_O_method.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O_method", "dispname": "-"}, {"name": "PyUFunc_O_O_method.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O_method", "dispname": "-"}, {"name": "PyUFunc_O_O_method.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O_method", "dispname": "-"}, {"name": "PyUFunc_O_O_method.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_O_O_method", "dispname": "-"}, {"name": "PyUFunc_On_Om", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_On_Om.PyUFunc_PyFuncData", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_On_Om.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_On_Om", "dispname": "-"}, {"name": "PyUFunc_On_Om.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_On_Om", "dispname": "-"}, {"name": "PyUFunc_On_Om.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_On_Om", "dispname": "-"}, {"name": "PyUFunc_On_Om.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_On_Om", "dispname": "-"}, {"name": "PyUFunc_One", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForDescr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForDescr.arg_dtypes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForDescr", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForDescr.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForDescr", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForDescr.function", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForDescr", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForDescr.ufunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForDescr", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForDescr.userdtype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForDescr", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForType", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForType.arg_types", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForType", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForType.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForType", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForType.function", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForType", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForType.ufunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForType", "dispname": "-"}, {"name": "PyUFunc_RegisterLoopForType.usertype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_RegisterLoopForType", "dispname": "-"}, {"name": "PyUFunc_ReorderableNone", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ReplaceLoopBySignature", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ReplaceLoopBySignature.newfunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ReplaceLoopBySignature", "dispname": "-"}, {"name": "PyUFunc_ReplaceLoopBySignature.oldfunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ReplaceLoopBySignature", "dispname": "-"}, {"name": "PyUFunc_ReplaceLoopBySignature.signature", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ReplaceLoopBySignature", "dispname": "-"}, {"name": "PyUFunc_ReplaceLoopBySignature.ufunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ReplaceLoopBySignature", "dispname": "-"}, {"name": "PyUFunc_Type", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "PyUFunc_Zero", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_clearfperr", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_d_d", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_d_d.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_d_d", "dispname": "-"}, {"name": "PyUFunc_d_d.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_d_d", "dispname": "-"}, {"name": "PyUFunc_d_d.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_d_d", "dispname": "-"}, {"name": "PyUFunc_d_d.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_d_d", "dispname": "-"}, {"name": "PyUFunc_dd_d", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_dd_d.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_dd_d", "dispname": "-"}, {"name": "PyUFunc_dd_d.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_dd_d", "dispname": "-"}, {"name": "PyUFunc_dd_d.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_dd_d", "dispname": "-"}, {"name": "PyUFunc_dd_d.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_dd_d", "dispname": "-"}, {"name": "PyUFunc_e_e", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_e_e.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e", "dispname": "-"}, {"name": "PyUFunc_e_e.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e", "dispname": "-"}, {"name": "PyUFunc_e_e.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e", "dispname": "-"}, {"name": "PyUFunc_e_e.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e", "dispname": "-"}, {"name": "PyUFunc_e_e_As_d_d", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_e_e_As_d_d.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_d_d", "dispname": "-"}, {"name": "PyUFunc_e_e_As_d_d.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_d_d", "dispname": "-"}, {"name": "PyUFunc_e_e_As_d_d.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_d_d", "dispname": "-"}, {"name": "PyUFunc_e_e_As_d_d.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_d_d", "dispname": "-"}, {"name": "PyUFunc_e_e_As_f_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_e_e_As_f_f.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_f_f", "dispname": "-"}, {"name": "PyUFunc_e_e_As_f_f.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_f_f", "dispname": "-"}, {"name": "PyUFunc_e_e_As_f_f.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_f_f", "dispname": "-"}, {"name": "PyUFunc_e_e_As_f_f.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_e_e_As_f_f", "dispname": "-"}, {"name": "PyUFunc_ee_e", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ee_e.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e", "dispname": "-"}, {"name": "PyUFunc_ee_e.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e", "dispname": "-"}, {"name": "PyUFunc_ee_e.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e", "dispname": "-"}, {"name": "PyUFunc_ee_e.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_dd_d", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_dd_d.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_dd_d.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_dd_d.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_dd_d.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_ff_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_ff_f.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_ff_f", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_ff_f.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_ff_f", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_ff_f.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_ff_f", "dispname": "-"}, {"name": "PyUFunc_ee_e_As_ff_f.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ee_e_As_ff_f", "dispname": "-"}, {"name": "PyUFunc_f_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_f_f.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f", "dispname": "-"}, {"name": "PyUFunc_f_f.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f", "dispname": "-"}, {"name": "PyUFunc_f_f.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f", "dispname": "-"}, {"name": "PyUFunc_f_f.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f", "dispname": "-"}, {"name": "PyUFunc_f_f_As_d_d", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_f_f_As_d_d.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f_As_d_d", "dispname": "-"}, {"name": "PyUFunc_f_f_As_d_d.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f_As_d_d", "dispname": "-"}, {"name": "PyUFunc_f_f_As_d_d.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f_As_d_d", "dispname": "-"}, {"name": "PyUFunc_f_f_As_d_d.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_f_f_As_d_d", "dispname": "-"}, {"name": "PyUFunc_ff_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ff_f.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f", "dispname": "-"}, {"name": "PyUFunc_ff_f.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f", "dispname": "-"}, {"name": "PyUFunc_ff_f.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f", "dispname": "-"}, {"name": "PyUFunc_ff_f.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f", "dispname": "-"}, {"name": "PyUFunc_ff_f_As_dd_d", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_ff_f_As_dd_d.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ff_f_As_dd_d.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ff_f_As_dd_d.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_ff_f_As_dd_d.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_ff_f_As_dd_d", "dispname": "-"}, {"name": "PyUFunc_g_g", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_g_g.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_g_g", "dispname": "-"}, {"name": "PyUFunc_g_g.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_g_g", "dispname": "-"}, {"name": "PyUFunc_g_g.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_g_g", "dispname": "-"}, {"name": "PyUFunc_g_g.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_g_g", "dispname": "-"}, {"name": "PyUFunc_gg_g", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "PyUFunc_gg_g.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_gg_g", "dispname": "-"}, {"name": "PyUFunc_gg_g.dimensions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_gg_g", "dispname": "-"}, {"name": "PyUFunc_gg_g.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_gg_g", "dispname": "-"}, {"name": "PyUFunc_gg_g.steps", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/ufunc.html#c.PyUFunc_gg_g", "dispname": "-"}, {"name": "UFUNC_CORE_DIM_CAN_IGNORE", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "UFUNC_CORE_DIM_SIZE_INFERRED", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/types-and-structures.html#c.$", "dispname": "-"}, {"name": "UFUNC_FPE_DIVIDEBYZERO", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "UFUNC_FPE_INVALID", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "UFUNC_FPE_OVERFLOW", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "UFUNC_FPE_UNDERFLOW", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "binomial_t", "domain": "c", "role": "type", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "bitgen_t", "domain": "c", "role": "type", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "castfunc", "domain": "c", "role": "function", "priority": "1", "uri": "user/c-info.beyond-basics.html#c.$", "dispname": "-"}, {"name": "castfunc.from", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.beyond-basics.html#c.castfunc", "dispname": "-"}, {"name": "castfunc.fromarr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.beyond-basics.html#c.castfunc", "dispname": "-"}, {"name": "castfunc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.beyond-basics.html#c.castfunc", "dispname": "-"}, {"name": "castfunc.to", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.beyond-basics.html#c.castfunc", "dispname": "-"}, {"name": "castfunc.toarr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "user/c-info.beyond-basics.html#c.castfunc", "dispname": "-"}, {"name": "import_array", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/array.html#c.$", "dispname": "-"}, {"name": "import_ufunc", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/ufunc.html#c.$", "dispname": "-"}, {"name": "npy_bool", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_byte", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_cdouble", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_cfloat", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_clear_floatstatus", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_clear_floatstatus_barrier", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_clongdouble", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_copysign", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_datetime", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_datetimestruct", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/datetimes.html#c.$", "dispname": "-"}, {"name": "npy_double", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_double_to_half", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_double_to_half.d", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_double_to_half", "dispname": "-"}, {"name": "npy_doublebits_to_halfbits", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_doublebits_to_halfbits.d", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_doublebits_to_halfbits", "dispname": "-"}, {"name": "npy_float", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_float_to_half", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_float_to_half.f", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_float_to_half", "dispname": "-"}, {"name": "npy_floatbits_to_halfbits", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_floatbits_to_halfbits.f", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_floatbits_to_halfbits", "dispname": "-"}, {"name": "npy_get_floatstatus", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_get_floatstatus_barrier", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_half_copysign", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_copysign.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_copysign", "dispname": "-"}, {"name": "npy_half_copysign.y", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_copysign", "dispname": "-"}, {"name": "npy_half_eq", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_eq.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_eq", "dispname": "-"}, {"name": "npy_half_eq.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_eq", "dispname": "-"}, {"name": "npy_half_eq_nonan", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_eq_nonan.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_eq_nonan", "dispname": "-"}, {"name": "npy_half_eq_nonan.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_eq_nonan", "dispname": "-"}, {"name": "npy_half_ge", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_ge.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_ge", "dispname": "-"}, {"name": "npy_half_ge.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_ge", "dispname": "-"}, {"name": "npy_half_gt", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_gt.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_gt", "dispname": "-"}, {"name": "npy_half_gt.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_gt", "dispname": "-"}, {"name": "npy_half_isfinite", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_isfinite.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_isfinite", "dispname": "-"}, {"name": "npy_half_isinf", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_isinf.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_isinf", "dispname": "-"}, {"name": "npy_half_isnan", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_isnan.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_isnan", "dispname": "-"}, {"name": "npy_half_iszero", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_iszero.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_iszero", "dispname": "-"}, {"name": "npy_half_le", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_le.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_le", "dispname": "-"}, {"name": "npy_half_le.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_le", "dispname": "-"}, {"name": "npy_half_le_nonan", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_le_nonan.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_le_nonan", "dispname": "-"}, {"name": "npy_half_le_nonan.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_le_nonan", "dispname": "-"}, {"name": "npy_half_lt", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_lt.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_lt", "dispname": "-"}, {"name": "npy_half_lt.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_lt", "dispname": "-"}, {"name": "npy_half_lt_nonan", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_lt_nonan.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_lt_nonan", "dispname": "-"}, {"name": "npy_half_lt_nonan.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_lt_nonan", "dispname": "-"}, {"name": "npy_half_ne", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_ne.h1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_ne", "dispname": "-"}, {"name": "npy_half_ne.h2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_ne", "dispname": "-"}, {"name": "npy_half_nextafter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_nextafter.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_nextafter", "dispname": "-"}, {"name": "npy_half_nextafter.y", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_nextafter", "dispname": "-"}, {"name": "npy_half_signbit", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_signbit.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_signbit", "dispname": "-"}, {"name": "npy_half_spacing", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_spacing.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_spacing", "dispname": "-"}, {"name": "npy_half_to_double", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_to_double.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_to_double", "dispname": "-"}, {"name": "npy_half_to_float", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_half_to_float.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_half_to_float", "dispname": "-"}, {"name": "npy_halfbits_to_doublebits", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_halfbits_to_doublebits.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_halfbits_to_doublebits", "dispname": "-"}, {"name": "npy_halfbits_to_floatbits", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_halfbits_to_floatbits.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_halfbits_to_floatbits", "dispname": "-"}, {"name": "npy_int", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_int16", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_int32", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_int64", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_intp", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_isfinite", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_isinf", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_isnan", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_long", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_longdouble", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_longlong", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_nextafter", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_nextafter.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_nextafter", "dispname": "-"}, {"name": "npy_nextafter.y", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_nextafter", "dispname": "-"}, {"name": "npy_packed_static_string", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "npy_set_floatstatus_divbyzero", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_set_floatstatus_invalid", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_set_floatstatus_overflow", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_set_floatstatus_underflow", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_short", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_signbit", "domain": "c", "role": "macro", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_spacing", "domain": "c", "role": "function", "priority": "1", "uri": "reference/c-api/coremath.html#c.$", "dispname": "-"}, {"name": "npy_spacing.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/c-api/coremath.html#c.npy_spacing", "dispname": "-"}, {"name": "npy_static_string", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "npy_static_string.buf", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "npy_static_string.size", "domain": "c", "role": "member", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "npy_string_allocator", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/strings.html#c.$", "dispname": "-"}, {"name": "npy_timedelta", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_ubyte", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_uint", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_uint16", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_uint32", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_uint64", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_uintp", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_ulong", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_ulonglong", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "npy_ushort", "domain": "c", "role": "type", "priority": "1", "uri": "reference/c-api/dtype.html#c.$", "dispname": "-"}, {"name": "random_beta", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_beta.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_beta", "dispname": "-"}, {"name": "random_beta.b", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_beta", "dispname": "-"}, {"name": "random_beta.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_beta", "dispname": "-"}, {"name": "random_binomial", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_binomial.binomial", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_binomial", "dispname": "-"}, {"name": "random_binomial.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_binomial", "dispname": "-"}, {"name": "random_binomial.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_binomial", "dispname": "-"}, {"name": "random_binomial.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_binomial", "dispname": "-"}, {"name": "random_bounded_uint64", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_bounded_uint64.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_bounded_uint64", "dispname": "-"}, {"name": "random_bounded_uint64.mask", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_bounded_uint64", "dispname": "-"}, {"name": "random_bounded_uint64.off", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_bounded_uint64", "dispname": "-"}, {"name": "random_bounded_uint64.rng", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_bounded_uint64", "dispname": "-"}, {"name": "random_bounded_uint64.use_masked", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_bounded_uint64", "dispname": "-"}, {"name": "random_chisquare", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_chisquare.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_chisquare", "dispname": "-"}, {"name": "random_chisquare.df", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_chisquare", "dispname": "-"}, {"name": "random_exponential", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_exponential.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_exponential", "dispname": "-"}, {"name": "random_exponential.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_exponential", "dispname": "-"}, {"name": "random_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_f", "dispname": "-"}, {"name": "random_f.dfden", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_f", "dispname": "-"}, {"name": "random_f.dfnum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_f", "dispname": "-"}, {"name": "random_gamma", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_gamma.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gamma", "dispname": "-"}, {"name": "random_gamma.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gamma", "dispname": "-"}, {"name": "random_gamma.shape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gamma", "dispname": "-"}, {"name": "random_gamma_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_gamma_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gamma_f", "dispname": "-"}, {"name": "random_gamma_f.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gamma_f", "dispname": "-"}, {"name": "random_gamma_f.shape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gamma_f", "dispname": "-"}, {"name": "random_geometric", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_geometric.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_geometric", "dispname": "-"}, {"name": "random_geometric.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_geometric", "dispname": "-"}, {"name": "random_geometric_inversion", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_geometric_inversion.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_geometric_inversion", "dispname": "-"}, {"name": "random_geometric_inversion.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_geometric_inversion", "dispname": "-"}, {"name": "random_geometric_search", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_geometric_search.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_geometric_search", "dispname": "-"}, {"name": "random_geometric_search.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_geometric_search", "dispname": "-"}, {"name": "random_gumbel", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_gumbel.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gumbel", "dispname": "-"}, {"name": "random_gumbel.loc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gumbel", "dispname": "-"}, {"name": "random_gumbel.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_gumbel", "dispname": "-"}, {"name": "random_hypergeometric", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_hypergeometric.bad", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_hypergeometric", "dispname": "-"}, {"name": "random_hypergeometric.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_hypergeometric", "dispname": "-"}, {"name": "random_hypergeometric.good", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_hypergeometric", "dispname": "-"}, {"name": "random_hypergeometric.sample", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_hypergeometric", "dispname": "-"}, {"name": "random_interval", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_interval.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_interval", "dispname": "-"}, {"name": "random_interval.max", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_interval", "dispname": "-"}, {"name": "random_laplace", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_laplace.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_laplace", "dispname": "-"}, {"name": "random_laplace.loc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_laplace", "dispname": "-"}, {"name": "random_laplace.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_laplace", "dispname": "-"}, {"name": "random_logistic", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_logistic.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_logistic", "dispname": "-"}, {"name": "random_logistic.loc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_logistic", "dispname": "-"}, {"name": "random_logistic.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_logistic", "dispname": "-"}, {"name": "random_lognormal", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_lognormal.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_lognormal", "dispname": "-"}, {"name": "random_lognormal.mean", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_lognormal", "dispname": "-"}, {"name": "random_lognormal.sigma", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_lognormal", "dispname": "-"}, {"name": "random_logseries", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_logseries.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_logseries", "dispname": "-"}, {"name": "random_logseries.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_logseries", "dispname": "-"}, {"name": "random_multinomial", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_multinomial.binomial", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multinomial", "dispname": "-"}, {"name": "random_multinomial.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multinomial", "dispname": "-"}, {"name": "random_multinomial.d", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multinomial", "dispname": "-"}, {"name": "random_multinomial.mnix", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multinomial", "dispname": "-"}, {"name": "random_multinomial.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multinomial", "dispname": "-"}, {"name": "random_multinomial.pix", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multinomial", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.colors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.nsample", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.num_colors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.num_variates", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.total", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_count.variates", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_count", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.colors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.nsample", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.num_colors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.num_variates", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.total", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_multivariate_hypergeometric_marginals.variates", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_multivariate_hypergeometric_marginals", "dispname": "-"}, {"name": "random_negative_binomial", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_negative_binomial.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_negative_binomial", "dispname": "-"}, {"name": "random_negative_binomial.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_negative_binomial", "dispname": "-"}, {"name": "random_negative_binomial.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_negative_binomial", "dispname": "-"}, {"name": "random_noncentral_chisquare", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_noncentral_chisquare.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_chisquare", "dispname": "-"}, {"name": "random_noncentral_chisquare.df", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_chisquare", "dispname": "-"}, {"name": "random_noncentral_chisquare.nonc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_chisquare", "dispname": "-"}, {"name": "random_noncentral_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_noncentral_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_f", "dispname": "-"}, {"name": "random_noncentral_f.dfden", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_f", "dispname": "-"}, {"name": "random_noncentral_f.dfnum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_f", "dispname": "-"}, {"name": "random_noncentral_f.nonc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_noncentral_f", "dispname": "-"}, {"name": "random_normal", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_normal.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_normal", "dispname": "-"}, {"name": "random_normal.loc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_normal", "dispname": "-"}, {"name": "random_normal.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_normal", "dispname": "-"}, {"name": "random_pareto", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_pareto.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_pareto", "dispname": "-"}, {"name": "random_pareto.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_pareto", "dispname": "-"}, {"name": "random_poisson", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_poisson.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_poisson", "dispname": "-"}, {"name": "random_poisson.lam", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_poisson", "dispname": "-"}, {"name": "random_positive_int", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_positive_int.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_positive_int", "dispname": "-"}, {"name": "random_positive_int32", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_positive_int32.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_positive_int32", "dispname": "-"}, {"name": "random_positive_int64", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_positive_int64.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_positive_int64", "dispname": "-"}, {"name": "random_power", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_power.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_power", "dispname": "-"}, {"name": "random_power.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_power", "dispname": "-"}, {"name": "random_rayleigh", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_rayleigh.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_rayleigh", "dispname": "-"}, {"name": "random_rayleigh.mode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_rayleigh", "dispname": "-"}, {"name": "random_standard_cauchy", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_cauchy.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_cauchy", "dispname": "-"}, {"name": "random_standard_exponential", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_exponential.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential", "dispname": "-"}, {"name": "random_standard_exponential_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_exponential_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_f", "dispname": "-"}, {"name": "random_standard_exponential_fill", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_exponential_fill.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_fill", "dispname": "-"}, {"name": "random_standard_exponential_fill.cnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_fill", "dispname": "-"}, {"name": "random_standard_exponential_fill.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_fill", "dispname": "-"}, {"name": "random_standard_exponential_fill_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_exponential_fill_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_fill_f", "dispname": "-"}, {"name": "random_standard_exponential_fill_f.cnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_fill_f", "dispname": "-"}, {"name": "random_standard_exponential_fill_f.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_fill_f", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_inv_fill", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill.cnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_inv_fill", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_inv_fill", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_inv_fill_f", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill_f.cnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_inv_fill_f", "dispname": "-"}, {"name": "random_standard_exponential_inv_fill_f.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_exponential_inv_fill_f", "dispname": "-"}, {"name": "random_standard_gamma", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_gamma.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_gamma", "dispname": "-"}, {"name": "random_standard_gamma.shape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_gamma", "dispname": "-"}, {"name": "random_standard_gamma_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_gamma_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_gamma_f", "dispname": "-"}, {"name": "random_standard_gamma_f.shape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_gamma_f", "dispname": "-"}, {"name": "random_standard_normal", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_normal.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal", "dispname": "-"}, {"name": "random_standard_normal_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_normal_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_f", "dispname": "-"}, {"name": "random_standard_normal_fill", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_normal_fill.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_fill", "dispname": "-"}, {"name": "random_standard_normal_fill.count", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_fill", "dispname": "-"}, {"name": "random_standard_normal_fill.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_fill", "dispname": "-"}, {"name": "random_standard_normal_fill_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_normal_fill_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_fill_f", "dispname": "-"}, {"name": "random_standard_normal_fill_f.count", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_fill_f", "dispname": "-"}, {"name": "random_standard_normal_fill_f.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_normal_fill_f", "dispname": "-"}, {"name": "random_standard_t", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_t.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_t", "dispname": "-"}, {"name": "random_standard_t.df", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_t", "dispname": "-"}, {"name": "random_standard_uniform", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_uniform.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform", "dispname": "-"}, {"name": "random_standard_uniform_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_uniform_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_f", "dispname": "-"}, {"name": "random_standard_uniform_fill", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_uniform_fill.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_fill", "dispname": "-"}, {"name": "random_standard_uniform_fill.cnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_fill", "dispname": "-"}, {"name": "random_standard_uniform_fill.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_fill", "dispname": "-"}, {"name": "random_standard_uniform_fill_f", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_standard_uniform_fill_f.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_fill_f", "dispname": "-"}, {"name": "random_standard_uniform_fill_f.cnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_fill_f", "dispname": "-"}, {"name": "random_standard_uniform_fill_f.out", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_standard_uniform_fill_f", "dispname": "-"}, {"name": "random_triangular", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_triangular.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_triangular", "dispname": "-"}, {"name": "random_triangular.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_triangular", "dispname": "-"}, {"name": "random_triangular.mode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_triangular", "dispname": "-"}, {"name": "random_triangular.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_triangular", "dispname": "-"}, {"name": "random_uint", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_uint.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_uint", "dispname": "-"}, {"name": "random_uniform", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_uniform.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_uniform", "dispname": "-"}, {"name": "random_uniform.lower", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_uniform", "dispname": "-"}, {"name": "random_uniform.range", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_uniform", "dispname": "-"}, {"name": "random_vonmises", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_vonmises.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_vonmises", "dispname": "-"}, {"name": "random_vonmises.kappa", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_vonmises", "dispname": "-"}, {"name": "random_vonmises.mu", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_vonmises", "dispname": "-"}, {"name": "random_wald", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_wald.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_wald", "dispname": "-"}, {"name": "random_wald.mean", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_wald", "dispname": "-"}, {"name": "random_wald.scale", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_wald", "dispname": "-"}, {"name": "random_weibull", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_weibull.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_weibull", "dispname": "-"}, {"name": "random_weibull.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_weibull", "dispname": "-"}, {"name": "random_zipf", "domain": "c", "role": "function", "priority": "1", "uri": "reference/random/c-api.html#c.$", "dispname": "-"}, {"name": "random_zipf.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_zipf", "dispname": "-"}, {"name": "random_zipf.bitgen_state", "domain": "c", "role": "functionParam", "priority": "1", "uri": "reference/random/c-api.html#c.random_zipf", "dispname": "-"}, {"name": "DoxyLimbo", "domain": "cpp", "role": "class", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4I0_NSt6size_tEE9$", "dispname": "-"}, {"name": "DoxyLimbo::DoxyLimbo", "domain": "cpp", "role": "function", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo9DoxyLimboERK9DoxyLimboI2Tp1NE", "dispname": "-"}, {"name": "DoxyLimbo::DoxyLimbo", "domain": "cpp", "role": "function", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo9DoxyLimboERK9DoxyLimboI2Tp1NE", "dispname": "-"}, {"name": "DoxyLimbo::DoxyLimbo", "domain": "cpp", "role": "function", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo9DoxyLimboEv", "dispname": "-"}, {"name": "DoxyLimbo::DoxyLimbo", "domain": "cpp", "role": "function", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo9DoxyLimboEv", "dispname": "-"}, {"name": "DoxyLimbo::DoxyLimbo::l", "domain": "cpp", "role": "functionParam", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo9DoxyLimboERK9DoxyLimboI2Tp1NE", "dispname": "-"}, {"name": "DoxyLimbo::DoxyLimbo::l", "domain": "cpp", "role": "functionParam", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo9DoxyLimboERK9DoxyLimboI2Tp1NE", "dispname": "-"}, {"name": "DoxyLimbo::N", "domain": "cpp", "role": "templateParam", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4I0_NSt6size_tEE9DoxyLimbo", "dispname": "-"}, {"name": "DoxyLimbo::Tp", "domain": "cpp", "role": "templateParam", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4I0_NSt6size_tEE9DoxyLimbo", "dispname": "-"}, {"name": "DoxyLimbo::data", "domain": "cpp", "role": "function", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo4dataEv", "dispname": "-"}, {"name": "DoxyLimbo::data", "domain": "cpp", "role": "function", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo4dataEv", "dispname": "-"}, {"name": "DoxyLimbo::p_data", "domain": "cpp", "role": "member", "priority": "1", "uri": "dev/howto-docs.html#_CPPv4N9DoxyLimbo6p_dataE", "dispname": "-"}, {"name": "ndarray.__array_finalize__", "domain": "py", "role": "attribute", "priority": "1", "uri": "user/c-info.beyond-basics.html#$", "dispname": "-"}, {"name": "ndarray.__array_priority__", "domain": "py", "role": "attribute", "priority": "1", "uri": "user/c-info.beyond-basics.html#$", "dispname": "-"}, {"name": "ndarray.__array_wrap__", "domain": "py", "role": "attribute", "priority": "1", "uri": "user/c-info.beyond-basics.html#$", "dispname": "-"}, {"name": "ndpointer", "domain": "py", "role": "function", "priority": "1", "uri": "user/c-info.python-as-glue.html#$", "dispname": "-"}, {"name": "numpy", "domain": "py", "role": "module", "priority": "0", "uri": "reference/index.html#module-$", "dispname": "-"}, {"name": "numpy.__array_namespace_info__", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.__array_namespace_info__.html#$", "dispname": "-"}, {"name": "numpy.__array_namespace_info__.capabilities", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.__array_namespace_info__.capabilities.html#$", "dispname": "-"}, {"name": "numpy.__array_namespace_info__.default_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.__array_namespace_info__.default_device.html#$", "dispname": "-"}, {"name": "numpy.__array_namespace_info__.default_dtypes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.__array_namespace_info__.default_dtypes.html#$", "dispname": "-"}, {"name": "numpy.__array_namespace_info__.devices", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.__array_namespace_info__.devices.html#$", "dispname": "-"}, {"name": "numpy.__array_namespace_info__.dtypes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.__array_namespace_info__.dtypes.html#$", "dispname": "-"}, {"name": "numpy.absolute", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.absolute.html#$", "dispname": "-"}, {"name": "numpy.acos", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.acos.html#$", "dispname": "-"}, {"name": "numpy.acosh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.acosh.html#$", "dispname": "-"}, {"name": "numpy.add", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.add.html#$", "dispname": "-"}, {"name": "numpy.all", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.all.html#$", "dispname": "-"}, {"name": "numpy.allclose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.allclose.html#$", "dispname": "-"}, {"name": "numpy.amax", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.amax.html#$", "dispname": "-"}, {"name": "numpy.amin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.amin.html#$", "dispname": "-"}, {"name": "numpy.angle", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.angle.html#$", "dispname": "-"}, {"name": "numpy.any", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.any.html#$", "dispname": "-"}, {"name": "numpy.append", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.append.html#$", "dispname": "-"}, {"name": "numpy.apply_along_axis", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.apply_along_axis.html#$", "dispname": "-"}, {"name": "numpy.apply_over_axes", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.apply_over_axes.html#$", "dispname": "-"}, {"name": "numpy.arange", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.arange.html#$", "dispname": "-"}, {"name": "numpy.arccos", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arccos.html#$", "dispname": "-"}, {"name": "numpy.arccosh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arccosh.html#$", "dispname": "-"}, {"name": "numpy.arcsin", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arcsin.html#$", "dispname": "-"}, {"name": "numpy.arcsinh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arcsinh.html#$", "dispname": "-"}, {"name": "numpy.arctan", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arctan.html#$", "dispname": "-"}, {"name": "numpy.arctan2", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arctan2.html#$", "dispname": "-"}, {"name": "numpy.arctanh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.arctanh.html#$", "dispname": "-"}, {"name": "numpy.argmax", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.argmax.html#$", "dispname": "-"}, {"name": "numpy.argmin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.argmin.html#$", "dispname": "-"}, {"name": "numpy.argpartition", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.argpartition.html#$", "dispname": "-"}, {"name": "numpy.argsort", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.argsort.html#$", "dispname": "-"}, {"name": "numpy.argwhere", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.argwhere.html#$", "dispname": "-"}, {"name": "numpy.around", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.around.html#$", "dispname": "-"}, {"name": "numpy.array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array.html#$", "dispname": "-"}, {"name": "numpy.array2string", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array2string.html#$", "dispname": "-"}, {"name": "numpy.array_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array_equal.html#$", "dispname": "-"}, {"name": "numpy.array_equiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array_equiv.html#$", "dispname": "-"}, {"name": "numpy.array_repr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array_repr.html#$", "dispname": "-"}, {"name": "numpy.array_split", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array_split.html#$", "dispname": "-"}, {"name": "numpy.array_str", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.array_str.html#$", "dispname": "-"}, {"name": "numpy.asanyarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.asanyarray.html#$", "dispname": "-"}, {"name": "numpy.asarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.asarray.html#$", "dispname": "-"}, {"name": "numpy.asarray_chkfinite", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.asarray_chkfinite.html#$", "dispname": "-"}, {"name": "numpy.ascontiguousarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ascontiguousarray.html#$", "dispname": "-"}, {"name": "numpy.asfortranarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.asfortranarray.html#$", "dispname": "-"}, {"name": "numpy.asin", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.asin.html#$", "dispname": "-"}, {"name": "numpy.asinh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.asinh.html#$", "dispname": "-"}, {"name": "numpy.asmatrix", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.asmatrix.html#$", "dispname": "-"}, {"name": "numpy.astype", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.astype.html#$", "dispname": "-"}, {"name": "numpy.atan", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.atan.html#$", "dispname": "-"}, {"name": "numpy.atan2", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.atan2.html#$", "dispname": "-"}, {"name": "numpy.atanh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.atanh.html#$", "dispname": "-"}, {"name": "numpy.atleast_1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.atleast_1d.html#$", "dispname": "-"}, {"name": "numpy.atleast_2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.atleast_2d.html#$", "dispname": "-"}, {"name": "numpy.atleast_3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.atleast_3d.html#$", "dispname": "-"}, {"name": "numpy.average", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.average.html#$", "dispname": "-"}, {"name": "numpy.bartlett", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.bartlett.html#$", "dispname": "-"}, {"name": "numpy.base_repr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.base_repr.html#$", "dispname": "-"}, {"name": "numpy.binary_repr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.binary_repr.html#$", "dispname": "-"}, {"name": "numpy.bincount", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.bincount.html#$", "dispname": "-"}, {"name": "numpy.bitwise_and", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_and.html#$", "dispname": "-"}, {"name": "numpy.bitwise_count", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_count.html#$", "dispname": "-"}, {"name": "numpy.bitwise_invert", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_invert.html#$", "dispname": "-"}, {"name": "numpy.bitwise_left_shift", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_left_shift.html#$", "dispname": "-"}, {"name": "numpy.bitwise_or", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_or.html#$", "dispname": "-"}, {"name": "numpy.bitwise_right_shift", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_right_shift.html#$", "dispname": "-"}, {"name": "numpy.bitwise_xor", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.bitwise_xor.html#$", "dispname": "-"}, {"name": "numpy.blackman", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.blackman.html#$", "dispname": "-"}, {"name": "numpy.block", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.block.html#$", "dispname": "-"}, {"name": "numpy.bmat", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.bmat.html#$", "dispname": "-"}, {"name": "numpy.bool", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.bool_", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.broadcast", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.broadcast.html#$", "dispname": "-"}, {"name": "numpy.broadcast.index", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.index.html#$", "dispname": "-"}, {"name": "numpy.broadcast.iters", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.iters.html#$", "dispname": "-"}, {"name": "numpy.broadcast.nd", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.nd.html#$", "dispname": "-"}, {"name": "numpy.broadcast.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.ndim.html#$", "dispname": "-"}, {"name": "numpy.broadcast.numiter", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.numiter.html#$", "dispname": "-"}, {"name": "numpy.broadcast.reset", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.broadcast.reset.html#$", "dispname": "-"}, {"name": "numpy.broadcast.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.shape.html#$", "dispname": "-"}, {"name": "numpy.broadcast.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.broadcast.size.html#$", "dispname": "-"}, {"name": "numpy.broadcast_arrays", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.broadcast_arrays.html#$", "dispname": "-"}, {"name": "numpy.broadcast_shapes", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.broadcast_shapes.html#$", "dispname": "-"}, {"name": "numpy.broadcast_to", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.broadcast_to.html#$", "dispname": "-"}, {"name": "numpy.busday_count", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.busday_count.html#$", "dispname": "-"}, {"name": "numpy.busday_offset", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.busday_offset.html#$", "dispname": "-"}, {"name": "numpy.busdaycalendar", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.busdaycalendar.html#$", "dispname": "-"}, {"name": "numpy.busdaycalendar.holidays", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.busdaycalendar.holidays.html#$", "dispname": "-"}, {"name": "numpy.busdaycalendar.weekmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.busdaycalendar.weekmask.html#$", "dispname": "-"}, {"name": "numpy.byte", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.bytes_", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.c_", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.c_.html#$", "dispname": "-"}, {"name": "numpy.can_cast", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.can_cast.html#$", "dispname": "-"}, {"name": "numpy.cbrt", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.cbrt.html#$", "dispname": "-"}, {"name": "numpy.cdouble", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ceil", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ceil.html#$", "dispname": "-"}, {"name": "numpy.char", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.char.html#module-$", "dispname": "-"}, {"name": "numpy.char.add", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.add.html#$", "dispname": "-"}, {"name": "numpy.char.array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.array.html#$", "dispname": "-"}, {"name": "numpy.char.asarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.asarray.html#$", "dispname": "-"}, {"name": "numpy.char.capitalize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.capitalize.html#$", "dispname": "-"}, {"name": "numpy.char.center", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.center.html#$", "dispname": "-"}, {"name": "numpy.char.chararray", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.char.chararray.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.T.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.all.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.any.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.argmax.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.argmin.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.argpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.argpartition.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.argsort.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.astype.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.base.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.byteswap.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.capitalize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.capitalize.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.center", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.center.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.choose.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.clip.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.compress.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.conj.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.conjugate.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.copy.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.count", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.count.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.ctypes.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.cumprod.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.cumsum.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.data.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.decode", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.decode.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.device.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.diagonal.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.dot", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.dot.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.dtype.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.dump.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.dumps.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.encode", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.encode.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.endswith", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.endswith.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.expandtabs", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.expandtabs.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.fill.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.find", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.find.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.flags.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.flat.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.flatten.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.getfield.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.imag.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.index", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.index.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isalnum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isalnum.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isalpha", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isalpha.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isdecimal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isdecimal.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isdigit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isdigit.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.islower", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.islower.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isnumeric", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isnumeric.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isspace.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.istitle", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.istitle.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.isupper", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.isupper.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.item.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.itemset.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.itemsize.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.join", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.join.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.ljust", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.ljust.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.lower", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.lower.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.lstrip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.lstrip.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.mT", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.mT.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.max.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.mean.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.min.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.nbytes.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.ndim.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.nonzero.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.partition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.partition.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.prod.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.ptp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.ptp.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.put.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.ravel.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.real.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.repeat.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.replace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.replace.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.reshape.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.resize.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.rfind", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.rfind.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.rindex", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.rindex.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.rjust", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.rjust.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.round.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.rpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.rpartition.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.rsplit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.rsplit.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.rstrip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.rstrip.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.setfield.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.setflags.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.shape.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.size.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.sort.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.split", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.split.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.splitlines", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.splitlines.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.squeeze.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.startswith", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.startswith.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.std.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.char.chararray.strides.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.strip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.strip.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.sum.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.swapcase", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.swapcase.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.take.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.title", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.title.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.to_device.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.tobytes.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.tofile.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.tolist.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.tostring.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.trace.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.translate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.translate.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.transpose.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.upper", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.upper.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.var.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.view.html#$", "dispname": "-"}, {"name": "numpy.char.chararray.zfill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.char.chararray.zfill.html#$", "dispname": "-"}, {"name": "numpy.char.compare_chararrays", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.compare_chararrays.html#$", "dispname": "-"}, {"name": "numpy.char.count", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.count.html#$", "dispname": "-"}, {"name": "numpy.char.decode", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.decode.html#$", "dispname": "-"}, {"name": "numpy.char.encode", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.encode.html#$", "dispname": "-"}, {"name": "numpy.char.endswith", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.endswith.html#$", "dispname": "-"}, {"name": "numpy.char.equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.equal.html#$", "dispname": "-"}, {"name": "numpy.char.expandtabs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.expandtabs.html#$", "dispname": "-"}, {"name": "numpy.char.find", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.find.html#$", "dispname": "-"}, {"name": "numpy.char.greater", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.greater.html#$", "dispname": "-"}, {"name": "numpy.char.greater_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.greater_equal.html#$", "dispname": "-"}, {"name": "numpy.char.index", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.index.html#$", "dispname": "-"}, {"name": "numpy.char.isalnum", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isalnum.html#$", "dispname": "-"}, {"name": "numpy.char.isalpha", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isalpha.html#$", "dispname": "-"}, {"name": "numpy.char.isdecimal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isdecimal.html#$", "dispname": "-"}, {"name": "numpy.char.isdigit", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isdigit.html#$", "dispname": "-"}, {"name": "numpy.char.islower", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.islower.html#$", "dispname": "-"}, {"name": "numpy.char.isnumeric", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isnumeric.html#$", "dispname": "-"}, {"name": "numpy.char.isspace", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isspace.html#$", "dispname": "-"}, {"name": "numpy.char.istitle", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.istitle.html#$", "dispname": "-"}, {"name": "numpy.char.isupper", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.isupper.html#$", "dispname": "-"}, {"name": "numpy.char.join", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.join.html#$", "dispname": "-"}, {"name": "numpy.char.less", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.less.html#$", "dispname": "-"}, {"name": "numpy.char.less_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.less_equal.html#$", "dispname": "-"}, {"name": "numpy.char.ljust", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.ljust.html#$", "dispname": "-"}, {"name": "numpy.char.lower", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.lower.html#$", "dispname": "-"}, {"name": "numpy.char.lstrip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.lstrip.html#$", "dispname": "-"}, {"name": "numpy.char.mod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.mod.html#$", "dispname": "-"}, {"name": "numpy.char.multiply", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.multiply.html#$", "dispname": "-"}, {"name": "numpy.char.not_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.not_equal.html#$", "dispname": "-"}, {"name": "numpy.char.partition", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.partition.html#$", "dispname": "-"}, {"name": "numpy.char.replace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.replace.html#$", "dispname": "-"}, {"name": "numpy.char.rfind", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.rfind.html#$", "dispname": "-"}, {"name": "numpy.char.rindex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.rindex.html#$", "dispname": "-"}, {"name": "numpy.char.rjust", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.rjust.html#$", "dispname": "-"}, {"name": "numpy.char.rpartition", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.rpartition.html#$", "dispname": "-"}, {"name": "numpy.char.rsplit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.rsplit.html#$", "dispname": "-"}, {"name": "numpy.char.rstrip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.rstrip.html#$", "dispname": "-"}, {"name": "numpy.char.split", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.split.html#$", "dispname": "-"}, {"name": "numpy.char.splitlines", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.splitlines.html#$", "dispname": "-"}, {"name": "numpy.char.startswith", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.startswith.html#$", "dispname": "-"}, {"name": "numpy.char.str_len", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.char.str_len.html#$", "dispname": "-"}, {"name": "numpy.char.strip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.strip.html#$", "dispname": "-"}, {"name": "numpy.char.swapcase", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.swapcase.html#$", "dispname": "-"}, {"name": "numpy.char.title", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.title.html#$", "dispname": "-"}, {"name": "numpy.char.translate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.translate.html#$", "dispname": "-"}, {"name": "numpy.char.upper", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.upper.html#$", "dispname": "-"}, {"name": "numpy.char.zfill", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.char.zfill.html#$", "dispname": "-"}, {"name": "numpy.character", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.choose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.choose.html#$", "dispname": "-"}, {"name": "numpy.class.__array__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/arrays.classes.html#$", "dispname": "-"}, {"name": "numpy.class.__array_finalize__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/arrays.classes.html#$", "dispname": "-"}, {"name": "numpy.class.__array_function__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/arrays.classes.html#$", "dispname": "-"}, {"name": "numpy.class.__array_priority__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.classes.html#$", "dispname": "-"}, {"name": "numpy.class.__array_ufunc__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/arrays.classes.html#$", "dispname": "-"}, {"name": "numpy.class.__array_wrap__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/arrays.classes.html#$", "dispname": "-"}, {"name": "numpy.clip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.clip.html#$", "dispname": "-"}, {"name": "numpy.clongdouble", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.column_stack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.column_stack.html#$", "dispname": "-"}, {"name": "numpy.common_type", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.common_type.html#$", "dispname": "-"}, {"name": "numpy.complex128", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.complex192", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.complex256", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.complex64", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.complexfloating", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.compress", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.compress.html#$", "dispname": "-"}, {"name": "numpy.concat", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.concat.html#$", "dispname": "-"}, {"name": "numpy.concatenate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.concatenate.html#$", "dispname": "-"}, {"name": "numpy.conj", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.conj.html#$", "dispname": "-"}, {"name": "numpy.conjugate", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.conjugate.html#$", "dispname": "-"}, {"name": "numpy.convolve", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.convolve.html#$", "dispname": "-"}, {"name": "numpy.copy", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.copy.html#$", "dispname": "-"}, {"name": "numpy.copysign", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.copysign.html#$", "dispname": "-"}, {"name": "numpy.copyto", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.copyto.html#$", "dispname": "-"}, {"name": "numpy.corrcoef", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.corrcoef.html#$", "dispname": "-"}, {"name": "numpy.correlate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.correlate.html#$", "dispname": "-"}, {"name": "numpy.cos", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.cos.html#$", "dispname": "-"}, {"name": "numpy.cosh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.cosh.html#$", "dispname": "-"}, {"name": "numpy.count_nonzero", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.count_nonzero.html#$", "dispname": "-"}, {"name": "numpy.cov", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.cov.html#$", "dispname": "-"}, {"name": "numpy.cross", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.cross.html#$", "dispname": "-"}, {"name": "numpy.csingle", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ctypeslib", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.ctypeslib.html#module-$", "dispname": "-"}, {"name": "numpy.ctypeslib.as_array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/routines.ctypeslib.html#$", "dispname": "-"}, {"name": "numpy.ctypeslib.as_ctypes", "domain": "py", "role": "function", "priority": "1", "uri": "reference/routines.ctypeslib.html#$", "dispname": "-"}, {"name": "numpy.ctypeslib.as_ctypes_type", "domain": "py", "role": "function", "priority": "1", "uri": "reference/routines.ctypeslib.html#$", "dispname": "-"}, {"name": "numpy.ctypeslib.c_intp", "domain": "py", "role": "class", "priority": "1", "uri": "reference/routines.ctypeslib.html#$", "dispname": "-"}, {"name": "numpy.ctypeslib.load_library", "domain": "py", "role": "function", "priority": "1", "uri": "reference/routines.ctypeslib.html#$", "dispname": "-"}, {"name": "numpy.ctypeslib.ndpointer", "domain": "py", "role": "function", "priority": "1", "uri": "reference/routines.ctypeslib.html#$", "dispname": "-"}, {"name": "numpy.cumprod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.cumprod.html#$", "dispname": "-"}, {"name": "numpy.cumsum", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.cumsum.html#$", "dispname": "-"}, {"name": "numpy.cumulative_prod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.cumulative_prod.html#$", "dispname": "-"}, {"name": "numpy.cumulative_sum", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.cumulative_sum.html#$", "dispname": "-"}, {"name": "numpy.datetime64", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.datetime_as_string", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.datetime_as_string.html#$", "dispname": "-"}, {"name": "numpy.datetime_data", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.datetime_data.html#$", "dispname": "-"}, {"name": "numpy.deg2rad", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.deg2rad.html#$", "dispname": "-"}, {"name": "numpy.degrees", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.degrees.html#$", "dispname": "-"}, {"name": "numpy.delete", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.delete.html#$", "dispname": "-"}, {"name": "numpy.diag", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.diag.html#$", "dispname": "-"}, {"name": "numpy.diag_indices", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.diag_indices.html#$", "dispname": "-"}, {"name": "numpy.diag_indices_from", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.diag_indices_from.html#$", "dispname": "-"}, {"name": "numpy.diagflat", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.diagflat.html#$", "dispname": "-"}, {"name": "numpy.diagonal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.diagonal.html#$", "dispname": "-"}, {"name": "numpy.diff", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.diff.html#$", "dispname": "-"}, {"name": "numpy.digitize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.digitize.html#$", "dispname": "-"}, {"name": "numpy.distutils", "domain": "py", "role": "module", "priority": "0", "uri": "reference/distutils.html#module-$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.distutils.ccompiler.html#module-$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_compile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_compile.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_customize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_customize.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_customize_cmd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_customize_cmd.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_cxx_compiler", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_cxx_compiler.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_find_executables", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_find_executables.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_get_version", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_get_version.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_object_filenames", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_object_filenames.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_show_customization", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_show_customization.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.CCompiler_spawn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_spawn.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.gen_lib_options", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.gen_lib_options.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.new_compiler", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.new_compiler.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.replace_method", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.replace_method.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler.simple_version_match", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler.simple_version_match.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.distutils.ccompiler_opt.html#module-$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cache_flush", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cache_flush.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cache_hash", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cache_hash.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cc_normalize_flags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_normalize_flags.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_cexpr", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_cexpr.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_flags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_flags.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix_", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix_.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cache_factors", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cache_factors.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cc_flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cc_flags.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_check_path", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_check_path.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features_partial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features_partial.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_min_features", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_min_features.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_nocache", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_nocache.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_noopt", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_noopt.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_target_groups", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_target_groups.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_tmp_path", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_tmp_path.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_flags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_flags.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_names", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_names.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_dispatch_names", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_dispatch_names.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_compile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_compile.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_error", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_error.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_fatal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_fatal.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_info", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_info.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_load_module", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_load_module.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_log", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_log.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_test", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_test.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_ahead", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_ahead.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_c_preprocessor", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_c_preprocessor.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_can_autovec", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_can_autovec.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_detect", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_detect.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_extra_checks", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_extra_checks.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_flags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_flags.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_get_til", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_get_til.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies_c", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies_c.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_exist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_exist.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_supported", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_supported.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_names", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_names.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_sorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_sorted.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_test", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_test.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.generate_dispatch_header", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.generate_dispatch_header.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.is_cached", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.is_cached.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.me", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.me.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.parse_targets", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.parse_targets.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.report", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.report.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.CCompilerOpt.try_dispatch", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.try_dispatch.html#$", "dispname": "-"}, {"name": "numpy.distutils.ccompiler_opt.new_ccompiler_opt", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.new_ccompiler_opt.html#$", "dispname": "-"}, {"name": "numpy.distutils.core.Extension", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.distutils.core.Extension.html#$", "dispname": "-"}, {"name": "numpy.distutils.core.Extension.has_cxx_sources", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.core.Extension.has_cxx_sources.html#$", "dispname": "-"}, {"name": "numpy.distutils.core.Extension.has_f2py_sources", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.distutils.core.Extension.has_f2py_sources.html#$", "dispname": "-"}, {"name": "numpy.distutils.cpuinfo.cpu", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.distutils.cpuinfo.cpu.html#$", "dispname": "-"}, {"name": "numpy.distutils.exec_command", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.distutils.exec_command.html#module-$", "dispname": "-"}, {"name": "numpy.distutils.exec_command.exec_command", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.exec_command.exec_command.html#$", "dispname": "-"}, {"name": "numpy.distutils.exec_command.filepath_from_subprocess_output", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.exec_command.filepath_from_subprocess_output.html#$", "dispname": "-"}, {"name": "numpy.distutils.exec_command.find_executable", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.exec_command.find_executable.html#$", "dispname": "-"}, {"name": "numpy.distutils.exec_command.forward_bytes_to_stdout", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.exec_command.forward_bytes_to_stdout.html#$", "dispname": "-"}, {"name": "numpy.distutils.exec_command.get_pythonexe", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.exec_command.get_pythonexe.html#$", "dispname": "-"}, {"name": "numpy.distutils.exec_command.temp_file_name", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.exec_command.temp_file_name.html#$", "dispname": "-"}, {"name": "numpy.distutils.extension.Extension", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.distutils.core.Extension.html#numpy.distutils.core.Extension", "dispname": "-"}, {"name": "numpy.distutils.log.set_verbosity", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.log.set_verbosity.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util", "domain": "py", "role": "module", "priority": "0", "uri": "reference/distutils/misc_util.html#module-$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration", "domain": "py", "role": "class", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_data_dir", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_data_files", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_extension", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_headers", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_include_dirs", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_installed_library", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_library", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_npy_pkg_config", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_scripts", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.add_subpackage", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.get_build_temp_dir", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.get_config_cmd", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.get_distribution", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.get_info", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.get_subpackage", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.get_version", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.have_f77c", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.have_f90c", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.make_config_py", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.make_svn_version_py", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.paths", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.Configuration.todict", "domain": "py", "role": "method", "priority": "1", "uri": "reference/distutils.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.all_strings", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.allpath", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.appendpath", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.as_list", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.blue_text", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.cyan_text", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.cyg2win32", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.default_config_dict", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.dict_append", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.dot_join", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.exec_mod_from_location", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.filter_sources", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.generate_config_py", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_build_architecture", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_cmd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_data_files", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_dependencies", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_ext_source_files", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_frame", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_info", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_language", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_lib_source_files", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_mathlibs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_num_build_jobs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_numpy_include_dirs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_pkg_info", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.get_script_files", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.gpaths", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.green_text", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.has_cxx_sources", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.has_f_sources", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.is_local_src_dir", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.is_sequence", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.is_string", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.mingw32", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.minrelpath", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.njoin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.red_text", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.sanitize_cxx_flags", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.terminal_has_colors", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.misc_util.yellow_text", "domain": "py", "role": "function", "priority": "1", "uri": "reference/distutils/misc_util.html#$", "dispname": "-"}, {"name": "numpy.distutils.system_info.get_info", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.system_info.get_info.html#$", "dispname": "-"}, {"name": "numpy.distutils.system_info.get_standard_file", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.distutils.system_info.get_standard_file.html#$", "dispname": "-"}, {"name": "numpy.divide", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.divide.html#$", "dispname": "-"}, {"name": "numpy.divmod", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.divmod.html#$", "dispname": "-"}, {"name": "numpy.dot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.dot.html#$", "dispname": "-"}, {"name": "numpy.double", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.dsplit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.dsplit.html#$", "dispname": "-"}, {"name": "numpy.dstack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.dstack.html#$", "dispname": "-"}, {"name": "numpy.dtype", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.dtype.html#$", "dispname": "-"}, {"name": "numpy.dtype.__class_getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__class_getitem__.html#$", "dispname": "-"}, {"name": "numpy.dtype.__ge__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__ge__.html#$", "dispname": "-"}, {"name": "numpy.dtype.__gt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__gt__.html#$", "dispname": "-"}, {"name": "numpy.dtype.__le__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__le__.html#$", "dispname": "-"}, {"name": "numpy.dtype.__lt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__lt__.html#$", "dispname": "-"}, {"name": "numpy.dtype.__reduce__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__reduce__.html#$", "dispname": "-"}, {"name": "numpy.dtype.__setstate__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.__setstate__.html#$", "dispname": "-"}, {"name": "numpy.dtype.alignment", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.alignment.html#$", "dispname": "-"}, {"name": "numpy.dtype.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.base.html#$", "dispname": "-"}, {"name": "numpy.dtype.byteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.byteorder.html#$", "dispname": "-"}, {"name": "numpy.dtype.char", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.char.html#$", "dispname": "-"}, {"name": "numpy.dtype.descr", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.descr.html#$", "dispname": "-"}, {"name": "numpy.dtype.fields", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.fields.html#$", "dispname": "-"}, {"name": "numpy.dtype.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.flags.html#$", "dispname": "-"}, {"name": "numpy.dtype.hasobject", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.hasobject.html#$", "dispname": "-"}, {"name": "numpy.dtype.isalignedstruct", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.isalignedstruct.html#$", "dispname": "-"}, {"name": "numpy.dtype.isbuiltin", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.isbuiltin.html#$", "dispname": "-"}, {"name": "numpy.dtype.isnative", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.isnative.html#$", "dispname": "-"}, {"name": "numpy.dtype.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.itemsize.html#$", "dispname": "-"}, {"name": "numpy.dtype.kind", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.kind.html#$", "dispname": "-"}, {"name": "numpy.dtype.metadata", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.metadata.html#$", "dispname": "-"}, {"name": "numpy.dtype.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.name.html#$", "dispname": "-"}, {"name": "numpy.dtype.names", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.names.html#$", "dispname": "-"}, {"name": "numpy.dtype.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.ndim.html#$", "dispname": "-"}, {"name": "numpy.dtype.newbyteorder", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.dtype.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.dtype.num", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.num.html#$", "dispname": "-"}, {"name": "numpy.dtype.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.shape.html#$", "dispname": "-"}, {"name": "numpy.dtype.str", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.str.html#$", "dispname": "-"}, {"name": "numpy.dtype.subdtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.subdtype.html#$", "dispname": "-"}, {"name": "numpy.dtype.type", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.dtype.type.html#$", "dispname": "-"}, {"name": "numpy.dtypes", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.dtypes.html#module-$", "dispname": "-"}, {"name": "numpy.dtypes.BoolDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.ByteDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.BytesDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.CLongDoubleDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Complex128DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Complex64DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.DateTime64DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Float16DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Float32DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Float64DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Int16DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Int32DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Int64DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.Int8DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.IntDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.LongDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.LongDoubleDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.LongLongDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.ObjectDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.ShortDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.StrDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.StringDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.TimeDelta64DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UByteDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UInt16DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UInt32DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UInt64DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UInt8DType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UIntDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.ULongDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.ULongLongDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.UShortDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.dtypes.VoidDType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/routines.dtypes.html#$", "dispname": "-"}, {"name": "numpy.e", "domain": "py", "role": "data", "priority": "1", "uri": "reference/constants.html#$", "dispname": "-"}, {"name": "numpy.ediff1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ediff1d.html#$", "dispname": "-"}, {"name": "numpy.einsum", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.einsum.html#$", "dispname": "-"}, {"name": "numpy.einsum_path", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.einsum_path.html#$", "dispname": "-"}, {"name": "numpy.emath", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.emath.html#module-$", "dispname": "-"}, {"name": "numpy.emath.arccos", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.arccos.html#$", "dispname": "-"}, {"name": "numpy.emath.arcsin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.arcsin.html#$", "dispname": "-"}, {"name": "numpy.emath.arctanh", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.arctanh.html#$", "dispname": "-"}, {"name": "numpy.emath.log", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.log.html#$", "dispname": "-"}, {"name": "numpy.emath.log10", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.log10.html#$", "dispname": "-"}, {"name": "numpy.emath.log2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.log2.html#$", "dispname": "-"}, {"name": "numpy.emath.logn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.logn.html#$", "dispname": "-"}, {"name": "numpy.emath.power", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.power.html#$", "dispname": "-"}, {"name": "numpy.emath.sqrt", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.emath.sqrt.html#$", "dispname": "-"}, {"name": "numpy.empty", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.empty.html#$", "dispname": "-"}, {"name": "numpy.empty_like", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.empty_like.html#$", "dispname": "-"}, {"name": "numpy.equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.equal.html#$", "dispname": "-"}, {"name": "numpy.errstate", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.errstate.html#$", "dispname": "-"}, {"name": "numpy.errstate.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.errstate.__call__.html#$", "dispname": "-"}, {"name": "numpy.euler_gamma", "domain": "py", "role": "data", "priority": "1", "uri": "reference/constants.html#$", "dispname": "-"}, {"name": "numpy.exceptions", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.exceptions.html#module-$", "dispname": "-"}, {"name": "numpy.exceptions.AxisError", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.exceptions.AxisError.html#$", "dispname": "-"}, {"name": "numpy.exceptions.ComplexWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.exceptions.ComplexWarning.html#$", "dispname": "-"}, {"name": "numpy.exceptions.DTypePromotionError", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.exceptions.DTypePromotionError.html#$", "dispname": "-"}, {"name": "numpy.exceptions.RankWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.exceptions.RankWarning.html#$", "dispname": "-"}, {"name": "numpy.exceptions.TooHardError", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.exceptions.TooHardError.html#$", "dispname": "-"}, {"name": "numpy.exceptions.VisibleDeprecationWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.exceptions.VisibleDeprecationWarning.html#$", "dispname": "-"}, {"name": "numpy.exp", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.exp.html#$", "dispname": "-"}, {"name": "numpy.exp2", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.exp2.html#$", "dispname": "-"}, {"name": "numpy.expand_dims", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.expand_dims.html#$", "dispname": "-"}, {"name": "numpy.expm1", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.expm1.html#$", "dispname": "-"}, {"name": "numpy.extract", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.extract.html#$", "dispname": "-"}, {"name": "numpy.eye", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.eye.html#$", "dispname": "-"}, {"name": "numpy.f2py", "domain": "py", "role": "module", "priority": "0", "uri": "f2py/usage.html#module-$", "dispname": "-"}, {"name": "numpy.f2py.get_include", "domain": "py", "role": "function", "priority": "1", "uri": "f2py/usage.html#$", "dispname": "-"}, {"name": "numpy.f2py.run_main", "domain": "py", "role": "function", "priority": "1", "uri": "f2py/usage.html#$", "dispname": "-"}, {"name": "numpy.fabs", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.fabs.html#$", "dispname": "-"}, {"name": "numpy.fft", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.fft.html#module-$", "dispname": "-"}, {"name": "numpy.fft.fft", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.fft.html#$", "dispname": "-"}, {"name": "numpy.fft.fft2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.fft2.html#$", "dispname": "-"}, {"name": "numpy.fft.fftfreq", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.fftfreq.html#$", "dispname": "-"}, {"name": "numpy.fft.fftn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.fftn.html#$", "dispname": "-"}, {"name": "numpy.fft.fftshift", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.fftshift.html#$", "dispname": "-"}, {"name": "numpy.fft.hfft", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.hfft.html#$", "dispname": "-"}, {"name": "numpy.fft.ifft", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.ifft.html#$", "dispname": "-"}, {"name": "numpy.fft.ifft2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.ifft2.html#$", "dispname": "-"}, {"name": "numpy.fft.ifftn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.ifftn.html#$", "dispname": "-"}, {"name": "numpy.fft.ifftshift", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.ifftshift.html#$", "dispname": "-"}, {"name": "numpy.fft.ihfft", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.ihfft.html#$", "dispname": "-"}, {"name": "numpy.fft.irfft", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.irfft.html#$", "dispname": "-"}, {"name": "numpy.fft.irfft2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.irfft2.html#$", "dispname": "-"}, {"name": "numpy.fft.irfftn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.irfftn.html#$", "dispname": "-"}, {"name": "numpy.fft.rfft", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.rfft.html#$", "dispname": "-"}, {"name": "numpy.fft.rfft2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.rfft2.html#$", "dispname": "-"}, {"name": "numpy.fft.rfftfreq", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.rfftfreq.html#$", "dispname": "-"}, {"name": "numpy.fft.rfftn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fft.rfftn.html#$", "dispname": "-"}, {"name": "numpy.fill_diagonal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fill_diagonal.html#$", "dispname": "-"}, {"name": "numpy.finfo", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.finfo.html#$", "dispname": "-"}, {"name": "numpy.finfo.smallest_normal", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.finfo.smallest_normal.html#$", "dispname": "-"}, {"name": "numpy.finfo.tiny", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.finfo.tiny.html#$", "dispname": "-"}, {"name": "numpy.fix", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fix.html#$", "dispname": "-"}, {"name": "numpy.flatiter", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.flatiter.html#$", "dispname": "-"}, {"name": "numpy.flatiter.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.flatiter.base.html#$", "dispname": "-"}, {"name": "numpy.flatiter.coords", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.flatiter.coords.html#$", "dispname": "-"}, {"name": "numpy.flatiter.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.flatiter.copy.html#$", "dispname": "-"}, {"name": "numpy.flatiter.index", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.flatiter.index.html#$", "dispname": "-"}, {"name": "numpy.flatnonzero", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.flatnonzero.html#$", "dispname": "-"}, {"name": "numpy.flexible", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.flip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.flip.html#$", "dispname": "-"}, {"name": "numpy.fliplr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fliplr.html#$", "dispname": "-"}, {"name": "numpy.flipud", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.flipud.html#$", "dispname": "-"}, {"name": "numpy.float128", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.float16", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.float32", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.float64", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.float96", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.float_power", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.float_power.html#$", "dispname": "-"}, {"name": "numpy.floating", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.floor", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.floor.html#$", "dispname": "-"}, {"name": "numpy.floor_divide", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.floor_divide.html#$", "dispname": "-"}, {"name": "numpy.fmax", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.fmax.html#$", "dispname": "-"}, {"name": "numpy.fmin", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.fmin.html#$", "dispname": "-"}, {"name": "numpy.fmod", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.fmod.html#$", "dispname": "-"}, {"name": "numpy.format_float_positional", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.format_float_positional.html#$", "dispname": "-"}, {"name": "numpy.format_float_scientific", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.format_float_scientific.html#$", "dispname": "-"}, {"name": "numpy.frexp", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.frexp.html#$", "dispname": "-"}, {"name": "numpy.from_dlpack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.from_dlpack.html#$", "dispname": "-"}, {"name": "numpy.frombuffer", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.frombuffer.html#$", "dispname": "-"}, {"name": "numpy.fromfile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fromfile.html#$", "dispname": "-"}, {"name": "numpy.fromfunction", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fromfunction.html#$", "dispname": "-"}, {"name": "numpy.fromiter", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fromiter.html#$", "dispname": "-"}, {"name": "numpy.frompyfunc", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.frompyfunc.html#$", "dispname": "-"}, {"name": "numpy.fromregex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fromregex.html#$", "dispname": "-"}, {"name": "numpy.fromstring", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.fromstring.html#$", "dispname": "-"}, {"name": "numpy.full", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.full.html#$", "dispname": "-"}, {"name": "numpy.full_like", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.full_like.html#$", "dispname": "-"}, {"name": "numpy.gcd", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.gcd.html#$", "dispname": "-"}, {"name": "numpy.generic", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.generic.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.T.html#$", "dispname": "-"}, {"name": "numpy.generic.__array__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.__array__.html#$", "dispname": "-"}, {"name": "numpy.generic.__array_interface__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.__array_interface__.html#$", "dispname": "-"}, {"name": "numpy.generic.__array_priority__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.__array_priority__.html#$", "dispname": "-"}, {"name": "numpy.generic.__array_struct__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.__array_struct__.html#$", "dispname": "-"}, {"name": "numpy.generic.__array_wrap__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.__array_wrap__.html#$", "dispname": "-"}, {"name": "numpy.generic.__reduce__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.__reduce__.html#$", "dispname": "-"}, {"name": "numpy.generic.__setstate__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.__setstate__.html#$", "dispname": "-"}, {"name": "numpy.generic.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.base.html#$", "dispname": "-"}, {"name": "numpy.generic.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.byteswap.html#$", "dispname": "-"}, {"name": "numpy.generic.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.data.html#$", "dispname": "-"}, {"name": "numpy.generic.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.dtype.html#$", "dispname": "-"}, {"name": "numpy.generic.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.flags.html#$", "dispname": "-"}, {"name": "numpy.generic.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.flat.html#$", "dispname": "-"}, {"name": "numpy.generic.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.imag.html#$", "dispname": "-"}, {"name": "numpy.generic.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.itemsize.html#$", "dispname": "-"}, {"name": "numpy.generic.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.ndim.html#$", "dispname": "-"}, {"name": "numpy.generic.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.real.html#$", "dispname": "-"}, {"name": "numpy.generic.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.setflags.html#$", "dispname": "-"}, {"name": "numpy.generic.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.shape.html#$", "dispname": "-"}, {"name": "numpy.generic.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.size.html#$", "dispname": "-"}, {"name": "numpy.generic.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.generic.squeeze.html#$", "dispname": "-"}, {"name": "numpy.generic.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.generic.strides.html#$", "dispname": "-"}, {"name": "numpy.genfromtxt", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.genfromtxt.html#$", "dispname": "-"}, {"name": "numpy.geomspace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.geomspace.html#$", "dispname": "-"}, {"name": "numpy.get_include", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.get_include.html#$", "dispname": "-"}, {"name": "numpy.get_printoptions", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.get_printoptions.html#$", "dispname": "-"}, {"name": "numpy.getbufsize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.getbufsize.html#$", "dispname": "-"}, {"name": "numpy.geterr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.geterr.html#$", "dispname": "-"}, {"name": "numpy.geterrcall", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.geterrcall.html#$", "dispname": "-"}, {"name": "numpy.gradient", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.gradient.html#$", "dispname": "-"}, {"name": "numpy.greater", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.greater.html#$", "dispname": "-"}, {"name": "numpy.greater_equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.greater_equal.html#$", "dispname": "-"}, {"name": "numpy.half", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.hamming", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.hamming.html#$", "dispname": "-"}, {"name": "numpy.hanning", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.hanning.html#$", "dispname": "-"}, {"name": "numpy.heaviside", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.heaviside.html#$", "dispname": "-"}, {"name": "numpy.histogram", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.histogram.html#$", "dispname": "-"}, {"name": "numpy.histogram2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.histogram2d.html#$", "dispname": "-"}, {"name": "numpy.histogram_bin_edges", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.histogram_bin_edges.html#$", "dispname": "-"}, {"name": "numpy.histogramdd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.histogramdd.html#$", "dispname": "-"}, {"name": "numpy.hsplit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.hsplit.html#$", "dispname": "-"}, {"name": "numpy.hstack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.hstack.html#$", "dispname": "-"}, {"name": "numpy.hypot", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.hypot.html#$", "dispname": "-"}, {"name": "numpy.i0", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.i0.html#$", "dispname": "-"}, {"name": "numpy.identity", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.identity.html#$", "dispname": "-"}, {"name": "numpy.iinfo", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.iinfo.html#$", "dispname": "-"}, {"name": "numpy.iinfo.max", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.iinfo.max.html#$", "dispname": "-"}, {"name": "numpy.iinfo.min", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.iinfo.min.html#$", "dispname": "-"}, {"name": "numpy.imag", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.imag.html#$", "dispname": "-"}, {"name": "numpy.in1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.in1d.html#$", "dispname": "-"}, {"name": "numpy.indices", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.indices.html#$", "dispname": "-"}, {"name": "numpy.inexact", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.inf", "domain": "py", "role": "data", "priority": "1", "uri": "reference/constants.html#$", "dispname": "-"}, {"name": "numpy.info", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.info.html#$", "dispname": "-"}, {"name": "numpy.inner", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.inner.html#$", "dispname": "-"}, {"name": "numpy.insert", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.insert.html#$", "dispname": "-"}, {"name": "numpy.int16", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.int32", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.int64", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.int8", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.int_", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.intc", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.integer", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.interp", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.interp.html#$", "dispname": "-"}, {"name": "numpy.intersect1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.intersect1d.html#$", "dispname": "-"}, {"name": "numpy.intp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.invert", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.invert.html#$", "dispname": "-"}, {"name": "numpy.is_busday", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.is_busday.html#$", "dispname": "-"}, {"name": "numpy.isclose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isclose.html#$", "dispname": "-"}, {"name": "numpy.iscomplex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.iscomplex.html#$", "dispname": "-"}, {"name": "numpy.iscomplexobj", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.iscomplexobj.html#$", "dispname": "-"}, {"name": "numpy.isdtype", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isdtype.html#$", "dispname": "-"}, {"name": "numpy.isfinite", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.isfinite.html#$", "dispname": "-"}, {"name": "numpy.isfortran", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isfortran.html#$", "dispname": "-"}, {"name": "numpy.isin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isin.html#$", "dispname": "-"}, {"name": "numpy.isinf", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.isinf.html#$", "dispname": "-"}, {"name": "numpy.isnan", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.isnan.html#$", "dispname": "-"}, {"name": "numpy.isnat", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.isnat.html#$", "dispname": "-"}, {"name": "numpy.isneginf", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isneginf.html#$", "dispname": "-"}, {"name": "numpy.isposinf", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isposinf.html#$", "dispname": "-"}, {"name": "numpy.isreal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isreal.html#$", "dispname": "-"}, {"name": "numpy.isrealobj", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isrealobj.html#$", "dispname": "-"}, {"name": "numpy.isscalar", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.isscalar.html#$", "dispname": "-"}, {"name": "numpy.issubdtype", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.issubdtype.html#$", "dispname": "-"}, {"name": "numpy.iterable", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.iterable.html#$", "dispname": "-"}, {"name": "numpy.ix_", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ix_.html#$", "dispname": "-"}, {"name": "numpy.kaiser", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.kaiser.html#$", "dispname": "-"}, {"name": "numpy.kron", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.kron.html#$", "dispname": "-"}, {"name": "numpy.lcm", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.lcm.html#$", "dispname": "-"}, {"name": "numpy.ldexp", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ldexp.html#$", "dispname": "-"}, {"name": "numpy.left_shift", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.left_shift.html#$", "dispname": "-"}, {"name": "numpy.less", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.less.html#$", "dispname": "-"}, {"name": "numpy.less_equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.less_equal.html#$", "dispname": "-"}, {"name": "numpy.lexsort", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lexsort.html#$", "dispname": "-"}, {"name": "numpy.lib", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.lib.html#module-$", "dispname": "-"}, {"name": "numpy.lib.Arrayterator", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.lib.Arrayterator.html#$", "dispname": "-"}, {"name": "numpy.lib.Arrayterator.flat", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.lib.Arrayterator.flat.html#$", "dispname": "-"}, {"name": "numpy.lib.Arrayterator.shape", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.lib.Arrayterator.shape.html#$", "dispname": "-"}, {"name": "numpy.lib.NumpyVersion", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.lib.NumpyVersion.html#$", "dispname": "-"}, {"name": "numpy.lib._arrayterator_impl.Arrayterator", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.lib.Arrayterator.html#numpy.lib.Arrayterator", "dispname": "-"}, {"name": "numpy.lib._user_array_impl.container", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.html#numpy.lib.user_array.container", "dispname": "-"}, {"name": "numpy.lib._version.NumpyVersion", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.lib.NumpyVersion.html#numpy.lib.NumpyVersion", "dispname": "-"}, {"name": "numpy.lib.add_docstring", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.add_docstring.html#$", "dispname": "-"}, {"name": "numpy.lib.add_newdoc", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.add_newdoc.html#$", "dispname": "-"}, {"name": "numpy.lib.array_utils", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.array_utils.html#module-$", "dispname": "-"}, {"name": "numpy.lib.array_utils.byte_bounds", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.array_utils.byte_bounds.html#$", "dispname": "-"}, {"name": "numpy.lib.array_utils.normalize_axis_index", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.array_utils.normalize_axis_index.html#$", "dispname": "-"}, {"name": "numpy.lib.array_utils.normalize_axis_tuple", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.array_utils.normalize_axis_tuple.html#$", "dispname": "-"}, {"name": "numpy.lib.format", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.format.html#module-$", "dispname": "-"}, {"name": "numpy.lib.format.descr_to_dtype", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.descr_to_dtype.html#$", "dispname": "-"}, {"name": "numpy.lib.format.dtype_to_descr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.dtype_to_descr.html#$", "dispname": "-"}, {"name": "numpy.lib.format.header_data_from_array_1_0", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.header_data_from_array_1_0.html#$", "dispname": "-"}, {"name": "numpy.lib.format.isfileobj", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.isfileobj.html#$", "dispname": "-"}, {"name": "numpy.lib.format.magic", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.magic.html#$", "dispname": "-"}, {"name": "numpy.lib.format.open_memmap", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.open_memmap.html#$", "dispname": "-"}, {"name": "numpy.lib.format.read_array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.read_array.html#$", "dispname": "-"}, {"name": "numpy.lib.format.read_array_header_1_0", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.read_array_header_1_0.html#$", "dispname": "-"}, {"name": "numpy.lib.format.read_array_header_2_0", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.read_array_header_2_0.html#$", "dispname": "-"}, {"name": "numpy.lib.format.read_magic", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.read_magic.html#$", "dispname": "-"}, {"name": "numpy.lib.format.write_array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.write_array.html#$", "dispname": "-"}, {"name": "numpy.lib.format.write_array_header_1_0", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.write_array_header_1_0.html#$", "dispname": "-"}, {"name": "numpy.lib.format.write_array_header_2_0", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.format.write_array_header_2_0.html#$", "dispname": "-"}, {"name": "numpy.lib.introspect", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.introspect.html#module-$", "dispname": "-"}, {"name": "numpy.lib.introspect.opt_func_info", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.introspect.opt_func_info.html#$", "dispname": "-"}, {"name": "numpy.lib.mixins", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.mixins.html#module-$", "dispname": "-"}, {"name": "numpy.lib.mixins.NDArrayOperatorsMixin", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.lib.mixins.NDArrayOperatorsMixin.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.npyio.html#module-$", "dispname": "-"}, {"name": "numpy.lib.npyio.DataSource", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.DataSource.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.DataSource.abspath", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.DataSource.abspath.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.DataSource.exists", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.DataSource.exists.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.DataSource.open", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.DataSource.open.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.close", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.close.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.fid", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.fid.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.get", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.get.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.items", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.items.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.keys", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.keys.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.values", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.values.html#$", "dispname": "-"}, {"name": "numpy.lib.npyio.NpzFile.zip", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.zip.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions", "domain": "py", "role": "module", "priority": "0", "uri": "user/basics.rec.html#module-$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.append_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.apply_along_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.assign_fields_by_name", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.drop_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.find_duplicates", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.flatten_descr", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.get_fieldstructure", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.get_names", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.get_names_flat", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.join_by", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.merge_arrays", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.rec_append_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.rec_drop_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.rec_join", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.recursive_fill_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.rename_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.repack_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.require_fields", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.stack_arrays", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.structured_to_unstructured", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.recfunctions.unstructured_to_structured", "domain": "py", "role": "function", "priority": "1", "uri": "user/basics.rec.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.scimath.html#module-$", "dispname": "-"}, {"name": "numpy.lib.scimath.arccos", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.arccos.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.arcsin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.arcsin.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.arctanh", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.arctanh.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.log", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.log.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.log10", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.log10.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.log2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.log2.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.logn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.logn.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.power", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.power.html#$", "dispname": "-"}, {"name": "numpy.lib.scimath.sqrt", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/generated/numpy.lib.scimath.sqrt.html#$", "dispname": "-"}, {"name": "numpy.lib.stride_tricks", "domain": "py", "role": "module", "priority": "0", "uri": "reference/generated/numpy.lib.stride_tricks.html#module-$", "dispname": "-"}, {"name": "numpy.lib.stride_tricks.as_strided", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.stride_tricks.as_strided.html#$", "dispname": "-"}, {"name": "numpy.lib.stride_tricks.sliding_window_view", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.lib.stride_tricks.sliding_window_view.html#$", "dispname": "-"}, {"name": "numpy.lib.user_array.container", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.lib.user_array.container.html#$", "dispname": "-"}, {"name": "numpy.lib.user_array.container.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.user_array.container.astype.html#$", "dispname": "-"}, {"name": "numpy.lib.user_array.container.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.user_array.container.byteswap.html#$", "dispname": "-"}, {"name": "numpy.lib.user_array.container.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.user_array.container.copy.html#$", "dispname": "-"}, {"name": "numpy.lib.user_array.container.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.user_array.container.tobytes.html#$", "dispname": "-"}, {"name": "numpy.lib.user_array.container.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.lib.user_array.container.tostring.html#$", "dispname": "-"}, {"name": "numpy.linalg", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.linalg.html#module-$", "dispname": "-"}, {"name": "numpy.linalg.LinAlgError", "domain": "py", "role": "exception", "priority": "1", "uri": "reference/generated/numpy.linalg.LinAlgError.html#$", "dispname": "-"}, {"name": "numpy.linalg.cholesky", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.cholesky.html#$", "dispname": "-"}, {"name": "numpy.linalg.cond", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.cond.html#$", "dispname": "-"}, {"name": "numpy.linalg.cross", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.cross.html#$", "dispname": "-"}, {"name": "numpy.linalg.det", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.det.html#$", "dispname": "-"}, {"name": "numpy.linalg.diagonal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.diagonal.html#$", "dispname": "-"}, {"name": "numpy.linalg.eig", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.eig.html#$", "dispname": "-"}, {"name": "numpy.linalg.eigh", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.eigh.html#$", "dispname": "-"}, {"name": "numpy.linalg.eigvals", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.eigvals.html#$", "dispname": "-"}, {"name": "numpy.linalg.eigvalsh", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.eigvalsh.html#$", "dispname": "-"}, {"name": "numpy.linalg.inv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.inv.html#$", "dispname": "-"}, {"name": "numpy.linalg.lstsq", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.lstsq.html#$", "dispname": "-"}, {"name": "numpy.linalg.matmul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.matmul.html#$", "dispname": "-"}, {"name": "numpy.linalg.matrix_norm", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.matrix_norm.html#$", "dispname": "-"}, {"name": "numpy.linalg.matrix_power", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.matrix_power.html#$", "dispname": "-"}, {"name": "numpy.linalg.matrix_rank", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.matrix_rank.html#$", "dispname": "-"}, {"name": "numpy.linalg.matrix_transpose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.matrix_transpose.html#$", "dispname": "-"}, {"name": "numpy.linalg.multi_dot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.multi_dot.html#$", "dispname": "-"}, {"name": "numpy.linalg.norm", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.norm.html#$", "dispname": "-"}, {"name": "numpy.linalg.outer", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.outer.html#$", "dispname": "-"}, {"name": "numpy.linalg.pinv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.pinv.html#$", "dispname": "-"}, {"name": "numpy.linalg.qr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.qr.html#$", "dispname": "-"}, {"name": "numpy.linalg.slogdet", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.slogdet.html#$", "dispname": "-"}, {"name": "numpy.linalg.solve", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.solve.html#$", "dispname": "-"}, {"name": "numpy.linalg.svd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.svd.html#$", "dispname": "-"}, {"name": "numpy.linalg.svdvals", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.svdvals.html#$", "dispname": "-"}, {"name": "numpy.linalg.tensordot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.tensordot.html#$", "dispname": "-"}, {"name": "numpy.linalg.tensorinv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.tensorinv.html#$", "dispname": "-"}, {"name": "numpy.linalg.tensorsolve", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.tensorsolve.html#$", "dispname": "-"}, {"name": "numpy.linalg.trace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.trace.html#$", "dispname": "-"}, {"name": "numpy.linalg.vecdot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.vecdot.html#$", "dispname": "-"}, {"name": "numpy.linalg.vector_norm", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linalg.vector_norm.html#$", "dispname": "-"}, {"name": "numpy.linspace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.linspace.html#$", "dispname": "-"}, {"name": "numpy.load", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.load.html#$", "dispname": "-"}, {"name": "numpy.loadtxt", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.loadtxt.html#$", "dispname": "-"}, {"name": "numpy.log", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.log.html#$", "dispname": "-"}, {"name": "numpy.log10", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.log10.html#$", "dispname": "-"}, {"name": "numpy.log1p", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.log1p.html#$", "dispname": "-"}, {"name": "numpy.log2", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.log2.html#$", "dispname": "-"}, {"name": "numpy.logaddexp", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.logaddexp.html#$", "dispname": "-"}, {"name": "numpy.logaddexp2", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.logaddexp2.html#$", "dispname": "-"}, {"name": "numpy.logical_and", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.logical_and.html#$", "dispname": "-"}, {"name": "numpy.logical_not", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.logical_not.html#$", "dispname": "-"}, {"name": "numpy.logical_or", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.logical_or.html#$", "dispname": "-"}, {"name": "numpy.logical_xor", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.logical_xor.html#$", "dispname": "-"}, {"name": "numpy.logspace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.logspace.html#$", "dispname": "-"}, {"name": "numpy.long", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.longdouble", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.longlong", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ma", "domain": "py", "role": "module", "priority": "0", "uri": "reference/maskedarray.generic.html#module-$", "dispname": "-"}, {"name": "numpy.ma.MaskType", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.T.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.all.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.any.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.argmax.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.argmin.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.argsort.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.astype.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.base.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.byteswap.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.choose.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.clip.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.compress.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.conj.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.conjugate.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.copy.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.cumprod.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.cumsum.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.data.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.device.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.diagonal.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.dtype.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.dump.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.dumps.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.fill.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.flags.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.flat.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.flatten.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.getfield.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.imag.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.item.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.itemset.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.itemsize.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.max.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.mean.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.min.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.nbytes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.ndim.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.nonzero.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.prod.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.ptp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.ptp.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.put.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.ravel.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.real.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.repeat.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.reshape.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.resize.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.round.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.setfield.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.setflags.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.shape.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.size.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.sort.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.squeeze.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.std.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.strides.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.sum.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.take.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.to_device.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.tobytes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.tofile.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.tolist.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.tostring.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.trace.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.transpose.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.var.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskType.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskType.view.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray", "domain": "py", "role": "class", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.T", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.T.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__abs__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__abs__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__add__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__add__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__and__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__and__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__array__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__array__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__array_priority__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__array_priority__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__array_wrap__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__array_wrap__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__bool__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__bool__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__contains__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__contains__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__copy__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__copy__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__deepcopy__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__deepcopy__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__delitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__delitem__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__div__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__div__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__divmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__divmod__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__eq__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__eq__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__float__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__float__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__floordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__floordiv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ge__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ge__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__getitem__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__getstate__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__getstate__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__gt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__gt__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__iadd__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__iadd__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__iand__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__iand__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__idiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__idiv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ifloordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ifloordiv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ilshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ilshift__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__imod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__imod__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__imul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__imul__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__int__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__int__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ior__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ior__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ipow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ipow__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__irshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__irshift__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__isub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__isub__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__itruediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__itruediv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ixor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ixor__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__le__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__le__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__len__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__len__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__lshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__lshift__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__lt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__lt__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__mod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__mod__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__mul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__mul__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ne__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ne__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__new__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__new__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__or__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__or__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__pow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__pow__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__radd__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__radd__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rand__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rand__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rdivmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rdivmod__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__reduce__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__reduce__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__repr__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__repr__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rfloordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rfloordiv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rlshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rlshift__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rmod__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rmul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rmul__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__ror__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__ror__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rpow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rpow__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rrshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rrshift__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rshift__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rsub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rsub__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rtruediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rtruediv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__rxor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__rxor__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__setitem__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__setmask__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__setmask__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__setstate__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__setstate__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__str__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__sub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__sub__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__truediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__truediv__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.__xor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.__xor__.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.all.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.anom", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.anom.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.any.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.argmax.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.argmin.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.argsort.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.astype.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.base.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.baseclass", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.byteswap.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.choose.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.clip.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.compress.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.compressed", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.compressed.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.conj.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.conjugate.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.copy.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.count", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.count.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.ctypes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.cumprod.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.cumsum.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.diagonal.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.dtype", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.dtype.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.dump.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.dumps.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.fill.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.fill_value", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.filled", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.filled.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.flags.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.flat", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.flat.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.flatten.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.get_fill_value", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.get_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.harden_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.harden_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.hardmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.ids", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.ids.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.imag", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.imag.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.iscontiguous", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.iscontiguous.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.item.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.itemsize.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.mask", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.max.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.mean.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.min.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.nbytes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.ndim.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.nonzero.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.prod.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.product", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.product.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.ptp", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.ptp.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.put.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.ravel.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.real", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.real.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.recordmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.repeat.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.reshape.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.resize.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.round.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.set_fill_value", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.set_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.shape", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.shape.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.sharedmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.shrink_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.shrink_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.size.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.soften_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.soften_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.sort.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.squeeze.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.std.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.strides.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.sum.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.take.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.tobytes.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.tofile.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.toflex", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.toflex.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.tolist.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.torecords", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.torecords.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.tostring.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.trace.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.transpose.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.unshare_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.unshare_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.var.html#$", "dispname": "-"}, {"name": "numpy.ma.MaskedArray.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.MaskedArray.view.html#$", "dispname": "-"}, {"name": "numpy.ma.all", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.all.html#$", "dispname": "-"}, {"name": "numpy.ma.allclose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.allclose.html#$", "dispname": "-"}, {"name": "numpy.ma.allequal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.allequal.html#$", "dispname": "-"}, {"name": "numpy.ma.amax", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.amax.html#$", "dispname": "-"}, {"name": "numpy.ma.amin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.amin.html#$", "dispname": "-"}, {"name": "numpy.ma.anom", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.anom.html#$", "dispname": "-"}, {"name": "numpy.ma.anomalies", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.anomalies.html#$", "dispname": "-"}, {"name": "numpy.ma.any", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.any.html#$", "dispname": "-"}, {"name": "numpy.ma.append", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.append.html#$", "dispname": "-"}, {"name": "numpy.ma.apply_along_axis", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.apply_along_axis.html#$", "dispname": "-"}, {"name": "numpy.ma.apply_over_axes", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.apply_over_axes.html#$", "dispname": "-"}, {"name": "numpy.ma.arange", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.arange.html#$", "dispname": "-"}, {"name": "numpy.ma.argmax", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.argmax.html#$", "dispname": "-"}, {"name": "numpy.ma.argmin", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.argmin.html#$", "dispname": "-"}, {"name": "numpy.ma.argsort", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.argsort.html#$", "dispname": "-"}, {"name": "numpy.ma.around", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.around.html#$", "dispname": "-"}, {"name": "numpy.ma.array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.array.html#$", "dispname": "-"}, {"name": "numpy.ma.asanyarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.asanyarray.html#$", "dispname": "-"}, {"name": "numpy.ma.asarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.asarray.html#$", "dispname": "-"}, {"name": "numpy.ma.atleast_1d", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.atleast_1d.html#$", "dispname": "-"}, {"name": "numpy.ma.atleast_2d", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.atleast_2d.html#$", "dispname": "-"}, {"name": "numpy.ma.atleast_3d", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.atleast_3d.html#$", "dispname": "-"}, {"name": "numpy.ma.average", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.average.html#$", "dispname": "-"}, {"name": "numpy.ma.choose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.choose.html#$", "dispname": "-"}, {"name": "numpy.ma.clip", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.clip.html#$", "dispname": "-"}, {"name": "numpy.ma.clump_masked", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.clump_masked.html#$", "dispname": "-"}, {"name": "numpy.ma.clump_unmasked", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.clump_unmasked.html#$", "dispname": "-"}, {"name": "numpy.ma.column_stack", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.column_stack.html#$", "dispname": "-"}, {"name": "numpy.ma.common_fill_value", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.common_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.compress_cols", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.compress_cols.html#$", "dispname": "-"}, {"name": "numpy.ma.compress_nd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.compress_nd.html#$", "dispname": "-"}, {"name": "numpy.ma.compress_rowcols", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.compress_rowcols.html#$", "dispname": "-"}, {"name": "numpy.ma.compress_rows", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.compress_rows.html#$", "dispname": "-"}, {"name": "numpy.ma.compressed", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.compressed.html#$", "dispname": "-"}, {"name": "numpy.ma.concatenate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.concatenate.html#$", "dispname": "-"}, {"name": "numpy.ma.conjugate", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.conjugate.html#$", "dispname": "-"}, {"name": "numpy.ma.convolve", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.convolve.html#$", "dispname": "-"}, {"name": "numpy.ma.copy", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.copy.html#$", "dispname": "-"}, {"name": "numpy.ma.corrcoef", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.corrcoef.html#$", "dispname": "-"}, {"name": "numpy.ma.correlate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.correlate.html#$", "dispname": "-"}, {"name": "numpy.ma.count", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.count.html#$", "dispname": "-"}, {"name": "numpy.ma.count_masked", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.count_masked.html#$", "dispname": "-"}, {"name": "numpy.ma.cov", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.cov.html#$", "dispname": "-"}, {"name": "numpy.ma.cumprod", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.cumprod.html#$", "dispname": "-"}, {"name": "numpy.ma.cumsum", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.cumsum.html#$", "dispname": "-"}, {"name": "numpy.ma.default_fill_value", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.default_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.diag", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.diag.html#$", "dispname": "-"}, {"name": "numpy.ma.diagflat", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.diagflat.html#$", "dispname": "-"}, {"name": "numpy.ma.diff", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.diff.html#$", "dispname": "-"}, {"name": "numpy.ma.dot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.dot.html#$", "dispname": "-"}, {"name": "numpy.ma.dstack", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.dstack.html#$", "dispname": "-"}, {"name": "numpy.ma.ediff1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.ediff1d.html#$", "dispname": "-"}, {"name": "numpy.ma.empty", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.empty.html#$", "dispname": "-"}, {"name": "numpy.ma.empty_like", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.empty_like.html#$", "dispname": "-"}, {"name": "numpy.ma.expand_dims", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.expand_dims.html#$", "dispname": "-"}, {"name": "numpy.ma.filled", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.filled.html#$", "dispname": "-"}, {"name": "numpy.ma.fix_invalid", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.fix_invalid.html#$", "dispname": "-"}, {"name": "numpy.ma.flatnotmasked_contiguous", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.flatnotmasked_contiguous.html#$", "dispname": "-"}, {"name": "numpy.ma.flatnotmasked_edges", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.flatnotmasked_edges.html#$", "dispname": "-"}, {"name": "numpy.ma.flatten_mask", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.flatten_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.flatten_structured_array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.flatten_structured_array.html#$", "dispname": "-"}, {"name": "numpy.ma.frombuffer", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.frombuffer.html#$", "dispname": "-"}, {"name": "numpy.ma.fromflex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.fromflex.html#$", "dispname": "-"}, {"name": "numpy.ma.fromfunction", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.fromfunction.html#$", "dispname": "-"}, {"name": "numpy.ma.getdata", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.getdata.html#$", "dispname": "-"}, {"name": "numpy.ma.getmask", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.getmask.html#$", "dispname": "-"}, {"name": "numpy.ma.getmaskarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.getmaskarray.html#$", "dispname": "-"}, {"name": "numpy.ma.harden_mask", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.harden_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.hsplit", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.hsplit.html#$", "dispname": "-"}, {"name": "numpy.ma.hstack", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.hstack.html#$", "dispname": "-"}, {"name": "numpy.ma.identity", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.identity.html#$", "dispname": "-"}, {"name": "numpy.ma.in1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.in1d.html#$", "dispname": "-"}, {"name": "numpy.ma.indices", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.indices.html#$", "dispname": "-"}, {"name": "numpy.ma.inner", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.inner.html#$", "dispname": "-"}, {"name": "numpy.ma.innerproduct", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.innerproduct.html#$", "dispname": "-"}, {"name": "numpy.ma.intersect1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.intersect1d.html#$", "dispname": "-"}, {"name": "numpy.ma.isMA", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.isMA.html#$", "dispname": "-"}, {"name": "numpy.ma.isMaskedArray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.isMaskedArray.html#$", "dispname": "-"}, {"name": "numpy.ma.is_mask", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.is_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.is_masked", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.is_masked.html#$", "dispname": "-"}, {"name": "numpy.ma.isarray", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.isarray.html#$", "dispname": "-"}, {"name": "numpy.ma.isin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.isin.html#$", "dispname": "-"}, {"name": "numpy.ma.left_shift", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.left_shift.html#$", "dispname": "-"}, {"name": "numpy.ma.make_mask", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.make_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.make_mask_descr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.make_mask_descr.html#$", "dispname": "-"}, {"name": "numpy.ma.make_mask_none", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.make_mask_none.html#$", "dispname": "-"}, {"name": "numpy.ma.mask_cols", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.mask_cols.html#$", "dispname": "-"}, {"name": "numpy.ma.mask_or", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.mask_or.html#$", "dispname": "-"}, {"name": "numpy.ma.mask_rowcols", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.mask_rowcols.html#$", "dispname": "-"}, {"name": "numpy.ma.mask_rows", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.mask_rows.html#$", "dispname": "-"}, {"name": "numpy.ma.masked", "domain": "py", "role": "data", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_all", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_all.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_all_like", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_all_like.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.T", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.T.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.all.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.anom", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.anom.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.any.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.argmax.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.argmin.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.argpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.argpartition.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.argsort.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.astype.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.base.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.baseclass", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.byteswap.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.choose.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.clip.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.compress.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.compressed", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.compressed.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.conj.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.conjugate.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.copy.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.count", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.count.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.ctypes.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.cumprod.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.cumsum.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.data", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.data.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.device.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.diagonal.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.dot", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.dot.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.dtype", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.dtype.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.dump.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.dumps.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.fill.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.fill_value", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.filled", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.filled.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.flags.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.flat", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.flat.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.flatten.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.get_fill_value", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.get_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.get_imag", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.get_imag.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.get_real", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.get_real.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.getfield.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.harden_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.harden_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.hardmask", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.hardmask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.ids", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.ids.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.imag", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.imag.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.iscontiguous", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.iscontiguous.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.item.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.itemset.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.itemsize.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.mT", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.mT.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.mask", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.mask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.max.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.mean.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.min.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.nbytes.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.ndim.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.nonzero.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.partition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.partition.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.prod.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.product", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.product.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.ptp", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.ptp.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.put.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.ravel.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.real", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.real.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.recordmask", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.recordmask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.repeat.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.reshape.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.resize.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.round.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.set_fill_value", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.set_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.setfield.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.setflags.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.shape", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.shape.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.sharedmask", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.sharedmask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.shrink_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.shrink_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.size.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.soften_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.soften_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.sort.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.squeeze.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.std.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.strides.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.sum.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.take.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.to_device.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.tobytes.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.tofile.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.toflex", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.toflex.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.tolist.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.torecords", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.torecords.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.tostring.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.trace.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.transpose.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.unshare_mask", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.unshare_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.var.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_array.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ma.masked_array.view.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_equal.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_greater", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_greater.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_greater_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_greater_equal.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_inside", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_inside.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_invalid", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_invalid.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_less", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_less.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_less_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_less_equal.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_not_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_not_equal.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_object", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_object.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_outside", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_outside.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_print_option", "domain": "py", "role": "data", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_values", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_values.html#$", "dispname": "-"}, {"name": "numpy.ma.masked_where", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.masked_where.html#$", "dispname": "-"}, {"name": "numpy.ma.max", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.max.html#$", "dispname": "-"}, {"name": "numpy.ma.maximum_fill_value", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.maximum_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.mean", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.mean.html#$", "dispname": "-"}, {"name": "numpy.ma.median", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.median.html#$", "dispname": "-"}, {"name": "numpy.ma.min", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.min.html#$", "dispname": "-"}, {"name": "numpy.ma.minimum_fill_value", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.minimum_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.mr_", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.mr_.html#$", "dispname": "-"}, {"name": "numpy.ma.ndenumerate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.ndenumerate.html#$", "dispname": "-"}, {"name": "numpy.ma.ndim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.ndim.html#$", "dispname": "-"}, {"name": "numpy.ma.nomask", "domain": "py", "role": "data", "priority": "1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "-"}, {"name": "numpy.ma.nonzero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.nonzero.html#$", "dispname": "-"}, {"name": "numpy.ma.notmasked_contiguous", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.notmasked_contiguous.html#$", "dispname": "-"}, {"name": "numpy.ma.notmasked_edges", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.notmasked_edges.html#$", "dispname": "-"}, {"name": "numpy.ma.ones", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.ones.html#$", "dispname": "-"}, {"name": "numpy.ma.ones_like", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.ones_like.html#$", "dispname": "-"}, {"name": "numpy.ma.outer", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.outer.html#$", "dispname": "-"}, {"name": "numpy.ma.outerproduct", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.outerproduct.html#$", "dispname": "-"}, {"name": "numpy.ma.polyfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.polyfit.html#$", "dispname": "-"}, {"name": "numpy.ma.power", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.power.html#$", "dispname": "-"}, {"name": "numpy.ma.prod", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.prod.html#$", "dispname": "-"}, {"name": "numpy.ma.ptp", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.ptp.html#$", "dispname": "-"}, {"name": "numpy.ma.put", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.put.html#$", "dispname": "-"}, {"name": "numpy.ma.putmask", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.putmask.html#$", "dispname": "-"}, {"name": "numpy.ma.ravel", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.ravel.html#$", "dispname": "-"}, {"name": "numpy.ma.reshape", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.reshape.html#$", "dispname": "-"}, {"name": "numpy.ma.resize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.resize.html#$", "dispname": "-"}, {"name": "numpy.ma.right_shift", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.right_shift.html#$", "dispname": "-"}, {"name": "numpy.ma.round", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.round.html#$", "dispname": "-"}, {"name": "numpy.ma.round_", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.round_.html#$", "dispname": "-"}, {"name": "numpy.ma.set_fill_value", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.set_fill_value.html#$", "dispname": "-"}, {"name": "numpy.ma.setdiff1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.setdiff1d.html#$", "dispname": "-"}, {"name": "numpy.ma.setxor1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.setxor1d.html#$", "dispname": "-"}, {"name": "numpy.ma.shape", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.shape.html#$", "dispname": "-"}, {"name": "numpy.ma.size", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.size.html#$", "dispname": "-"}, {"name": "numpy.ma.soften_mask", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.soften_mask.html#$", "dispname": "-"}, {"name": "numpy.ma.sort", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.sort.html#$", "dispname": "-"}, {"name": "numpy.ma.squeeze", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.squeeze.html#$", "dispname": "-"}, {"name": "numpy.ma.stack", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.stack.html#$", "dispname": "-"}, {"name": "numpy.ma.std", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.std.html#$", "dispname": "-"}, {"name": "numpy.ma.sum", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.sum.html#$", "dispname": "-"}, {"name": "numpy.ma.swapaxes", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.ma.take", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.take.html#$", "dispname": "-"}, {"name": "numpy.ma.trace", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.trace.html#$", "dispname": "-"}, {"name": "numpy.ma.transpose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.transpose.html#$", "dispname": "-"}, {"name": "numpy.ma.union1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.union1d.html#$", "dispname": "-"}, {"name": "numpy.ma.unique", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.unique.html#$", "dispname": "-"}, {"name": "numpy.ma.vander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.vander.html#$", "dispname": "-"}, {"name": "numpy.ma.var", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.var.html#$", "dispname": "-"}, {"name": "numpy.ma.vstack", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.vstack.html#$", "dispname": "-"}, {"name": "numpy.ma.where", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ma.where.html#$", "dispname": "-"}, {"name": "numpy.ma.zeros", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.zeros.html#$", "dispname": "-"}, {"name": "numpy.ma.zeros_like", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ma.zeros_like.html#$", "dispname": "-"}, {"name": "numpy.mask_indices", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.mask_indices.html#$", "dispname": "-"}, {"name": "numpy.matlib", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.matlib.html#module-$", "dispname": "-"}, {"name": "numpy.matlib.empty", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.empty.html#$", "dispname": "-"}, {"name": "numpy.matlib.eye", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.eye.html#$", "dispname": "-"}, {"name": "numpy.matlib.identity", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.identity.html#$", "dispname": "-"}, {"name": "numpy.matlib.ones", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.ones.html#$", "dispname": "-"}, {"name": "numpy.matlib.rand", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.rand.html#$", "dispname": "-"}, {"name": "numpy.matlib.randn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.randn.html#$", "dispname": "-"}, {"name": "numpy.matlib.repmat", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.repmat.html#$", "dispname": "-"}, {"name": "numpy.matlib.zeros", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matlib.zeros.html#$", "dispname": "-"}, {"name": "numpy.matmul", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.matmul.html#$", "dispname": "-"}, {"name": "numpy.matrix", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.matrix.html#$", "dispname": "-"}, {"name": "numpy.matrix.A", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.matrix.A.html#$", "dispname": "-"}, {"name": "numpy.matrix.A1", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.matrix.A1.html#$", "dispname": "-"}, {"name": "numpy.matrix.H", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.matrix.H.html#$", "dispname": "-"}, {"name": "numpy.matrix.I", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.matrix.I.html#$", "dispname": "-"}, {"name": "numpy.matrix.T", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.matrix.T.html#$", "dispname": "-"}, {"name": "numpy.matrix.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.all.html#$", "dispname": "-"}, {"name": "numpy.matrix.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.any.html#$", "dispname": "-"}, {"name": "numpy.matrix.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.argmax.html#$", "dispname": "-"}, {"name": "numpy.matrix.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.argmin.html#$", "dispname": "-"}, {"name": "numpy.matrix.argpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.argpartition.html#$", "dispname": "-"}, {"name": "numpy.matrix.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.argsort.html#$", "dispname": "-"}, {"name": "numpy.matrix.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.astype.html#$", "dispname": "-"}, {"name": "numpy.matrix.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.base.html#$", "dispname": "-"}, {"name": "numpy.matrix.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.byteswap.html#$", "dispname": "-"}, {"name": "numpy.matrix.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.choose.html#$", "dispname": "-"}, {"name": "numpy.matrix.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.clip.html#$", "dispname": "-"}, {"name": "numpy.matrix.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.compress.html#$", "dispname": "-"}, {"name": "numpy.matrix.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.conj.html#$", "dispname": "-"}, {"name": "numpy.matrix.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.conjugate.html#$", "dispname": "-"}, {"name": "numpy.matrix.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.copy.html#$", "dispname": "-"}, {"name": "numpy.matrix.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.ctypes.html#$", "dispname": "-"}, {"name": "numpy.matrix.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.cumprod.html#$", "dispname": "-"}, {"name": "numpy.matrix.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.cumsum.html#$", "dispname": "-"}, {"name": "numpy.matrix.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.data.html#$", "dispname": "-"}, {"name": "numpy.matrix.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.device.html#$", "dispname": "-"}, {"name": "numpy.matrix.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.diagonal.html#$", "dispname": "-"}, {"name": "numpy.matrix.dot", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.dot.html#$", "dispname": "-"}, {"name": "numpy.matrix.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.dtype.html#$", "dispname": "-"}, {"name": "numpy.matrix.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.dump.html#$", "dispname": "-"}, {"name": "numpy.matrix.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.dumps.html#$", "dispname": "-"}, {"name": "numpy.matrix.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.fill.html#$", "dispname": "-"}, {"name": "numpy.matrix.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.flags.html#$", "dispname": "-"}, {"name": "numpy.matrix.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.flat.html#$", "dispname": "-"}, {"name": "numpy.matrix.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.flatten.html#$", "dispname": "-"}, {"name": "numpy.matrix.getA", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.getA.html#$", "dispname": "-"}, {"name": "numpy.matrix.getA1", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.getA1.html#$", "dispname": "-"}, {"name": "numpy.matrix.getH", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.getH.html#$", "dispname": "-"}, {"name": "numpy.matrix.getI", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.getI.html#$", "dispname": "-"}, {"name": "numpy.matrix.getT", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.getT.html#$", "dispname": "-"}, {"name": "numpy.matrix.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.getfield.html#$", "dispname": "-"}, {"name": "numpy.matrix.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.imag.html#$", "dispname": "-"}, {"name": "numpy.matrix.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.item.html#$", "dispname": "-"}, {"name": "numpy.matrix.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.itemset.html#$", "dispname": "-"}, {"name": "numpy.matrix.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.itemsize.html#$", "dispname": "-"}, {"name": "numpy.matrix.mT", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.mT.html#$", "dispname": "-"}, {"name": "numpy.matrix.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.max.html#$", "dispname": "-"}, {"name": "numpy.matrix.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.mean.html#$", "dispname": "-"}, {"name": "numpy.matrix.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.min.html#$", "dispname": "-"}, {"name": "numpy.matrix.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.nbytes.html#$", "dispname": "-"}, {"name": "numpy.matrix.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.ndim.html#$", "dispname": "-"}, {"name": "numpy.matrix.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.matrix.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.nonzero.html#$", "dispname": "-"}, {"name": "numpy.matrix.partition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.partition.html#$", "dispname": "-"}, {"name": "numpy.matrix.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.prod.html#$", "dispname": "-"}, {"name": "numpy.matrix.ptp", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.ptp.html#$", "dispname": "-"}, {"name": "numpy.matrix.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.put.html#$", "dispname": "-"}, {"name": "numpy.matrix.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.ravel.html#$", "dispname": "-"}, {"name": "numpy.matrix.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.real.html#$", "dispname": "-"}, {"name": "numpy.matrix.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.repeat.html#$", "dispname": "-"}, {"name": "numpy.matrix.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.reshape.html#$", "dispname": "-"}, {"name": "numpy.matrix.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.resize.html#$", "dispname": "-"}, {"name": "numpy.matrix.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.round.html#$", "dispname": "-"}, {"name": "numpy.matrix.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.matrix.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.setfield.html#$", "dispname": "-"}, {"name": "numpy.matrix.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.setflags.html#$", "dispname": "-"}, {"name": "numpy.matrix.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.shape.html#$", "dispname": "-"}, {"name": "numpy.matrix.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.size.html#$", "dispname": "-"}, {"name": "numpy.matrix.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.sort.html#$", "dispname": "-"}, {"name": "numpy.matrix.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.squeeze.html#$", "dispname": "-"}, {"name": "numpy.matrix.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.std.html#$", "dispname": "-"}, {"name": "numpy.matrix.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.matrix.strides.html#$", "dispname": "-"}, {"name": "numpy.matrix.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.sum.html#$", "dispname": "-"}, {"name": "numpy.matrix.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.matrix.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.take.html#$", "dispname": "-"}, {"name": "numpy.matrix.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.to_device.html#$", "dispname": "-"}, {"name": "numpy.matrix.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.tobytes.html#$", "dispname": "-"}, {"name": "numpy.matrix.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.tofile.html#$", "dispname": "-"}, {"name": "numpy.matrix.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.tolist.html#$", "dispname": "-"}, {"name": "numpy.matrix.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.tostring.html#$", "dispname": "-"}, {"name": "numpy.matrix.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.trace.html#$", "dispname": "-"}, {"name": "numpy.matrix.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.transpose.html#$", "dispname": "-"}, {"name": "numpy.matrix.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.var.html#$", "dispname": "-"}, {"name": "numpy.matrix.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.matrix.view.html#$", "dispname": "-"}, {"name": "numpy.matrix_transpose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.matrix_transpose.html#$", "dispname": "-"}, {"name": "numpy.max", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.max.html#$", "dispname": "-"}, {"name": "numpy.maximum", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.maximum.html#$", "dispname": "-"}, {"name": "numpy.may_share_memory", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.may_share_memory.html#$", "dispname": "-"}, {"name": "numpy.mean", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.mean.html#$", "dispname": "-"}, {"name": "numpy.median", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.median.html#$", "dispname": "-"}, {"name": "numpy.memmap", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.memmap.html#$", "dispname": "-"}, {"name": "numpy.memmap.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.T.html#$", "dispname": "-"}, {"name": "numpy.memmap.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.all.html#$", "dispname": "-"}, {"name": "numpy.memmap.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.any.html#$", "dispname": "-"}, {"name": "numpy.memmap.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.argmax.html#$", "dispname": "-"}, {"name": "numpy.memmap.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.argmin.html#$", "dispname": "-"}, {"name": "numpy.memmap.argpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.argpartition.html#$", "dispname": "-"}, {"name": "numpy.memmap.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.argsort.html#$", "dispname": "-"}, {"name": "numpy.memmap.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.astype.html#$", "dispname": "-"}, {"name": "numpy.memmap.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.base.html#$", "dispname": "-"}, {"name": "numpy.memmap.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.byteswap.html#$", "dispname": "-"}, {"name": "numpy.memmap.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.choose.html#$", "dispname": "-"}, {"name": "numpy.memmap.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.clip.html#$", "dispname": "-"}, {"name": "numpy.memmap.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.compress.html#$", "dispname": "-"}, {"name": "numpy.memmap.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.conj.html#$", "dispname": "-"}, {"name": "numpy.memmap.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.conjugate.html#$", "dispname": "-"}, {"name": "numpy.memmap.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.copy.html#$", "dispname": "-"}, {"name": "numpy.memmap.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.ctypes.html#$", "dispname": "-"}, {"name": "numpy.memmap.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.cumprod.html#$", "dispname": "-"}, {"name": "numpy.memmap.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.cumsum.html#$", "dispname": "-"}, {"name": "numpy.memmap.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.data.html#$", "dispname": "-"}, {"name": "numpy.memmap.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.device.html#$", "dispname": "-"}, {"name": "numpy.memmap.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.diagonal.html#$", "dispname": "-"}, {"name": "numpy.memmap.dot", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.dot.html#$", "dispname": "-"}, {"name": "numpy.memmap.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.dtype.html#$", "dispname": "-"}, {"name": "numpy.memmap.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.dump.html#$", "dispname": "-"}, {"name": "numpy.memmap.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.dumps.html#$", "dispname": "-"}, {"name": "numpy.memmap.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.fill.html#$", "dispname": "-"}, {"name": "numpy.memmap.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.flags.html#$", "dispname": "-"}, {"name": "numpy.memmap.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.flat.html#$", "dispname": "-"}, {"name": "numpy.memmap.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.flatten.html#$", "dispname": "-"}, {"name": "numpy.memmap.flush", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.flush.html#$", "dispname": "-"}, {"name": "numpy.memmap.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.getfield.html#$", "dispname": "-"}, {"name": "numpy.memmap.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.imag.html#$", "dispname": "-"}, {"name": "numpy.memmap.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.item.html#$", "dispname": "-"}, {"name": "numpy.memmap.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.itemset.html#$", "dispname": "-"}, {"name": "numpy.memmap.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.itemsize.html#$", "dispname": "-"}, {"name": "numpy.memmap.mT", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.mT.html#$", "dispname": "-"}, {"name": "numpy.memmap.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.max.html#$", "dispname": "-"}, {"name": "numpy.memmap.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.mean.html#$", "dispname": "-"}, {"name": "numpy.memmap.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.min.html#$", "dispname": "-"}, {"name": "numpy.memmap.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.nbytes.html#$", "dispname": "-"}, {"name": "numpy.memmap.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.ndim.html#$", "dispname": "-"}, {"name": "numpy.memmap.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.memmap.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.nonzero.html#$", "dispname": "-"}, {"name": "numpy.memmap.partition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.partition.html#$", "dispname": "-"}, {"name": "numpy.memmap.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.prod.html#$", "dispname": "-"}, {"name": "numpy.memmap.ptp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.ptp.html#$", "dispname": "-"}, {"name": "numpy.memmap.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.put.html#$", "dispname": "-"}, {"name": "numpy.memmap.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.ravel.html#$", "dispname": "-"}, {"name": "numpy.memmap.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.real.html#$", "dispname": "-"}, {"name": "numpy.memmap.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.repeat.html#$", "dispname": "-"}, {"name": "numpy.memmap.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.reshape.html#$", "dispname": "-"}, {"name": "numpy.memmap.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.resize.html#$", "dispname": "-"}, {"name": "numpy.memmap.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.round.html#$", "dispname": "-"}, {"name": "numpy.memmap.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.memmap.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.setfield.html#$", "dispname": "-"}, {"name": "numpy.memmap.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.setflags.html#$", "dispname": "-"}, {"name": "numpy.memmap.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.shape.html#$", "dispname": "-"}, {"name": "numpy.memmap.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.size.html#$", "dispname": "-"}, {"name": "numpy.memmap.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.sort.html#$", "dispname": "-"}, {"name": "numpy.memmap.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.squeeze.html#$", "dispname": "-"}, {"name": "numpy.memmap.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.std.html#$", "dispname": "-"}, {"name": "numpy.memmap.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.memmap.strides.html#$", "dispname": "-"}, {"name": "numpy.memmap.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.sum.html#$", "dispname": "-"}, {"name": "numpy.memmap.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.memmap.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.take.html#$", "dispname": "-"}, {"name": "numpy.memmap.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.to_device.html#$", "dispname": "-"}, {"name": "numpy.memmap.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.tobytes.html#$", "dispname": "-"}, {"name": "numpy.memmap.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.tofile.html#$", "dispname": "-"}, {"name": "numpy.memmap.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.tolist.html#$", "dispname": "-"}, {"name": "numpy.memmap.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.tostring.html#$", "dispname": "-"}, {"name": "numpy.memmap.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.trace.html#$", "dispname": "-"}, {"name": "numpy.memmap.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.transpose.html#$", "dispname": "-"}, {"name": "numpy.memmap.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.var.html#$", "dispname": "-"}, {"name": "numpy.memmap.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.memmap.view.html#$", "dispname": "-"}, {"name": "numpy.meshgrid", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.meshgrid.html#$", "dispname": "-"}, {"name": "numpy.mgrid", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.mgrid.html#$", "dispname": "-"}, {"name": "numpy.min", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.min.html#$", "dispname": "-"}, {"name": "numpy.min_scalar_type", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.min_scalar_type.html#$", "dispname": "-"}, {"name": "numpy.minimum", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.minimum.html#$", "dispname": "-"}, {"name": "numpy.mintypecode", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.mintypecode.html#$", "dispname": "-"}, {"name": "numpy.mod", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.mod.html#$", "dispname": "-"}, {"name": "numpy.modf", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.modf.html#$", "dispname": "-"}, {"name": "numpy.moveaxis", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.moveaxis.html#$", "dispname": "-"}, {"name": "numpy.multiply", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.multiply.html#$", "dispname": "-"}, {"name": "numpy.nan", "domain": "py", "role": "data", "priority": "1", "uri": "reference/constants.html#$", "dispname": "-"}, {"name": "numpy.nan_to_num", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nan_to_num.html#$", "dispname": "-"}, {"name": "numpy.nanargmax", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanargmax.html#$", "dispname": "-"}, {"name": "numpy.nanargmin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanargmin.html#$", "dispname": "-"}, {"name": "numpy.nancumprod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nancumprod.html#$", "dispname": "-"}, {"name": "numpy.nancumsum", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nancumsum.html#$", "dispname": "-"}, {"name": "numpy.nanmax", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanmax.html#$", "dispname": "-"}, {"name": "numpy.nanmean", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanmean.html#$", "dispname": "-"}, {"name": "numpy.nanmedian", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanmedian.html#$", "dispname": "-"}, {"name": "numpy.nanmin", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanmin.html#$", "dispname": "-"}, {"name": "numpy.nanpercentile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanpercentile.html#$", "dispname": "-"}, {"name": "numpy.nanprod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanprod.html#$", "dispname": "-"}, {"name": "numpy.nanquantile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanquantile.html#$", "dispname": "-"}, {"name": "numpy.nanstd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanstd.html#$", "dispname": "-"}, {"name": "numpy.nansum", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nansum.html#$", "dispname": "-"}, {"name": "numpy.nanvar", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nanvar.html#$", "dispname": "-"}, {"name": "numpy.ndarray", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.ndarray.html#$", "dispname": "-"}, {"name": "numpy.ndarray.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.T.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__abs__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__abs__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__add__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__add__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__and__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__and__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__array__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__array__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__array_wrap__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__array_wrap__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__bool__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__bool__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__class_getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__class_getitem__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__complex__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__complex__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__contains__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__contains__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__copy__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__copy__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__deepcopy__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__deepcopy__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__divmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__divmod__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__eq__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__eq__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__float__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__float__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__floordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__floordiv__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ge__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ge__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__getitem__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__gt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__gt__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__iadd__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__iadd__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__iand__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__iand__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ifloordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ifloordiv__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ilshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ilshift__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__imod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__imod__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__imul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__imul__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__int__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__int__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__invert__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__invert__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ior__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ior__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ipow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ipow__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__irshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__irshift__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__isub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__isub__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__itruediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__itruediv__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ixor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ixor__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__le__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__le__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__len__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__len__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__lshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__lshift__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__lt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__lt__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__matmul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__matmul__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__mod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__mod__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__mul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__mul__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__ne__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__ne__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__neg__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__neg__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__new__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__new__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__or__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__or__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__pos__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__pos__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__pow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__pow__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__reduce__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__reduce__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__repr__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__repr__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__rshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__rshift__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__setitem__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__setstate__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__setstate__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__str__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__sub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__sub__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__truediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__truediv__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.__xor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.__xor__.html#$", "dispname": "-"}, {"name": "numpy.ndarray.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.all.html#$", "dispname": "-"}, {"name": "numpy.ndarray.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.any.html#$", "dispname": "-"}, {"name": "numpy.ndarray.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.argmax.html#$", "dispname": "-"}, {"name": "numpy.ndarray.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.argmin.html#$", "dispname": "-"}, {"name": "numpy.ndarray.argpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.argpartition.html#$", "dispname": "-"}, {"name": "numpy.ndarray.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.argsort.html#$", "dispname": "-"}, {"name": "numpy.ndarray.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.astype.html#$", "dispname": "-"}, {"name": "numpy.ndarray.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.base.html#$", "dispname": "-"}, {"name": "numpy.ndarray.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.byteswap.html#$", "dispname": "-"}, {"name": "numpy.ndarray.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.choose.html#$", "dispname": "-"}, {"name": "numpy.ndarray.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.clip.html#$", "dispname": "-"}, {"name": "numpy.ndarray.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.compress.html#$", "dispname": "-"}, {"name": "numpy.ndarray.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.conj.html#$", "dispname": "-"}, {"name": "numpy.ndarray.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.conjugate.html#$", "dispname": "-"}, {"name": "numpy.ndarray.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.copy.html#$", "dispname": "-"}, {"name": "numpy.ndarray.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.ctypes.html#$", "dispname": "-"}, {"name": "numpy.ndarray.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.cumprod.html#$", "dispname": "-"}, {"name": "numpy.ndarray.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.cumsum.html#$", "dispname": "-"}, {"name": "numpy.ndarray.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.data.html#$", "dispname": "-"}, {"name": "numpy.ndarray.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.device.html#$", "dispname": "-"}, {"name": "numpy.ndarray.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.diagonal.html#$", "dispname": "-"}, {"name": "numpy.ndarray.dot", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.dot.html#$", "dispname": "-"}, {"name": "numpy.ndarray.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.dtype.html#$", "dispname": "-"}, {"name": "numpy.ndarray.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.dump.html#$", "dispname": "-"}, {"name": "numpy.ndarray.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.dumps.html#$", "dispname": "-"}, {"name": "numpy.ndarray.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.fill.html#$", "dispname": "-"}, {"name": "numpy.ndarray.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.flags.html#$", "dispname": "-"}, {"name": "numpy.ndarray.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.flat.html#$", "dispname": "-"}, {"name": "numpy.ndarray.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.flatten.html#$", "dispname": "-"}, {"name": "numpy.ndarray.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.getfield.html#$", "dispname": "-"}, {"name": "numpy.ndarray.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.imag.html#$", "dispname": "-"}, {"name": "numpy.ndarray.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.item.html#$", "dispname": "-"}, {"name": "numpy.ndarray.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.itemset.html#$", "dispname": "-"}, {"name": "numpy.ndarray.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.itemsize.html#$", "dispname": "-"}, {"name": "numpy.ndarray.mT", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.mT.html#$", "dispname": "-"}, {"name": "numpy.ndarray.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.max.html#$", "dispname": "-"}, {"name": "numpy.ndarray.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.mean.html#$", "dispname": "-"}, {"name": "numpy.ndarray.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.min.html#$", "dispname": "-"}, {"name": "numpy.ndarray.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.nbytes.html#$", "dispname": "-"}, {"name": "numpy.ndarray.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.ndim.html#$", "dispname": "-"}, {"name": "numpy.ndarray.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.ndarray.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.nonzero.html#$", "dispname": "-"}, {"name": "numpy.ndarray.partition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.partition.html#$", "dispname": "-"}, {"name": "numpy.ndarray.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.prod.html#$", "dispname": "-"}, {"name": "numpy.ndarray.ptp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.ptp.html#$", "dispname": "-"}, {"name": "numpy.ndarray.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.put.html#$", "dispname": "-"}, {"name": "numpy.ndarray.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.ravel.html#$", "dispname": "-"}, {"name": "numpy.ndarray.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.real.html#$", "dispname": "-"}, {"name": "numpy.ndarray.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.repeat.html#$", "dispname": "-"}, {"name": "numpy.ndarray.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.reshape.html#$", "dispname": "-"}, {"name": "numpy.ndarray.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.resize.html#$", "dispname": "-"}, {"name": "numpy.ndarray.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.round.html#$", "dispname": "-"}, {"name": "numpy.ndarray.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.ndarray.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.setfield.html#$", "dispname": "-"}, {"name": "numpy.ndarray.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.setflags.html#$", "dispname": "-"}, {"name": "numpy.ndarray.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.shape.html#$", "dispname": "-"}, {"name": "numpy.ndarray.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.size.html#$", "dispname": "-"}, {"name": "numpy.ndarray.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.sort.html#$", "dispname": "-"}, {"name": "numpy.ndarray.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.squeeze.html#$", "dispname": "-"}, {"name": "numpy.ndarray.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.std.html#$", "dispname": "-"}, {"name": "numpy.ndarray.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ndarray.strides.html#$", "dispname": "-"}, {"name": "numpy.ndarray.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.sum.html#$", "dispname": "-"}, {"name": "numpy.ndarray.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.ndarray.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.take.html#$", "dispname": "-"}, {"name": "numpy.ndarray.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.to_device.html#$", "dispname": "-"}, {"name": "numpy.ndarray.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.tobytes.html#$", "dispname": "-"}, {"name": "numpy.ndarray.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.tofile.html#$", "dispname": "-"}, {"name": "numpy.ndarray.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.tolist.html#$", "dispname": "-"}, {"name": "numpy.ndarray.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.tostring.html#$", "dispname": "-"}, {"name": "numpy.ndarray.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.trace.html#$", "dispname": "-"}, {"name": "numpy.ndarray.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.transpose.html#$", "dispname": "-"}, {"name": "numpy.ndarray.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.var.html#$", "dispname": "-"}, {"name": "numpy.ndarray.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndarray.view.html#$", "dispname": "-"}, {"name": "numpy.ndenumerate", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.ndenumerate.html#$", "dispname": "-"}, {"name": "numpy.ndim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ndim.html#$", "dispname": "-"}, {"name": "numpy.ndindex", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.ndindex.html#$", "dispname": "-"}, {"name": "numpy.ndindex.ndincr", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ndindex.ndincr.html#$", "dispname": "-"}, {"name": "numpy.nditer", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.nditer.html#$", "dispname": "-"}, {"name": "numpy.nditer.close", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.close.html#$", "dispname": "-"}, {"name": "numpy.nditer.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.copy.html#$", "dispname": "-"}, {"name": "numpy.nditer.debug_print", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.debug_print.html#$", "dispname": "-"}, {"name": "numpy.nditer.dtypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.dtypes.html#$", "dispname": "-"}, {"name": "numpy.nditer.enable_external_loop", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.enable_external_loop.html#$", "dispname": "-"}, {"name": "numpy.nditer.finished", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.finished.html#$", "dispname": "-"}, {"name": "numpy.nditer.has_delayed_bufalloc", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.has_delayed_bufalloc.html#$", "dispname": "-"}, {"name": "numpy.nditer.has_index", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.has_index.html#$", "dispname": "-"}, {"name": "numpy.nditer.has_multi_index", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.has_multi_index.html#$", "dispname": "-"}, {"name": "numpy.nditer.index", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.index.html#$", "dispname": "-"}, {"name": "numpy.nditer.iterationneedsapi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.iterationneedsapi.html#$", "dispname": "-"}, {"name": "numpy.nditer.iterindex", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.iterindex.html#$", "dispname": "-"}, {"name": "numpy.nditer.iternext", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.iternext.html#$", "dispname": "-"}, {"name": "numpy.nditer.iterrange", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.iterrange.html#$", "dispname": "-"}, {"name": "numpy.nditer.itersize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.itersize.html#$", "dispname": "-"}, {"name": "numpy.nditer.itviews", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.itviews.html#$", "dispname": "-"}, {"name": "numpy.nditer.multi_index", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.multi_index.html#$", "dispname": "-"}, {"name": "numpy.nditer.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.ndim.html#$", "dispname": "-"}, {"name": "numpy.nditer.nop", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.nop.html#$", "dispname": "-"}, {"name": "numpy.nditer.operands", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.operands.html#$", "dispname": "-"}, {"name": "numpy.nditer.remove_axis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.remove_axis.html#$", "dispname": "-"}, {"name": "numpy.nditer.remove_multi_index", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.remove_multi_index.html#$", "dispname": "-"}, {"name": "numpy.nditer.reset", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.nditer.reset.html#$", "dispname": "-"}, {"name": "numpy.nditer.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.shape.html#$", "dispname": "-"}, {"name": "numpy.nditer.value", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.nditer.value.html#$", "dispname": "-"}, {"name": "numpy.negative", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.negative.html#$", "dispname": "-"}, {"name": "numpy.nested_iters", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nested_iters.html#$", "dispname": "-"}, {"name": "numpy.newaxis", "domain": "py", "role": "data", "priority": "1", "uri": "reference/constants.html#$", "dispname": "-"}, {"name": "numpy.nextafter", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.nextafter.html#$", "dispname": "-"}, {"name": "numpy.nonzero", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.nonzero.html#$", "dispname": "-"}, {"name": "numpy.not_equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.not_equal.html#$", "dispname": "-"}, {"name": "numpy.number", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.number.__class_getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.number.__class_getitem__.html#$", "dispname": "-"}, {"name": "numpy.object_", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ogrid", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.ogrid.html#$", "dispname": "-"}, {"name": "numpy.ones", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ones.html#$", "dispname": "-"}, {"name": "numpy.ones_like", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ones_like.html#$", "dispname": "-"}, {"name": "numpy.outer", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.outer.html#$", "dispname": "-"}, {"name": "numpy.packbits", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.packbits.html#$", "dispname": "-"}, {"name": "numpy.pad", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.pad.html#$", "dispname": "-"}, {"name": "numpy.partition", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.partition.html#$", "dispname": "-"}, {"name": "numpy.percentile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.percentile.html#$", "dispname": "-"}, {"name": "numpy.permute_dims", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.permute_dims.html#$", "dispname": "-"}, {"name": "numpy.pi", "domain": "py", "role": "data", "priority": "1", "uri": "reference/constants.html#$", "dispname": "-"}, {"name": "numpy.piecewise", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.piecewise.html#$", "dispname": "-"}, {"name": "numpy.place", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.place.html#$", "dispname": "-"}, {"name": "numpy.poly", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.poly.html#$", "dispname": "-"}, {"name": "numpy.poly1d", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.poly1d.html#$", "dispname": "-"}, {"name": "numpy.poly1d.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.poly1d.__call__.html#$", "dispname": "-"}, {"name": "numpy.poly1d.c", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.c.html#$", "dispname": "-"}, {"name": "numpy.poly1d.coef", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.coef.html#$", "dispname": "-"}, {"name": "numpy.poly1d.coefficients", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.coefficients.html#$", "dispname": "-"}, {"name": "numpy.poly1d.coeffs", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.coeffs.html#$", "dispname": "-"}, {"name": "numpy.poly1d.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.poly1d.deriv.html#$", "dispname": "-"}, {"name": "numpy.poly1d.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.poly1d.integ.html#$", "dispname": "-"}, {"name": "numpy.poly1d.o", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.o.html#$", "dispname": "-"}, {"name": "numpy.poly1d.order", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.order.html#$", "dispname": "-"}, {"name": "numpy.poly1d.r", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.r.html#$", "dispname": "-"}, {"name": "numpy.poly1d.roots", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.roots.html#$", "dispname": "-"}, {"name": "numpy.poly1d.variable", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.poly1d.variable.html#$", "dispname": "-"}, {"name": "numpy.polyadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polyadd.html#$", "dispname": "-"}, {"name": "numpy.polyder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polyder.html#$", "dispname": "-"}, {"name": "numpy.polydiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polydiv.html#$", "dispname": "-"}, {"name": "numpy.polyfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polyfit.html#$", "dispname": "-"}, {"name": "numpy.polyint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polyint.html#$", "dispname": "-"}, {"name": "numpy.polymul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polymul.html#$", "dispname": "-"}, {"name": "numpy.polynomial", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials-package.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.chebyshev.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.__call__.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.basis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.basis.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.basis_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.basis_name.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.cast", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.cast.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.convert", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.convert.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.copy.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.cutdeg", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.cutdeg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.degree", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.degree.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.deriv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.domain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.fit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.fit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.fromroots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.fromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.has_samecoef", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samecoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.has_samedomain", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.has_sametype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_sametype.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.has_samewindow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samewindow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.identity", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.identity.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.integ.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.interpolate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.interpolate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.linspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.linspace.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.mapparms", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.maxpower", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.maxpower.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.roots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.roots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.symbol", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.symbol.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.trim", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.trim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.truncate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.Chebyshev.window", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.window.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.cheb2poly", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.cheb2poly.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebadd.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebcompanion", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebcompanion.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebder.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebdiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebdiv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebdomain", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebdomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebfit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebfromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebfromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebgauss", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebgauss.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebgrid2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebgrid2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebgrid3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebgrid3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebint.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebinterpolate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebinterpolate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebline", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebline.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebmul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebmul.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebmulx", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebmulx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebone", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebone.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebpow", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebpow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebpts1", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebpts1.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebpts2", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebpts2.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebsub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebsub.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebtrim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebtrim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebval.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebval2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebval2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebval3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebval3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebvander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebvander.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebvander2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebvander2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebvander3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebvander3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebweight", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebweight.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebx", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.chebzero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebzero.html#$", "dispname": "-"}, {"name": "numpy.polynomial.chebyshev.poly2cheb", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.chebyshev.poly2cheb.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.hermite.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.__call__.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.basis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.basis.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.basis_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.basis_name.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.cast", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.cast.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.convert", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.convert.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.copy.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.cutdeg", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.cutdeg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.degree", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.degree.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.deriv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.domain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.fit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.fit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.fromroots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.fromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.has_samecoef", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_samecoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.has_samedomain", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_samedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.has_sametype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_sametype.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.has_samewindow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_samewindow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.identity", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.identity.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.integ.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.linspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.linspace.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.mapparms", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.maxpower", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.maxpower.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.roots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.roots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.symbol", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.symbol.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.trim", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.trim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.truncate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.Hermite.window", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.window.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.herm2poly", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.herm2poly.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermadd.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermcompanion", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermcompanion.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermder.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermdiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermdiv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermdomain", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermdomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermfit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermfromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermfromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermgauss", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermgauss.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermgrid2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermgrid2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermgrid3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermgrid3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermint.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermline", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermline.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermmul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermmul.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermmulx", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermmulx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermone", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermone.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermpow", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermpow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermsub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermsub.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermtrim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermtrim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermval.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermval2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermval2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermval3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermval3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermvander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermvander.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermvander2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermvander2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermvander3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermvander3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermweight", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermweight.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermx", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.hermzero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.hermzero.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite.poly2herm", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite.poly2herm.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.hermite_e.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.__call__.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.basis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.basis.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.basis_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.basis_name.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.cast", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.cast.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.convert", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.convert.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.copy.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.cutdeg", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.cutdeg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.degree", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.degree.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.deriv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.domain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.fit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.fit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.fromroots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.fromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.has_samecoef", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samecoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.has_samedomain", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.has_sametype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_sametype.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.has_samewindow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samewindow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.identity", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.identity.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.integ.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.linspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.linspace.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.mapparms", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.maxpower", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.maxpower.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.roots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.roots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.symbol", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.symbol.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.trim", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.trim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.truncate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.HermiteE.window", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.window.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.herme2poly", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.herme2poly.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeadd.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermecompanion", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermecompanion.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeder.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermediv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermediv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermedomain", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermefit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermefit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermefromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermefromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermegauss", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermegauss.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermegrid2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermegrid2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermegrid3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermegrid3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeint.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeline", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeline.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermemul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermemul.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermemulx", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermemulx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeone", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeone.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermepow", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermepow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermesub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermesub.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermetrim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermetrim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeval.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeval2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeval2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeval3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeval3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermevander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermevander.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermevander2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermevander2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermevander3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermevander3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermeweight", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeweight.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermex", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermex.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.hermezero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermezero.html#$", "dispname": "-"}, {"name": "numpy.polynomial.hermite_e.poly2herme", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.hermite_e.poly2herme.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.laguerre.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.__call__.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.basis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.basis.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.basis_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.basis_name.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.cast", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.cast.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.convert", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.convert.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.copy.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.cutdeg", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.cutdeg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.degree", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.degree.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.deriv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.domain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.fit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.fit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.fromroots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.fromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.has_samecoef", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samecoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.has_samedomain", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.has_sametype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_sametype.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.has_samewindow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samewindow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.identity", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.identity.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.integ.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.linspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.linspace.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.mapparms", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.maxpower", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.maxpower.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.roots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.roots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.symbol", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.symbol.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.trim", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.trim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.truncate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.Laguerre.window", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.window.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lag2poly", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lag2poly.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagadd.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagcompanion", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagcompanion.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagder.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagdiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagdiv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagdomain", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagdomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagfit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagfromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagfromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.laggauss", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.laggauss.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.laggrid2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.laggrid2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.laggrid3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.laggrid3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagint.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagline", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagline.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagmul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagmul.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagmulx", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagmulx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagone", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagone.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagpow", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagpow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagsub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagsub.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagtrim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagtrim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagval.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagval2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagval2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagval3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagval3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagvander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagvander.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagvander2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagvander2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagvander3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagvander3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagweight", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagweight.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagx", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.lagzero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.lagzero.html#$", "dispname": "-"}, {"name": "numpy.polynomial.laguerre.poly2lag", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.laguerre.poly2lag.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.legendre.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.__call__.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.basis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.basis.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.basis_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.basis_name.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.cast", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.cast.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.convert", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.convert.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.copy.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.cutdeg", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.cutdeg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.degree", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.degree.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.deriv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.domain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.fit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.fit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.fromroots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.fromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.has_samecoef", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_samecoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.has_samedomain", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_samedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.has_sametype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_sametype.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.has_samewindow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_samewindow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.identity", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.identity.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.integ.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.linspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.linspace.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.mapparms", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.maxpower", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.maxpower.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.roots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.roots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.symbol", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.symbol.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.trim", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.trim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.truncate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.Legendre.window", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.window.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.leg2poly", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.leg2poly.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legadd.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legcompanion", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legcompanion.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legder.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legdiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legdiv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legdomain", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legdomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legfit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legfromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legfromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.leggauss", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.leggauss.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.leggrid2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.leggrid2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.leggrid3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.leggrid3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legint.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legline", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legline.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legmul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legmul.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legmulx", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legmulx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legone", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legone.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legpow", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legpow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legsub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legsub.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legtrim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legtrim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legval.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legval2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legval2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legval3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legval3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legvander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legvander.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legvander2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legvander2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legvander3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legvander3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legweight", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legweight.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legx", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.legzero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.legzero.html#$", "dispname": "-"}, {"name": "numpy.polynomial.legendre.poly2leg", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.legendre.poly2leg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.polynomial.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.__call__.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.basis", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.basis.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.basis_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.basis_name.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.cast", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.cast.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.convert", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.convert.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.copy.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.cutdeg", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.cutdeg.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.degree", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.degree.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.deriv", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.deriv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.domain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.fit", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.fit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.fromroots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.fromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.has_samecoef", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samecoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.has_samedomain", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samedomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.has_sametype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_sametype.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.has_samewindow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samewindow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.identity", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.identity.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.integ", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.integ.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.linspace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.linspace.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.mapparms", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.maxpower", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.maxpower.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.roots", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.roots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.symbol", "domain": "py", "role": "property", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.symbol.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.trim", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.trim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.truncate.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.Polynomial.window", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.window.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyadd", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyadd.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polycompanion", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polycompanion.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyder", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyder.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polydiv", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polydiv.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polydomain", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polydomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyfit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyfit.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyfromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyfromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polygrid2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polygrid2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polygrid3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polygrid3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyint.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyline", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyline.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polymul", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polymul.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polymulx", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polymulx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyone", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyone.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polypow", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polypow.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polysub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polysub.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polytrim", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polytrim.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyval.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyval2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyval2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyval3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyval3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyvalfromroots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvalfromroots.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyvander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvander.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyvander2d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvander2d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyvander3d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvander3d.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyx", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyx.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polynomial.polyzero", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.polynomial.polynomial.polyzero.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.polynomials.polyutils.html#module-$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils.as_series", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polyutils.as_series.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils.getdomain", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polyutils.getdomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils.mapdomain", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polyutils.mapdomain.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils.mapparms", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polyutils.mapparms.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils.trimcoef", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polyutils.trimcoef.html#$", "dispname": "-"}, {"name": "numpy.polynomial.polyutils.trimseq", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.polyutils.trimseq.html#$", "dispname": "-"}, {"name": "numpy.polynomial.set_default_printstyle", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polynomial.set_default_printstyle.html#$", "dispname": "-"}, {"name": "numpy.polysub", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polysub.html#$", "dispname": "-"}, {"name": "numpy.polyval", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.polyval.html#$", "dispname": "-"}, {"name": "numpy.positive", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.positive.html#$", "dispname": "-"}, {"name": "numpy.pow", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.pow.html#$", "dispname": "-"}, {"name": "numpy.power", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.power.html#$", "dispname": "-"}, {"name": "numpy.printoptions", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.printoptions.html#$", "dispname": "-"}, {"name": "numpy.prod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.prod.html#$", "dispname": "-"}, {"name": "numpy.promote_types", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.promote_types.html#$", "dispname": "-"}, {"name": "numpy.ptp", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ptp.html#$", "dispname": "-"}, {"name": "numpy.put", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.put.html#$", "dispname": "-"}, {"name": "numpy.put_along_axis", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.put_along_axis.html#$", "dispname": "-"}, {"name": "numpy.putmask", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.putmask.html#$", "dispname": "-"}, {"name": "numpy.quantile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.quantile.html#$", "dispname": "-"}, {"name": "numpy.r_", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.r_.html#$", "dispname": "-"}, {"name": "numpy.rad2deg", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.rad2deg.html#$", "dispname": "-"}, {"name": "numpy.radians", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.radians.html#$", "dispname": "-"}, {"name": "numpy.random", "domain": "py", "role": "module", "priority": "0", "uri": "reference/random/index.html#module-$", "dispname": "-"}, {"name": "numpy.random.BitGenerator", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.capsule", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.capsule.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.cffi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.cffi.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.ctypes.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.lock", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.lock.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.random_raw", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.random_raw.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.seed_seq", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.seed_seq.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.spawn", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.spawn.html#$", "dispname": "-"}, {"name": "numpy.random.BitGenerator.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.state.html#$", "dispname": "-"}, {"name": "numpy.random.Generator", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/generator.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.beta", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.beta.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.binomial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.bit_generator", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.bit_generator.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.bytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.bytes.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.chisquare", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.chisquare.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.choice", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.choice.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.dirichlet", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.dirichlet.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.exponential", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.exponential.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.f", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.f.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.gamma", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.gamma.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.geometric", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.geometric.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.gumbel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.gumbel.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.hypergeometric", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.hypergeometric.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.integers", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.integers.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.laplace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.laplace.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.logistic", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.logistic.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.lognormal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.lognormal.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.logseries", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.logseries.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.multinomial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.multinomial.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.multivariate_hypergeometric", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.multivariate_hypergeometric.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.multivariate_normal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.multivariate_normal.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.negative_binomial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.negative_binomial.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.noncentral_chisquare", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_chisquare.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.noncentral_f", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_f.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.normal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.normal.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.pareto", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.pareto.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.permutation", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.permutation.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.permuted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.permuted.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.poisson", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.poisson.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.power", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.power.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.random", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.random.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.rayleigh", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.rayleigh.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.shuffle", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.shuffle.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.spawn", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.spawn.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.standard_cauchy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.standard_cauchy.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.standard_exponential", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.standard_exponential.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.standard_gamma", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.standard_gamma.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.standard_normal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.standard_normal.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.standard_t", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.standard_t.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.triangular", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.triangular.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.uniform", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.uniform.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.vonmises", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.vonmises.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.wald", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.wald.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.weibull", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.weibull.html#$", "dispname": "-"}, {"name": "numpy.random.Generator.zipf", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.Generator.zipf.html#$", "dispname": "-"}, {"name": "numpy.random.MT19937", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/mt19937.html#$", "dispname": "-"}, {"name": "numpy.random.MT19937.cffi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.cffi.html#$", "dispname": "-"}, {"name": "numpy.random.MT19937.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.ctypes.html#$", "dispname": "-"}, {"name": "numpy.random.MT19937.jumped", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.jumped.html#$", "dispname": "-"}, {"name": "numpy.random.MT19937.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.state.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/pcg64.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64.advance", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.advance.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64.cffi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.cffi.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.ctypes.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64.jumped", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.jumped.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.state.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64DXSM", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/pcg64dxsm.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64DXSM.advance", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.advance.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64DXSM.cffi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.cffi.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64DXSM.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.ctypes.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64DXSM.jumped", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.jumped.html#$", "dispname": "-"}, {"name": "numpy.random.PCG64DXSM.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.state.html#$", "dispname": "-"}, {"name": "numpy.random.Philox", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/philox.html#$", "dispname": "-"}, {"name": "numpy.random.Philox.advance", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.advance.html#$", "dispname": "-"}, {"name": "numpy.random.Philox.cffi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.cffi.html#$", "dispname": "-"}, {"name": "numpy.random.Philox.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.ctypes.html#$", "dispname": "-"}, {"name": "numpy.random.Philox.jumped", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.jumped.html#$", "dispname": "-"}, {"name": "numpy.random.Philox.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.state.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/legacy.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.beta", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.beta.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.binomial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.bytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.bytes.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.chisquare", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.chisquare.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.choice", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.choice.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.dirichlet", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.dirichlet.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.exponential", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.exponential.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.f", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.f.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.gamma", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.gamma.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.geometric", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.geometric.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.get_state", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.get_state.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.gumbel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.gumbel.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.hypergeometric", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.hypergeometric.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.laplace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.laplace.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.logistic", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.logistic.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.lognormal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.lognormal.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.logseries", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.logseries.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.multinomial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.multinomial.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.multivariate_normal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.multivariate_normal.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.negative_binomial", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.negative_binomial.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.noncentral_chisquare", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_chisquare.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.noncentral_f", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_f.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.normal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.normal.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.pareto", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.pareto.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.permutation", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.permutation.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.poisson", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.poisson.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.power", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.power.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.rand", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.rand.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.randint", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.randint.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.randn", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.randn.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.random_integers", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.random_integers.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.random_sample", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.random_sample.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.rayleigh", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.rayleigh.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.seed", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.seed.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.set_state", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.set_state.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.shuffle", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.shuffle.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.standard_cauchy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.standard_cauchy.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.standard_exponential", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.standard_exponential.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.standard_gamma", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.standard_gamma.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.standard_normal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.standard_normal.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.standard_t", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.standard_t.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.triangular", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.triangular.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.uniform", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.uniform.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.vonmises", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.vonmises.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.wald", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.wald.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.weibull", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.weibull.html#$", "dispname": "-"}, {"name": "numpy.random.RandomState.zipf", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/generated/numpy.random.RandomState.zipf.html#$", "dispname": "-"}, {"name": "numpy.random.SFC64", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/sfc64.html#$", "dispname": "-"}, {"name": "numpy.random.SFC64.cffi", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SFC64.cffi.html#$", "dispname": "-"}, {"name": "numpy.random.SFC64.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SFC64.ctypes.html#$", "dispname": "-"}, {"name": "numpy.random.SFC64.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SFC64.state.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence", "domain": "py", "role": "class", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.entropy", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.entropy.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.generate_state", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.generate_state.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.n_children_spawned", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.n_children_spawned.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.pool", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.pool.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.pool_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.pool_size.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.spawn", "domain": "py", "role": "method", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.spawn.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.spawn_key", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.spawn_key.html#$", "dispname": "-"}, {"name": "numpy.random.SeedSequence.state", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.state.html#$", "dispname": "-"}, {"name": "numpy.random._generator.Generator", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/generator.html#numpy.random.Generator", "dispname": "-"}, {"name": "numpy.random._mt19937.MT19937", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/mt19937.html#numpy.random.MT19937", "dispname": "-"}, {"name": "numpy.random._pcg64.PCG64", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/pcg64.html#numpy.random.PCG64", "dispname": "-"}, {"name": "numpy.random._pcg64.PCG64DXSM", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/pcg64dxsm.html#numpy.random.PCG64DXSM", "dispname": "-"}, {"name": "numpy.random._philox.Philox", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/philox.html#numpy.random.Philox", "dispname": "-"}, {"name": "numpy.random._sfc64.SFC64", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/sfc64.html#numpy.random.SFC64", "dispname": "-"}, {"name": "numpy.random.beta", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.beta.html#$", "dispname": "-"}, {"name": "numpy.random.binomial", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.binomial.html#$", "dispname": "-"}, {"name": "numpy.random.bit_generator.BitGenerator", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.html#numpy.random.BitGenerator", "dispname": "-"}, {"name": "numpy.random.bit_generator.SeedSequence", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.html#numpy.random.SeedSequence", "dispname": "-"}, {"name": "numpy.random.bytes", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.bytes.html#$", "dispname": "-"}, {"name": "numpy.random.chisquare", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.chisquare.html#$", "dispname": "-"}, {"name": "numpy.random.choice", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.choice.html#$", "dispname": "-"}, {"name": "numpy.random.default_rng", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generator.html#$", "dispname": "-"}, {"name": "numpy.random.dirichlet", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.dirichlet.html#$", "dispname": "-"}, {"name": "numpy.random.exponential", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.exponential.html#$", "dispname": "-"}, {"name": "numpy.random.f", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.f.html#$", "dispname": "-"}, {"name": "numpy.random.gamma", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.gamma.html#$", "dispname": "-"}, {"name": "numpy.random.geometric", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.geometric.html#$", "dispname": "-"}, {"name": "numpy.random.get_state", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.get_state.html#$", "dispname": "-"}, {"name": "numpy.random.gumbel", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.gumbel.html#$", "dispname": "-"}, {"name": "numpy.random.hypergeometric", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.hypergeometric.html#$", "dispname": "-"}, {"name": "numpy.random.laplace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.laplace.html#$", "dispname": "-"}, {"name": "numpy.random.logistic", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.logistic.html#$", "dispname": "-"}, {"name": "numpy.random.lognormal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.lognormal.html#$", "dispname": "-"}, {"name": "numpy.random.logseries", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.logseries.html#$", "dispname": "-"}, {"name": "numpy.random.mtrand.RandomState", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/random/legacy.html#numpy.random.RandomState", "dispname": "-"}, {"name": "numpy.random.multinomial", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.multinomial.html#$", "dispname": "-"}, {"name": "numpy.random.multivariate_normal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.multivariate_normal.html#$", "dispname": "-"}, {"name": "numpy.random.negative_binomial", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.negative_binomial.html#$", "dispname": "-"}, {"name": "numpy.random.noncentral_chisquare", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.noncentral_chisquare.html#$", "dispname": "-"}, {"name": "numpy.random.noncentral_f", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.noncentral_f.html#$", "dispname": "-"}, {"name": "numpy.random.normal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.normal.html#$", "dispname": "-"}, {"name": "numpy.random.pareto", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.pareto.html#$", "dispname": "-"}, {"name": "numpy.random.permutation", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.permutation.html#$", "dispname": "-"}, {"name": "numpy.random.poisson", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.poisson.html#$", "dispname": "-"}, {"name": "numpy.random.power", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.power.html#$", "dispname": "-"}, {"name": "numpy.random.rand", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.rand.html#$", "dispname": "-"}, {"name": "numpy.random.randint", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.randint.html#$", "dispname": "-"}, {"name": "numpy.random.randn", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.randn.html#$", "dispname": "-"}, {"name": "numpy.random.random", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.random.html#$", "dispname": "-"}, {"name": "numpy.random.random_integers", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.random_integers.html#$", "dispname": "-"}, {"name": "numpy.random.random_sample", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.random_sample.html#$", "dispname": "-"}, {"name": "numpy.random.ranf", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.ranf.html#$", "dispname": "-"}, {"name": "numpy.random.rayleigh", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.rayleigh.html#$", "dispname": "-"}, {"name": "numpy.random.sample", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.sample.html#$", "dispname": "-"}, {"name": "numpy.random.seed", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.seed.html#$", "dispname": "-"}, {"name": "numpy.random.set_state", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.set_state.html#$", "dispname": "-"}, {"name": "numpy.random.shuffle", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.shuffle.html#$", "dispname": "-"}, {"name": "numpy.random.standard_cauchy", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.standard_cauchy.html#$", "dispname": "-"}, {"name": "numpy.random.standard_exponential", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.standard_exponential.html#$", "dispname": "-"}, {"name": "numpy.random.standard_gamma", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.standard_gamma.html#$", "dispname": "-"}, {"name": "numpy.random.standard_normal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.standard_normal.html#$", "dispname": "-"}, {"name": "numpy.random.standard_t", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.standard_t.html#$", "dispname": "-"}, {"name": "numpy.random.triangular", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.triangular.html#$", "dispname": "-"}, {"name": "numpy.random.uniform", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.uniform.html#$", "dispname": "-"}, {"name": "numpy.random.vonmises", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.vonmises.html#$", "dispname": "-"}, {"name": "numpy.random.wald", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.wald.html#$", "dispname": "-"}, {"name": "numpy.random.weibull", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.weibull.html#$", "dispname": "-"}, {"name": "numpy.random.zipf", "domain": "py", "role": "function", "priority": "1", "uri": "reference/random/generated/numpy.random.zipf.html#$", "dispname": "-"}, {"name": "numpy.ravel", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ravel.html#$", "dispname": "-"}, {"name": "numpy.ravel_multi_index", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.ravel_multi_index.html#$", "dispname": "-"}, {"name": "numpy.real", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.real.html#$", "dispname": "-"}, {"name": "numpy.real_if_close", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.real_if_close.html#$", "dispname": "-"}, {"name": "numpy.rec", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.rec.html#module-$", "dispname": "-"}, {"name": "numpy.rec.array", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rec.array.html#$", "dispname": "-"}, {"name": "numpy.rec.find_duplicate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rec.find_duplicate.html#$", "dispname": "-"}, {"name": "numpy.rec.format_parser", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.rec.format_parser.html#$", "dispname": "-"}, {"name": "numpy.rec.fromarrays", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rec.fromarrays.html#$", "dispname": "-"}, {"name": "numpy.rec.fromfile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rec.fromfile.html#$", "dispname": "-"}, {"name": "numpy.rec.fromrecords", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rec.fromrecords.html#$", "dispname": "-"}, {"name": "numpy.rec.fromstring", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rec.fromstring.html#$", "dispname": "-"}, {"name": "numpy.rec.recarray", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.recarray.html#numpy.recarray", "dispname": "-"}, {"name": "numpy.recarray", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.recarray.html#$", "dispname": "-"}, {"name": "numpy.recarray.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.T.html#$", "dispname": "-"}, {"name": "numpy.recarray.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.all.html#$", "dispname": "-"}, {"name": "numpy.recarray.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.any.html#$", "dispname": "-"}, {"name": "numpy.recarray.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.argmax.html#$", "dispname": "-"}, {"name": "numpy.recarray.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.argmin.html#$", "dispname": "-"}, {"name": "numpy.recarray.argpartition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.argpartition.html#$", "dispname": "-"}, {"name": "numpy.recarray.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.argsort.html#$", "dispname": "-"}, {"name": "numpy.recarray.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.astype.html#$", "dispname": "-"}, {"name": "numpy.recarray.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.base.html#$", "dispname": "-"}, {"name": "numpy.recarray.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.byteswap.html#$", "dispname": "-"}, {"name": "numpy.recarray.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.choose.html#$", "dispname": "-"}, {"name": "numpy.recarray.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.clip.html#$", "dispname": "-"}, {"name": "numpy.recarray.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.compress.html#$", "dispname": "-"}, {"name": "numpy.recarray.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.conj.html#$", "dispname": "-"}, {"name": "numpy.recarray.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.conjugate.html#$", "dispname": "-"}, {"name": "numpy.recarray.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.copy.html#$", "dispname": "-"}, {"name": "numpy.recarray.ctypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.ctypes.html#$", "dispname": "-"}, {"name": "numpy.recarray.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.cumprod.html#$", "dispname": "-"}, {"name": "numpy.recarray.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.cumsum.html#$", "dispname": "-"}, {"name": "numpy.recarray.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.data.html#$", "dispname": "-"}, {"name": "numpy.recarray.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.device.html#$", "dispname": "-"}, {"name": "numpy.recarray.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.diagonal.html#$", "dispname": "-"}, {"name": "numpy.recarray.dot", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.dot.html#$", "dispname": "-"}, {"name": "numpy.recarray.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.dtype.html#$", "dispname": "-"}, {"name": "numpy.recarray.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.dump.html#$", "dispname": "-"}, {"name": "numpy.recarray.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.dumps.html#$", "dispname": "-"}, {"name": "numpy.recarray.field", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.field.html#$", "dispname": "-"}, {"name": "numpy.recarray.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.fill.html#$", "dispname": "-"}, {"name": "numpy.recarray.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.flags.html#$", "dispname": "-"}, {"name": "numpy.recarray.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.flat.html#$", "dispname": "-"}, {"name": "numpy.recarray.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.flatten.html#$", "dispname": "-"}, {"name": "numpy.recarray.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.getfield.html#$", "dispname": "-"}, {"name": "numpy.recarray.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.imag.html#$", "dispname": "-"}, {"name": "numpy.recarray.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.item.html#$", "dispname": "-"}, {"name": "numpy.recarray.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.itemset.html#$", "dispname": "-"}, {"name": "numpy.recarray.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.itemsize.html#$", "dispname": "-"}, {"name": "numpy.recarray.mT", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.mT.html#$", "dispname": "-"}, {"name": "numpy.recarray.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.max.html#$", "dispname": "-"}, {"name": "numpy.recarray.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.mean.html#$", "dispname": "-"}, {"name": "numpy.recarray.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.min.html#$", "dispname": "-"}, {"name": "numpy.recarray.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.nbytes.html#$", "dispname": "-"}, {"name": "numpy.recarray.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.ndim.html#$", "dispname": "-"}, {"name": "numpy.recarray.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.recarray.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.nonzero.html#$", "dispname": "-"}, {"name": "numpy.recarray.partition", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.partition.html#$", "dispname": "-"}, {"name": "numpy.recarray.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.prod.html#$", "dispname": "-"}, {"name": "numpy.recarray.ptp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.ptp.html#$", "dispname": "-"}, {"name": "numpy.recarray.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.put.html#$", "dispname": "-"}, {"name": "numpy.recarray.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.ravel.html#$", "dispname": "-"}, {"name": "numpy.recarray.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.real.html#$", "dispname": "-"}, {"name": "numpy.recarray.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.repeat.html#$", "dispname": "-"}, {"name": "numpy.recarray.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.reshape.html#$", "dispname": "-"}, {"name": "numpy.recarray.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.resize.html#$", "dispname": "-"}, {"name": "numpy.recarray.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.round.html#$", "dispname": "-"}, {"name": "numpy.recarray.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.recarray.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.setfield.html#$", "dispname": "-"}, {"name": "numpy.recarray.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.setflags.html#$", "dispname": "-"}, {"name": "numpy.recarray.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.shape.html#$", "dispname": "-"}, {"name": "numpy.recarray.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.size.html#$", "dispname": "-"}, {"name": "numpy.recarray.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.sort.html#$", "dispname": "-"}, {"name": "numpy.recarray.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.squeeze.html#$", "dispname": "-"}, {"name": "numpy.recarray.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.std.html#$", "dispname": "-"}, {"name": "numpy.recarray.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.recarray.strides.html#$", "dispname": "-"}, {"name": "numpy.recarray.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.sum.html#$", "dispname": "-"}, {"name": "numpy.recarray.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.recarray.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.take.html#$", "dispname": "-"}, {"name": "numpy.recarray.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.to_device.html#$", "dispname": "-"}, {"name": "numpy.recarray.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.tobytes.html#$", "dispname": "-"}, {"name": "numpy.recarray.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.tofile.html#$", "dispname": "-"}, {"name": "numpy.recarray.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.tolist.html#$", "dispname": "-"}, {"name": "numpy.recarray.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.tostring.html#$", "dispname": "-"}, {"name": "numpy.recarray.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.trace.html#$", "dispname": "-"}, {"name": "numpy.recarray.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.transpose.html#$", "dispname": "-"}, {"name": "numpy.recarray.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.var.html#$", "dispname": "-"}, {"name": "numpy.recarray.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.recarray.view.html#$", "dispname": "-"}, {"name": "numpy.reciprocal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.reciprocal.html#$", "dispname": "-"}, {"name": "numpy.record", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.record.html#$", "dispname": "-"}, {"name": "numpy.record.T", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.T.html#$", "dispname": "-"}, {"name": "numpy.record.all", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.all.html#$", "dispname": "-"}, {"name": "numpy.record.any", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.any.html#$", "dispname": "-"}, {"name": "numpy.record.argmax", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.argmax.html#$", "dispname": "-"}, {"name": "numpy.record.argmin", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.argmin.html#$", "dispname": "-"}, {"name": "numpy.record.argsort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.argsort.html#$", "dispname": "-"}, {"name": "numpy.record.astype", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.astype.html#$", "dispname": "-"}, {"name": "numpy.record.base", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.base.html#$", "dispname": "-"}, {"name": "numpy.record.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.byteswap.html#$", "dispname": "-"}, {"name": "numpy.record.choose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.choose.html#$", "dispname": "-"}, {"name": "numpy.record.clip", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.clip.html#$", "dispname": "-"}, {"name": "numpy.record.compress", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.compress.html#$", "dispname": "-"}, {"name": "numpy.record.conj", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.conj.html#$", "dispname": "-"}, {"name": "numpy.record.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.conjugate.html#$", "dispname": "-"}, {"name": "numpy.record.copy", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.copy.html#$", "dispname": "-"}, {"name": "numpy.record.cumprod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.cumprod.html#$", "dispname": "-"}, {"name": "numpy.record.cumsum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.cumsum.html#$", "dispname": "-"}, {"name": "numpy.record.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.data.html#$", "dispname": "-"}, {"name": "numpy.record.device", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.device.html#$", "dispname": "-"}, {"name": "numpy.record.diagonal", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.diagonal.html#$", "dispname": "-"}, {"name": "numpy.record.dtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.dtype.html#$", "dispname": "-"}, {"name": "numpy.record.dump", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.dump.html#$", "dispname": "-"}, {"name": "numpy.record.dumps", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.dumps.html#$", "dispname": "-"}, {"name": "numpy.record.fill", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.fill.html#$", "dispname": "-"}, {"name": "numpy.record.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.flags.html#$", "dispname": "-"}, {"name": "numpy.record.flat", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.flat.html#$", "dispname": "-"}, {"name": "numpy.record.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.flatten.html#$", "dispname": "-"}, {"name": "numpy.record.getfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.getfield.html#$", "dispname": "-"}, {"name": "numpy.record.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.imag.html#$", "dispname": "-"}, {"name": "numpy.record.item", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.item.html#$", "dispname": "-"}, {"name": "numpy.record.itemset", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.itemset.html#$", "dispname": "-"}, {"name": "numpy.record.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.itemsize.html#$", "dispname": "-"}, {"name": "numpy.record.max", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.max.html#$", "dispname": "-"}, {"name": "numpy.record.mean", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.mean.html#$", "dispname": "-"}, {"name": "numpy.record.min", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.min.html#$", "dispname": "-"}, {"name": "numpy.record.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.nbytes.html#$", "dispname": "-"}, {"name": "numpy.record.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.ndim.html#$", "dispname": "-"}, {"name": "numpy.record.newbyteorder", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.newbyteorder.html#$", "dispname": "-"}, {"name": "numpy.record.nonzero", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.nonzero.html#$", "dispname": "-"}, {"name": "numpy.record.pprint", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.pprint.html#$", "dispname": "-"}, {"name": "numpy.record.prod", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.prod.html#$", "dispname": "-"}, {"name": "numpy.record.ptp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.ptp.html#$", "dispname": "-"}, {"name": "numpy.record.put", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.put.html#$", "dispname": "-"}, {"name": "numpy.record.ravel", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.ravel.html#$", "dispname": "-"}, {"name": "numpy.record.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.real.html#$", "dispname": "-"}, {"name": "numpy.record.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.repeat.html#$", "dispname": "-"}, {"name": "numpy.record.reshape", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.reshape.html#$", "dispname": "-"}, {"name": "numpy.record.resize", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.resize.html#$", "dispname": "-"}, {"name": "numpy.record.round", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.round.html#$", "dispname": "-"}, {"name": "numpy.record.searchsorted", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.record.setfield", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.setfield.html#$", "dispname": "-"}, {"name": "numpy.record.setflags", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.setflags.html#$", "dispname": "-"}, {"name": "numpy.record.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.shape.html#$", "dispname": "-"}, {"name": "numpy.record.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.size.html#$", "dispname": "-"}, {"name": "numpy.record.sort", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.sort.html#$", "dispname": "-"}, {"name": "numpy.record.squeeze", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.squeeze.html#$", "dispname": "-"}, {"name": "numpy.record.std", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.std.html#$", "dispname": "-"}, {"name": "numpy.record.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.record.strides.html#$", "dispname": "-"}, {"name": "numpy.record.sum", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.sum.html#$", "dispname": "-"}, {"name": "numpy.record.swapaxes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.record.take", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.take.html#$", "dispname": "-"}, {"name": "numpy.record.to_device", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.to_device.html#$", "dispname": "-"}, {"name": "numpy.record.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.tobytes.html#$", "dispname": "-"}, {"name": "numpy.record.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.tofile.html#$", "dispname": "-"}, {"name": "numpy.record.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.tolist.html#$", "dispname": "-"}, {"name": "numpy.record.tostring", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.tostring.html#$", "dispname": "-"}, {"name": "numpy.record.trace", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.trace.html#$", "dispname": "-"}, {"name": "numpy.record.transpose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.transpose.html#$", "dispname": "-"}, {"name": "numpy.record.var", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.var.html#$", "dispname": "-"}, {"name": "numpy.record.view", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.record.view.html#$", "dispname": "-"}, {"name": "numpy.remainder", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.remainder.html#$", "dispname": "-"}, {"name": "numpy.repeat", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.repeat.html#$", "dispname": "-"}, {"name": "numpy.require", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.require.html#$", "dispname": "-"}, {"name": "numpy.reshape", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.reshape.html#$", "dispname": "-"}, {"name": "numpy.resize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.resize.html#$", "dispname": "-"}, {"name": "numpy.result_type", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.result_type.html#$", "dispname": "-"}, {"name": "numpy.right_shift", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.right_shift.html#$", "dispname": "-"}, {"name": "numpy.rint", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.rint.html#$", "dispname": "-"}, {"name": "numpy.roll", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.roll.html#$", "dispname": "-"}, {"name": "numpy.rollaxis", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rollaxis.html#$", "dispname": "-"}, {"name": "numpy.roots", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.roots.html#$", "dispname": "-"}, {"name": "numpy.rot90", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.rot90.html#$", "dispname": "-"}, {"name": "numpy.round", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.round.html#$", "dispname": "-"}, {"name": "numpy.s_", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.s_.html#$", "dispname": "-"}, {"name": "numpy.save", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.save.html#$", "dispname": "-"}, {"name": "numpy.savetxt", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.savetxt.html#$", "dispname": "-"}, {"name": "numpy.savez", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.savez.html#$", "dispname": "-"}, {"name": "numpy.savez_compressed", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.savez_compressed.html#$", "dispname": "-"}, {"name": "numpy.searchsorted", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.searchsorted.html#$", "dispname": "-"}, {"name": "numpy.select", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.select.html#$", "dispname": "-"}, {"name": "numpy.set_printoptions", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.set_printoptions.html#$", "dispname": "-"}, {"name": "numpy.setbufsize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.setbufsize.html#$", "dispname": "-"}, {"name": "numpy.setdiff1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.setdiff1d.html#$", "dispname": "-"}, {"name": "numpy.seterr", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.seterr.html#$", "dispname": "-"}, {"name": "numpy.seterrcall", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.seterrcall.html#$", "dispname": "-"}, {"name": "numpy.setxor1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.setxor1d.html#$", "dispname": "-"}, {"name": "numpy.shape", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.shape.html#$", "dispname": "-"}, {"name": "numpy.shares_memory", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.shares_memory.html#$", "dispname": "-"}, {"name": "numpy.short", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.show_config", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.show_config.html#$", "dispname": "-"}, {"name": "numpy.show_runtime", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.show_runtime.html#$", "dispname": "-"}, {"name": "numpy.sign", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.sign.html#$", "dispname": "-"}, {"name": "numpy.signbit", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.signbit.html#$", "dispname": "-"}, {"name": "numpy.signedinteger", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.sin", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.sin.html#$", "dispname": "-"}, {"name": "numpy.sinc", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.sinc.html#$", "dispname": "-"}, {"name": "numpy.single", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.sinh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.sinh.html#$", "dispname": "-"}, {"name": "numpy.size", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.size.html#$", "dispname": "-"}, {"name": "numpy.sort", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.sort.html#$", "dispname": "-"}, {"name": "numpy.sort_complex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.sort_complex.html#$", "dispname": "-"}, {"name": "numpy.spacing", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.spacing.html#$", "dispname": "-"}, {"name": "numpy.split", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.split.html#$", "dispname": "-"}, {"name": "numpy.sqrt", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.sqrt.html#$", "dispname": "-"}, {"name": "numpy.square", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.square.html#$", "dispname": "-"}, {"name": "numpy.squeeze", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.squeeze.html#$", "dispname": "-"}, {"name": "numpy.stack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.stack.html#$", "dispname": "-"}, {"name": "numpy.std", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.std.html#$", "dispname": "-"}, {"name": "numpy.str_", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.strings", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.strings.html#module-$", "dispname": "-"}, {"name": "numpy.strings.add", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.add.html#$", "dispname": "-"}, {"name": "numpy.strings.capitalize", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.capitalize.html#$", "dispname": "-"}, {"name": "numpy.strings.center", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.center.html#$", "dispname": "-"}, {"name": "numpy.strings.count", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.count.html#$", "dispname": "-"}, {"name": "numpy.strings.decode", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.decode.html#$", "dispname": "-"}, {"name": "numpy.strings.encode", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.encode.html#$", "dispname": "-"}, {"name": "numpy.strings.endswith", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.endswith.html#$", "dispname": "-"}, {"name": "numpy.strings.equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.equal.html#$", "dispname": "-"}, {"name": "numpy.strings.expandtabs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.expandtabs.html#$", "dispname": "-"}, {"name": "numpy.strings.find", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.find.html#$", "dispname": "-"}, {"name": "numpy.strings.greater", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.greater.html#$", "dispname": "-"}, {"name": "numpy.strings.greater_equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.greater_equal.html#$", "dispname": "-"}, {"name": "numpy.strings.index", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.index.html#$", "dispname": "-"}, {"name": "numpy.strings.isalnum", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isalnum.html#$", "dispname": "-"}, {"name": "numpy.strings.isalpha", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isalpha.html#$", "dispname": "-"}, {"name": "numpy.strings.isdecimal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isdecimal.html#$", "dispname": "-"}, {"name": "numpy.strings.isdigit", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isdigit.html#$", "dispname": "-"}, {"name": "numpy.strings.islower", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.islower.html#$", "dispname": "-"}, {"name": "numpy.strings.isnumeric", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isnumeric.html#$", "dispname": "-"}, {"name": "numpy.strings.isspace", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isspace.html#$", "dispname": "-"}, {"name": "numpy.strings.istitle", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.istitle.html#$", "dispname": "-"}, {"name": "numpy.strings.isupper", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.isupper.html#$", "dispname": "-"}, {"name": "numpy.strings.less", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.less.html#$", "dispname": "-"}, {"name": "numpy.strings.less_equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.less_equal.html#$", "dispname": "-"}, {"name": "numpy.strings.ljust", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.ljust.html#$", "dispname": "-"}, {"name": "numpy.strings.lower", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.lower.html#$", "dispname": "-"}, {"name": "numpy.strings.lstrip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.lstrip.html#$", "dispname": "-"}, {"name": "numpy.strings.mod", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.mod.html#$", "dispname": "-"}, {"name": "numpy.strings.multiply", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.multiply.html#$", "dispname": "-"}, {"name": "numpy.strings.not_equal", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.not_equal.html#$", "dispname": "-"}, {"name": "numpy.strings.partition", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.partition.html#$", "dispname": "-"}, {"name": "numpy.strings.replace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.replace.html#$", "dispname": "-"}, {"name": "numpy.strings.rfind", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.rfind.html#$", "dispname": "-"}, {"name": "numpy.strings.rindex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.rindex.html#$", "dispname": "-"}, {"name": "numpy.strings.rjust", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.rjust.html#$", "dispname": "-"}, {"name": "numpy.strings.rpartition", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.rpartition.html#$", "dispname": "-"}, {"name": "numpy.strings.rstrip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.rstrip.html#$", "dispname": "-"}, {"name": "numpy.strings.startswith", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.startswith.html#$", "dispname": "-"}, {"name": "numpy.strings.str_len", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.strings.str_len.html#$", "dispname": "-"}, {"name": "numpy.strings.strip", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.strip.html#$", "dispname": "-"}, {"name": "numpy.strings.swapcase", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.swapcase.html#$", "dispname": "-"}, {"name": "numpy.strings.title", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.title.html#$", "dispname": "-"}, {"name": "numpy.strings.translate", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.translate.html#$", "dispname": "-"}, {"name": "numpy.strings.upper", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.upper.html#$", "dispname": "-"}, {"name": "numpy.strings.zfill", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.strings.zfill.html#$", "dispname": "-"}, {"name": "numpy.subtract", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.subtract.html#$", "dispname": "-"}, {"name": "numpy.sum", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.sum.html#$", "dispname": "-"}, {"name": "numpy.swapaxes", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.swapaxes.html#$", "dispname": "-"}, {"name": "numpy.take", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.take.html#$", "dispname": "-"}, {"name": "numpy.take_along_axis", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.take_along_axis.html#$", "dispname": "-"}, {"name": "numpy.tan", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.tan.html#$", "dispname": "-"}, {"name": "numpy.tanh", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.tanh.html#$", "dispname": "-"}, {"name": "numpy.tensordot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.tensordot.html#$", "dispname": "-"}, {"name": "numpy.test", "domain": "py", "role": "function", "priority": "1", "uri": "reference/testing.html#$", "dispname": "-"}, {"name": "numpy.testing", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.testing.html#module-$", "dispname": "-"}, {"name": "numpy.testing._private.utils.clear_and_catch_warnings", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.testing.clear_and_catch_warnings.html#numpy.testing.clear_and_catch_warnings", "dispname": "-"}, {"name": "numpy.testing._private.utils.suppress_warnings", "domain": "py", "role": "class", "priority": "-1", "uri": "reference/generated/numpy.testing.suppress_warnings.html#numpy.testing.suppress_warnings", "dispname": "-"}, {"name": "numpy.testing.assert_", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_allclose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_allclose.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_almost_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_almost_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_approx_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_approx_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_array_almost_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_array_almost_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_array_almost_equal_nulp", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_array_almost_equal_nulp.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_array_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_array_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_array_less", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_array_less.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_array_max_ulp", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_array_max_ulp.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_no_gc_cycles", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_no_gc_cycles.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_no_warnings", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_no_warnings.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_raises", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_raises.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_raises_regex", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_raises_regex.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_string_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_string_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.assert_warns", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.assert_warns.html#$", "dispname": "-"}, {"name": "numpy.testing.clear_and_catch_warnings", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.testing.clear_and_catch_warnings.html#$", "dispname": "-"}, {"name": "numpy.testing.clear_and_catch_warnings.class_modules", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.testing.clear_and_catch_warnings.class_modules.html#$", "dispname": "-"}, {"name": "numpy.testing.decorate_methods", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.decorate_methods.html#$", "dispname": "-"}, {"name": "numpy.testing.extbuild.build_and_import_extension", "domain": "py", "role": "function", "priority": "1", "uri": "reference/testing.html#$", "dispname": "-"}, {"name": "numpy.testing.measure", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.measure.html#$", "dispname": "-"}, {"name": "numpy.testing.overrides", "domain": "py", "role": "module", "priority": "0", "uri": "reference/routines.testing.html#module-$", "dispname": "-"}, {"name": "numpy.testing.overrides.allows_array_function_override", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.overrides.allows_array_function_override.html#$", "dispname": "-"}, {"name": "numpy.testing.overrides.allows_array_ufunc_override", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.overrides.allows_array_ufunc_override.html#$", "dispname": "-"}, {"name": "numpy.testing.overrides.get_overridable_numpy_array_functions", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.overrides.get_overridable_numpy_array_functions.html#$", "dispname": "-"}, {"name": "numpy.testing.overrides.get_overridable_numpy_ufuncs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.overrides.get_overridable_numpy_ufuncs.html#$", "dispname": "-"}, {"name": "numpy.testing.print_assert_equal", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.print_assert_equal.html#$", "dispname": "-"}, {"name": "numpy.testing.rundocs", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.testing.rundocs.html#$", "dispname": "-"}, {"name": "numpy.testing.suppress_warnings", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.testing.suppress_warnings.html#$", "dispname": "-"}, {"name": "numpy.testing.suppress_warnings.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.testing.suppress_warnings.__call__.html#$", "dispname": "-"}, {"name": "numpy.testing.suppress_warnings.filter", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.testing.suppress_warnings.filter.html#$", "dispname": "-"}, {"name": "numpy.testing.suppress_warnings.record", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.testing.suppress_warnings.record.html#$", "dispname": "-"}, {"name": "numpy.tile", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.tile.html#$", "dispname": "-"}, {"name": "numpy.timedelta64", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.trace", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.trace.html#$", "dispname": "-"}, {"name": "numpy.transpose", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.transpose.html#$", "dispname": "-"}, {"name": "numpy.trapezoid", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.trapezoid.html#$", "dispname": "-"}, {"name": "numpy.tri", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.tri.html#$", "dispname": "-"}, {"name": "numpy.tril", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.tril.html#$", "dispname": "-"}, {"name": "numpy.tril_indices", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.tril_indices.html#$", "dispname": "-"}, {"name": "numpy.tril_indices_from", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.tril_indices_from.html#$", "dispname": "-"}, {"name": "numpy.trim_zeros", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.trim_zeros.html#$", "dispname": "-"}, {"name": "numpy.triu", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.triu.html#$", "dispname": "-"}, {"name": "numpy.triu_indices", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.triu_indices.html#$", "dispname": "-"}, {"name": "numpy.triu_indices_from", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.triu_indices_from.html#$", "dispname": "-"}, {"name": "numpy.true_divide", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.true_divide.html#$", "dispname": "-"}, {"name": "numpy.trunc", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.trunc.html#$", "dispname": "-"}, {"name": "numpy.typename", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.typename.html#$", "dispname": "-"}, {"name": "numpy.typing", "domain": "py", "role": "module", "priority": "0", "uri": "reference/typing.html#module-$", "dispname": "-"}, {"name": "numpy.typing.ArrayLike", "domain": "py", "role": "data", "priority": "1", "uri": "reference/typing.html#$", "dispname": "-"}, {"name": "numpy.typing.DTypeLike", "domain": "py", "role": "data", "priority": "1", "uri": "reference/typing.html#$", "dispname": "-"}, {"name": "numpy.typing.NBitBase", "domain": "py", "role": "class", "priority": "1", "uri": "reference/typing.html#$", "dispname": "-"}, {"name": "numpy.typing.NDArray", "domain": "py", "role": "data", "priority": "1", "uri": "reference/typing.html#$", "dispname": "-"}, {"name": "numpy.typing.mypy_plugin", "domain": "py", "role": "module", "priority": "0", "uri": "reference/typing.html#module-$", "dispname": "-"}, {"name": "numpy.ubyte", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ufunc", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.ufunc.html#$", "dispname": "-"}, {"name": "numpy.ufunc.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.__call__.html#$", "dispname": "-"}, {"name": "numpy.ufunc.accumulate", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.accumulate.html#$", "dispname": "-"}, {"name": "numpy.ufunc.at", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.at.html#$", "dispname": "-"}, {"name": "numpy.ufunc.identity", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.identity.html#$", "dispname": "-"}, {"name": "numpy.ufunc.nargs", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.nargs.html#$", "dispname": "-"}, {"name": "numpy.ufunc.nin", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.nin.html#$", "dispname": "-"}, {"name": "numpy.ufunc.nout", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.nout.html#$", "dispname": "-"}, {"name": "numpy.ufunc.ntypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.ntypes.html#$", "dispname": "-"}, {"name": "numpy.ufunc.outer", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.outer.html#$", "dispname": "-"}, {"name": "numpy.ufunc.reduce", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.reduce.html#$", "dispname": "-"}, {"name": "numpy.ufunc.reduceat", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.reduceat.html#$", "dispname": "-"}, {"name": "numpy.ufunc.resolve_dtypes", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.ufunc.resolve_dtypes.html#$", "dispname": "-"}, {"name": "numpy.ufunc.signature", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.signature.html#$", "dispname": "-"}, {"name": "numpy.ufunc.types", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/generated/numpy.ufunc.types.html#$", "dispname": "-"}, {"name": "numpy.uint", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.uint16", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.uint32", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.uint64", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.uint8", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.uintc", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.uintp", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ulong", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.ulonglong", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.union1d", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.union1d.html#$", "dispname": "-"}, {"name": "numpy.unique", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unique.html#$", "dispname": "-"}, {"name": "numpy.unique_all", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unique_all.html#$", "dispname": "-"}, {"name": "numpy.unique_counts", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unique_counts.html#$", "dispname": "-"}, {"name": "numpy.unique_inverse", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unique_inverse.html#$", "dispname": "-"}, {"name": "numpy.unique_values", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unique_values.html#$", "dispname": "-"}, {"name": "numpy.unpackbits", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unpackbits.html#$", "dispname": "-"}, {"name": "numpy.unravel_index", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unravel_index.html#$", "dispname": "-"}, {"name": "numpy.unsignedinteger", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.unstack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unstack.html#$", "dispname": "-"}, {"name": "numpy.unwrap", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.unwrap.html#$", "dispname": "-"}, {"name": "numpy.ushort", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.vander", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.vander.html#$", "dispname": "-"}, {"name": "numpy.var", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.var.html#$", "dispname": "-"}, {"name": "numpy.vdot", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.vdot.html#$", "dispname": "-"}, {"name": "numpy.vecdot", "domain": "py", "role": "data", "priority": "1", "uri": "reference/generated/numpy.vecdot.html#$", "dispname": "-"}, {"name": "numpy.vectorize", "domain": "py", "role": "class", "priority": "1", "uri": "reference/generated/numpy.vectorize.html#$", "dispname": "-"}, {"name": "numpy.vectorize.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/generated/numpy.vectorize.__call__.html#$", "dispname": "-"}, {"name": "numpy.version.full_version", "domain": "py", "role": "data", "priority": "1", "uri": "reference/routines.version.html#$", "dispname": "-"}, {"name": "numpy.version.git_revision", "domain": "py", "role": "data", "priority": "1", "uri": "reference/routines.version.html#$", "dispname": "-"}, {"name": "numpy.version.release", "domain": "py", "role": "data", "priority": "1", "uri": "reference/routines.version.html#$", "dispname": "-"}, {"name": "numpy.version.short_version", "domain": "py", "role": "data", "priority": "1", "uri": "reference/routines.version.html#$", "dispname": "-"}, {"name": "numpy.version.version", "domain": "py", "role": "data", "priority": "1", "uri": "reference/routines.version.html#$", "dispname": "-"}, {"name": "numpy.void", "domain": "py", "role": "class", "priority": "1", "uri": "reference/arrays.scalars.html#$", "dispname": "-"}, {"name": "numpy.vsplit", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.vsplit.html#$", "dispname": "-"}, {"name": "numpy.vstack", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.vstack.html#$", "dispname": "-"}, {"name": "numpy.where", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.where.html#$", "dispname": "-"}, {"name": "numpy.zeros", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.zeros.html#$", "dispname": "-"}, {"name": "numpy.zeros_like", "domain": "py", "role": "function", "priority": "1", "uri": "reference/generated/numpy.zeros_like.html#$", "dispname": "-"}, {"name": "object.__array_interface__", "domain": "py", "role": "data", "priority": "1", "uri": "reference/arrays.interface.html#$", "dispname": "-"}, {"name": "object.__array_struct__", "domain": "py", "role": "data", "priority": "1", "uri": "reference/arrays.interface.html#$", "dispname": "-"}, {"name": "(n,)", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-n", "dispname": "-"}, {"name": "-1", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term$", "dispname": "-"}, {"name": ". . .", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-.-.-.", "dispname": "-"}, {"name": ".base", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": ":", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-0", "dispname": "-"}, {"name": "<", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-2", "dispname": "-"}, {"name": ">", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-3", "dispname": "-"}, {"name": "BLAS", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "C order", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-C-order", "dispname": "-"}, {"name": "Fortran order", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-Fortran-order", "dispname": "-"}, {"name": "accelerated-blas-lapack-libraries", "domain": "std", "role": "label", "priority": "-1", "uri": "building/blas_lapack.html#$", "dispname": "Selecting specific BLAS and LAPACK libraries"}, {"name": "advanced indexing", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-advanced-indexing", "dispname": "-"}, {"name": "advanced-indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Advanced indexing"}, {"name": "advanced_debugging", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_advanced_debugging.html#advanced-debugging", "dispname": "Advanced debugging tools"}, {"name": "alignment", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/alignment.html#$", "dispname": "Memory alignment"}, {"name": "along an axis", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-along-an-axis", "dispname": "-"}, {"name": "array", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "array scalar", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-array-scalar", "dispname": "-"}, {"name": "array-api-standard-compatibility", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/array_api.html#$", "dispname": "Array API standard compatibility"}, {"name": "array-broadcasting-in-numpy", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#$", "dispname": "Broadcasting"}, {"name": "array-flags", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/array.html#$", "dispname": "Array flags"}, {"name": "array-ufunc", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.subclassing.html#$", "dispname": "__array_ufunc__ for ufuncs"}, {"name": "array-wrap", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.subclassing.html#$", "dispname": "__array_wrap__ for ufuncs and other functions"}, {"name": "array.ndarray.methods", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.ndarray.html#array-ndarray-methods", "dispname": "Array methods"}, {"name": "array_like", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "arraymethod-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/types-and-structures.html#$", "dispname": "PyArrayMethod_Context and PyArrayMethod_Spec"}, {"name": "arraymethod-typedefs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/array.html#$", "dispname": "Slots and Typedefs"}, {"name": "arrays", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.html#$", "dispname": "Array objects"}, {"name": "arrays.broadcasting.broadcastable", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#arrays-broadcasting-broadcastable", "dispname": "Broadcastable arrays"}, {"name": "arrays.classes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.classes.html#arrays-classes", "dispname": "Standard array subclasses"}, {"name": "arrays.classes.rec", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.classes.html#arrays-classes-rec", "dispname": "Record arrays"}, {"name": "arrays.creation", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.creation.html#arrays-creation", "dispname": "Array creation"}, {"name": "arrays.datetime", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.datetime.html#arrays-datetime", "dispname": "Datetimes and timedeltas"}, {"name": "arrays.dtypes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.dtypes.html#arrays-dtypes", "dispname": "Data type objects (dtype)"}, {"name": "arrays.dtypes.constructing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.dtypes.html#arrays-dtypes-constructing", "dispname": "Specifying and constructing data types"}, {"name": "arrays.dtypes.dateunits", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.datetime.html#arrays-dtypes-dateunits", "dispname": "-"}, {"name": "arrays.dtypes.timeunits", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.datetime.html#arrays-dtypes-timeunits", "dispname": "-"}, {"name": "arrays.indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.indexing.html#arrays-indexing", "dispname": "Indexing routines"}, {"name": "arrays.indexing.fields", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#arrays-indexing-fields", "dispname": "Field access"}, {"name": "arrays.interface", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.interface.html#arrays-interface", "dispname": "The array interface protocol"}, {"name": "arrays.ndarray", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.ndarray.html#arrays-ndarray", "dispname": "The N-dimensional array (ndarray)"}, {"name": "arrays.ndarray.array-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.ndarray.html#arrays-ndarray-array-interface", "dispname": "Array interface"}, {"name": "arrays.ndarray.attributes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.ndarray.html#arrays-ndarray-attributes", "dispname": "Array attributes"}, {"name": "arrays.ndarray.indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.ndarray.html#arrays-ndarray-indexing", "dispname": "Indexing arrays"}, {"name": "arrays.nditer", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.nditer.html#arrays-nditer", "dispname": "Iterating over arrays"}, {"name": "arrays.promotion", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.promotion.html#arrays-promotion", "dispname": "Data type promotion in NumPy"}, {"name": "arrays.scalars", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.scalars.html#arrays-scalars", "dispname": "Scalars"}, {"name": "arrays.scalars.built-in", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.scalars.html#arrays-scalars-built-in", "dispname": "Built-in scalar types"}, {"name": "arrays.scalars.character-codes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.scalars.html#arrays-scalars-character-codes", "dispname": "Built-in scalar types"}, {"name": "arrfuncs-type", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/types-and-structures.html#$", "dispname": "PyArray_ArrFuncs"}, {"name": "asking-for-merging", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Asking for your changes to be merged with the main repo"}, {"name": "assigning-values-to-indexed-arrays", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Assigning values to indexed arrays"}, {"name": "axis", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "basic-indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Basic indexing"}, {"name": "basics.broadcasting", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#basics-broadcasting", "dispname": "Broadcasting"}, {"name": "basics.copies-and-views", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.copies.html#basics-copies-and-views", "dispname": "Copies and views"}, {"name": "basics.dispatch", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.dispatch.html#basics-dispatch", "dispname": "Writing custom array containers"}, {"name": "basics.indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#basics-indexing", "dispname": "Indexing on ndarrays"}, {"name": "basics.interoperability", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.interoperability.html#basics-interoperability", "dispname": "Interoperability with NumPy"}, {"name": "basics.strings", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.strings.html#basics-strings", "dispname": "Working with Arrays of Strings And Bytes"}, {"name": "basics.subclassing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.subclassing.html#basics-subclassing", "dispname": "Subclassing ndarray"}, {"name": "basics.types", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.types.html#basics-types", "dispname": "Data types"}, {"name": "benchmarking", "domain": "std", "role": "doc", "priority": "-1", "uri": "benchmarking.html", "dispname": "NumPy benchmarks"}, {"name": "big-endian", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "blas-lapack-selection", "domain": "std", "role": "label", "priority": "-1", "uri": "building/blas_lapack.html#$", "dispname": "Default behavior for BLAS and LAPACK selection"}, {"name": "boolean-indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Boolean array indexing"}, {"name": "branching", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/releasing.html#$", "dispname": "Branch walkthrough"}, {"name": "broadcast", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "broadcasting-rules", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#$", "dispname": "Broadcasting rules"}, {"name": "broadcasting.figure-1", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#broadcasting-figure-1", "dispname": "Figure 1"}, {"name": "broadcasting.figure-2", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#broadcasting-figure-2", "dispname": "Figure 2"}, {"name": "broadcasting.figure-3", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#broadcasting-figure-3", "dispname": "Figure 3"}, {"name": "broadcasting.figure-4", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#broadcasting-figure-4", "dispname": "Figure 4"}, {"name": "broadcasting.figure-5", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#broadcasting-figure-5", "dispname": "Figure 5"}, {"name": "building-blas-and-lapack", "domain": "std", "role": "label", "priority": "-1", "uri": "building/blas_lapack.html#$", "dispname": "BLAS and LAPACK"}, {"name": "building-docs", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/index.html#$", "dispname": "Building docs"}, {"name": "building-from-source", "domain": "std", "role": "label", "priority": "-1", "uri": "building/index.html#$", "dispname": "Building from source"}, {"name": "building/blas_lapack", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/blas_lapack.html", "dispname": "BLAS and LAPACK"}, {"name": "building/compilers_and_options", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/compilers_and_options.html", "dispname": "Compiler selection and customizing a build"}, {"name": "building/cross_compilation", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/cross_compilation.html", "dispname": "Cross compilation"}, {"name": "building/distutils_equivalents", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/distutils_equivalents.html", "dispname": "Meson and distutils ways of doing things"}, {"name": "building/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/index.html", "dispname": "Building from source"}, {"name": "building/introspecting_a_build", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/introspecting_a_build.html", "dispname": "Introspecting build steps"}, {"name": "building/redistributable_binaries", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/redistributable_binaries.html", "dispname": "Building redistributable binaries"}, {"name": "building/understanding_meson", "domain": "std", "role": "doc", "priority": "-1", "uri": "building/understanding_meson.html", "dispname": "Understanding Meson"}, {"name": "c-api", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/index.html#$", "dispname": "NumPy C-API"}, {"name": "c-api.generalized-ufuncs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/generalized-ufuncs.html#c-api-generalized-ufuncs", "dispname": "Generalized universal function API"}, {"name": "c-code-explanations", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/internals.code-explanations.html#$", "dispname": "NumPy C code explanations"}, {"name": "c-expressions", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/signature-file.html#$", "dispname": "C expressions"}, {"name": "c_api_deprecations", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/deprecations.html#c-api-deprecations", "dispname": "C API deprecations"}, {"name": "call-back arguments", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/python-usage.html#call-back-arguments", "dispname": "Call-back arguments"}, {"name": "canonical-python-and-c-types", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.types.html#$", "dispname": "Relationship Between NumPy Data Types and C Data Types"}, {"name": "casting", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "character strings", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/advanced/use_cases.html#character-strings", "dispname": "Character strings"}, {"name": "classDoxyLimbo", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#$", "dispname": "-"}, {"name": "classDoxyLimbo_1a952dd83b3eeb92013adcf2c065a98b77", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#$", "dispname": "-"}, {"name": "column-major", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "combining-advanced-and-basic-indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Combining advanced and basic indexing"}, {"name": "complex-numbers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/coremath.html#$", "dispname": "Support for complex numbers"}, {"name": "contiguous", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "contributing", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#$", "dispname": "More on contributing"}, {"name": "copy", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "copy-keyword-changes-2.0", "domain": "std", "role": "label", "priority": "-1", "uri": "release/2.0.0-notes.html#copy-keyword-changes-2-0", "dispname": "New copy keyword meaning for array and asarray constructors"}, {"name": "data_memory", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/data_memory.html#data-memory", "dispname": "Memory management in NumPy"}, {"name": "dealing-with-variable-indices", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Dealing with variable numbers of indices within programs"}, {"name": "debugging", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_environment.html#$", "dispname": "Debugging"}, {"name": "defining-structured-types", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.rec.html#$", "dispname": "Structured datatypes"}, {"name": "depending_on_numpy", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/depending_on_numpy.html#depending-on-numpy", "dispname": "Adding a dependency on NumPy"}, {"name": "details-of-signature", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/generalized-ufuncs.html#$", "dispname": "Details of signature"}, {"name": "dev/alignment", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/alignment.html", "dispname": "Memory alignment"}, {"name": "dev/depending_on_numpy", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/depending_on_numpy.html", "dispname": "For downstream package authors"}, {"name": "dev/development_advanced_debugging", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/development_advanced_debugging.html", "dispname": "Advanced debugging tools"}, {"name": "dev/development_environment", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/development_environment.html", "dispname": "Setting up and using your development environment"}, {"name": "dev/development_workflow", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/development_workflow.html", "dispname": "Development workflow"}, {"name": "dev/governance/governance", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/governance/governance.html", "dispname": "NumPy project governance and decision-making"}, {"name": "dev/governance/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/governance/index.html", "dispname": "NumPy governance"}, {"name": "dev/howto-docs", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/howto-docs.html", "dispname": "How to contribute to the NumPy documentation"}, {"name": "dev/howto_build_docs", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/howto_build_docs.html", "dispname": "Building the NumPy API and reference docs"}, {"name": "dev/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/index.html", "dispname": "Contributing to NumPy"}, {"name": "dev/internals", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/internals.html", "dispname": "Internal organization of NumPy arrays"}, {"name": "dev/internals.code-explanations", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/internals.code-explanations.html", "dispname": "NumPy C code explanations"}, {"name": "dev/releasing", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/releasing.html", "dispname": "Releasing a version"}, {"name": "dev/reviewer_guidelines", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/reviewer_guidelines.html", "dispname": "Reviewer guidelines"}, {"name": "dev/underthehood", "domain": "std", "role": "doc", "priority": "-1", "uri": "dev/underthehood.html", "dispname": "Under-the-hood documentation for developers"}, {"name": "development-environment", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_environment.html#$", "dispname": "Setting up and using your development environment"}, {"name": "development-workflow", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Development workflow"}, {"name": "devindex", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/index.html#$", "dispname": "Contributing to NumPy"}, {"name": "dimension", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "dimensional-indexing-tools", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Dimensional indexing tools"}, {"name": "dispatchable-sources", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/how-it-works.html#$", "dispname": "5- Dispatch-able sources and configuration statements"}, {"name": "distutils-meson-equivalents", "domain": "std", "role": "label", "priority": "-1", "uri": "building/distutils_equivalents.html#$", "dispname": "Meson and distutils ways of doing things"}, {"name": "distutils-status-migration", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/distutils_status_migration.html#$", "dispname": "Status of numpy.distutils and migration advice"}, {"name": "distutils-user-guide", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/distutils_guide.html#$", "dispname": "numpy.distutils user guide"}, {"name": "doc_c_code", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#doc-c-code", "dispname": "Documenting C/C++ code"}, {"name": "docstring_intro", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#docstring-intro", "dispname": "Docstrings"}, {"name": "dtype", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "dtype-api", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/array.html#$", "dispname": "Custom Data Types"}, {"name": "dtype-flags", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/array.html#$", "dispname": "Flags"}, {"name": "dtype-slots", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/array.html#$", "dispname": "Slot IDs and API Function Typedefs"}, {"name": "dtypemeta", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/types-and-structures.html#$", "dispname": "PyArray_DTypeMeta and PyArrayDTypeMeta_Spec"}, {"name": "dunder_array.interface", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.interoperability.html#dunder-array-interface", "dispname": "The __array__() method"}, {"name": "editing-workflow", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "The editing workflow"}, {"name": "extending", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/extending.html#$", "dispname": "Extending"}, {"name": "extending_cython_example", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/examples/cython/index.html#extending-cython-example", "dispname": "Extending numpy.random via Cython"}, {"name": "external", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/signature-file.html#$", "dispname": "-"}, {"name": "f2py", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/index.html#$", "dispname": "F2PY user guide and reference manual"}, {"name": "f2py-attributes", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/signature-file.html#$", "dispname": "Attributes"}, {"name": "f2py-bldsys", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/buildtools/index.html#$", "dispname": "F2PY and build systems"}, {"name": "f2py-boilerplating", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/advanced/boilerplating.html#$", "dispname": "Boilerplate reduction and templating"}, {"name": "f2py-cmake", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/buildtools/cmake.html#$", "dispname": "Using via cmake"}, {"name": "f2py-distutils", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/buildtools/distutils.html#$", "dispname": "Using via numpy.distutils"}, {"name": "f2py-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/f2py-examples.html#$", "dispname": "F2PY examples"}, {"name": "f2py-getting-started", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/f2py.getting-started.html#$", "dispname": "Three ways to wrap - getting started"}, {"name": "f2py-meson", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/buildtools/meson.html#$", "dispname": "Using via meson"}, {"name": "f2py-meson-distutils", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/buildtools/distutils-to-meson.html#$", "dispname": "1 Migrating to meson"}, {"name": "f2py-reference", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/f2py-reference.html#$", "dispname": "F2PY reference manual"}, {"name": "f2py-skbuild", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/buildtools/skbuild.html#$", "dispname": "Using via scikit-build"}, {"name": "f2py-testing", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/f2py-testing.html#$", "dispname": "F2PY test suite"}, {"name": "f2py-user", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/f2py-user.html#$", "dispname": "F2PY user guide"}, {"name": "f2py-win-conda", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/windows/conda.html#$", "dispname": "F2PY and Conda on Windows"}, {"name": "f2py-win-intel", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/windows/intel.html#$", "dispname": "F2PY and Windows Intel Fortran"}, {"name": "f2py-win-msys2", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/windows/msys2.html#$", "dispname": "F2PY and Windows with MSYS2"}, {"name": "f2py-win-pgi", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/windows/pgi.html#$", "dispname": "F2PY and PGI Fortran on Windows"}, {"name": "f2py-windows", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/windows/index.html#$", "dispname": "F2PY and Windows"}, {"name": "f2py/advanced/boilerplating", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/advanced/boilerplating.html", "dispname": "Boilerplate reduction and templating"}, {"name": "f2py/advanced/use_cases", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/advanced/use_cases.html", "dispname": "Advanced F2PY use cases"}, {"name": "f2py/buildtools/cmake", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/buildtools/cmake.html", "dispname": "Using via cmake"}, {"name": "f2py/buildtools/distutils", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/buildtools/distutils.html", "dispname": "Using via numpy.distutils"}, {"name": "f2py/buildtools/distutils-to-meson", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/buildtools/distutils-to-meson.html", "dispname": "1 Migrating to meson"}, {"name": "f2py/buildtools/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/buildtools/index.html", "dispname": "F2PY and build systems"}, {"name": "f2py/buildtools/meson", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/buildtools/meson.html", "dispname": "Using via meson"}, {"name": "f2py/buildtools/skbuild", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/buildtools/skbuild.html", "dispname": "Using via scikit-build"}, {"name": "f2py/f2py-examples", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/f2py-examples.html", "dispname": "F2PY examples"}, {"name": "f2py/f2py-reference", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/f2py-reference.html", "dispname": "F2PY reference manual"}, {"name": "f2py/f2py-testing", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/f2py-testing.html", "dispname": "F2PY test suite"}, {"name": "f2py/f2py-user", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/f2py-user.html", "dispname": "F2PY user guide"}, {"name": "f2py/f2py.getting-started", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/f2py.getting-started.html", "dispname": "Three ways to wrap - getting started"}, {"name": "f2py/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/index.html", "dispname": "F2PY user guide and reference manual"}, {"name": "f2py/python-usage", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/python-usage.html", "dispname": "Using F2PY bindings in Python"}, {"name": "f2py/signature-file", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/signature-file.html", "dispname": "Signature file"}, {"name": "f2py/usage", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/usage.html", "dispname": "Using F2PY"}, {"name": "f2py/windows/conda", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/windows/conda.html", "dispname": "F2PY and Conda on Windows"}, {"name": "f2py/windows/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/windows/index.html", "dispname": "F2PY and Windows"}, {"name": "f2py/windows/intel", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/windows/intel.html", "dispname": "F2PY and Windows Intel Fortran"}, {"name": "f2py/windows/msys2", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/windows/msys2.html", "dispname": "F2PY and Windows with MSYS2"}, {"name": "f2py/windows/pgi", "domain": "std", "role": "doc", "priority": "-1", "uri": "f2py/windows/pgi.html", "dispname": "F2PY and PGI Fortran on Windows"}, {"name": "fancy indexing", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-fancy-indexing", "dispname": "-"}, {"name": "field", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "flat-iterator-indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Flat iterator indexing"}, {"name": "flattened", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "for-downstream-package-authors", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/depending_on_numpy.html#$", "dispname": "For downstream package authors"}, {"name": "frozen", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/generalized-ufuncs.html#$", "dispname": "-"}, {"name": "functions-in-numpy-random", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/legacy.html#$", "dispname": "Functions in numpy.random"}, {"name": "general-broadcasting-rules", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.broadcasting.html#$", "dispname": "General broadcasting rules"}, {"name": "generator-handling-axis-parameter", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generator.html#$", "dispname": "Handling the axis parameter"}, {"name": "genindex", "domain": "std", "role": "label", "priority": "-1", "uri": "genindex.html", "dispname": "Index"}, {"name": "getting_started", "domain": "std", "role": "doc", "priority": "-1", "uri": "getting_started.html", "dispname": "Getting started"}, {"name": "global_state", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/global_state.html#global-state", "dispname": "Global Configuration Options"}, {"name": "glossary", "domain": "std", "role": "doc", "priority": "-1", "uri": "glossary.html", "dispname": "Glossary"}, {"name": "guidelines", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/index.html#$", "dispname": "Guidelines"}, {"name": "homogeneous", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "how-to-how-to", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-how-to.html#$", "dispname": "How to write a NumPy how-to"}, {"name": "how-to-index", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-index.html#$", "dispname": "How to index ndarrays"}, {"name": "how-to-io", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-io.html#$", "dispname": "-"}, {"name": "how-to-io-large-arrays", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-io.html#$", "dispname": "Write or read large arrays"}, {"name": "how-to-io-pickle-file", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-io.html#$", "dispname": "Save/restore using a pickle file"}, {"name": "how-to-partition", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-partition.html#$", "dispname": "How to create arrays with regularly-spaced values"}, {"name": "how-to-verify-bug", "domain": "std", "role": "label", "priority": "-1", "uri": "user/how-to-verify-bug.html#$", "dispname": "Verifying bugs and bug fixes in NumPy"}, {"name": "how-todoc.prerequisites", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto_build_docs.html#how-todoc-prerequisites", "dispname": "Prerequisites"}, {"name": "howto-build-docs", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto_build_docs.html#$", "dispname": "Building the NumPy API and reference docs"}, {"name": "howto-docs", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#$", "dispname": "How to contribute to the NumPy documentation"}, {"name": "howto-document", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#$", "dispname": "Documentation style"}, {"name": "howtos", "domain": "std", "role": "label", "priority": "-1", "uri": "user/howtos_index.html#$", "dispname": "NumPy how-tos"}, {"name": "including-the-c-api", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/array.html#$", "dispname": "Including and importing the C API"}, {"name": "independent-streams", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/parallel.html#$", "dispname": "Independent streams"}, {"name": "index", "domain": "std", "role": "doc", "priority": "-1", "uri": "index.html", "dispname": "NumPy documentation"}, {"name": "indexing-operations", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.copies.html#$", "dispname": "Indexing operations"}, {"name": "itemsize", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "iteration-example", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/iterator.html#$", "dispname": "Iteration example"}, {"name": "legacy", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/legacy.html#$", "dispname": "Legacy random generation"}, {"name": "license", "domain": "std", "role": "doc", "priority": "-1", "uri": "license.html", "dispname": "NumPy license"}, {"name": "linking-npymath", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/c-api/coremath.html#$", "dispname": "Linking against the core math library in an extension"}, {"name": "little-endian", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "ma-attributes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/maskedarray.baseclass.html#$", "dispname": "Attributes and properties of masked arrays"}, {"name": "making-a-new-feature-branch", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Making a new feature branch"}, {"name": "mask", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "masked array", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-masked-array", "dispname": "-"}, {"name": "maskedarray", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/maskedarray.html#$", "dispname": "Masked arrays"}, {"name": "maskedarray.baseclass", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/maskedarray.baseclass.html#maskedarray-baseclass", "dispname": "The MaskedArray class"}, {"name": "maskedarray.generic", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/maskedarray.generic.html#maskedarray-generic", "dispname": "The numpy.ma module"}, {"name": "maskedarray.generic.constructing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/maskedarray.generic.html#maskedarray-generic-constructing", "dispname": "Constructing masked arrays"}, {"name": "matrix", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "matrix-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.classes.html#$", "dispname": "Matrix objects"}, {"name": "memory-layout", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.ndarray.html#$", "dispname": "Internal memory layout of an ndarray"}, {"name": "meson-editable-installs", "domain": "std", "role": "label", "priority": "-1", "uri": "building/index.html#$", "dispname": "-"}, {"name": "meson-introspection", "domain": "std", "role": "label", "priority": "-1", "uri": "building/introspecting_a_build.html#$", "dispname": "Introspecting build steps"}, {"name": "migration_c_descr", "domain": "std", "role": "label", "priority": "-1", "uri": "numpy_2_0_migration_guide.html#migration-c-descr", "dispname": "The PyArray_Descr struct has been changed"}, {"name": "migration_maxdims", "domain": "std", "role": "label", "priority": "-1", "uri": "numpy_2_0_migration_guide.html#migration-maxdims", "dispname": "Increased maximum number of dimensions"}, {"name": "migration_promotion_changes", "domain": "std", "role": "label", "priority": "-1", "uri": "numpy_2_0_migration_guide.html#migration-promotion-changes", "dispname": "Changes to NumPy data type promotion"}, {"name": "migration_windows_int64", "domain": "std", "role": "label", "priority": "-1", "uri": "numpy_2_0_migration_guide.html#migration-windows-int64", "dispname": "Windows default integer"}, {"name": "modindex", "domain": "std", "role": "label", "priority": "-1", "uri": "py-modindex.html", "dispname": "Module Index"}, {"name": "module-structure", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/module_structure.html#$", "dispname": "NumPy\u2019s module structure"}, {"name": "ndarray", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "nditer-context-manager", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.nditer.html#$", "dispname": "Modifying array values"}, {"name": "new-from-template", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.subclassing.html#$", "dispname": "Creating new from template"}, {"name": "new-or-different", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/new-or-different.html#$", "dispname": "What\u2019s new or different"}, {"name": "note", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/examples/cython/index.html#$", "dispname": "-"}, {"name": "numpy-2-abi-handling", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/depending_on_numpy.html#$", "dispname": "NumPy 2.0-specific advice"}, {"name": "numpy-2-migration-guide", "domain": "std", "role": "label", "priority": "-1", "uri": "numpy_2_0_migration_guide.html#$", "dispname": "NumPy 2.0 migration guide"}, {"name": "numpy-distutils-refguide", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/distutils.html#$", "dispname": "Packaging (numpy.distutils)"}, {"name": "numpy-for-matlab-users", "domain": "std", "role": "label", "priority": "-1", "uri": "user/numpy-for-matlab-users.html#$", "dispname": "NumPy for MATLAB users"}, {"name": "numpy-for-matlab-users.notes", "domain": "std", "role": "label", "priority": "-1", "uri": "user/numpy-for-matlab-users.html#numpy-for-matlab-users-notes", "dispname": "Notes"}, {"name": "numpy-internals", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/internals.html#$", "dispname": "Internal organization of NumPy arrays"}, {"name": "numpy-polynomial", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.polynomials-package.html#$", "dispname": "numpy.polynomial"}, {"name": "numpy-setuptools-interaction", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/distutils_status_migration.html#$", "dispname": "Interaction of numpy.distutils with setuptools"}, {"name": "numpy.ma.constants", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/maskedarray.baseclass.html#numpy-ma-constants", "dispname": "Constants of the numpy.ma module"}, {"name": "numpy_2_0_migration_guide", "domain": "std", "role": "doc", "priority": "-1", "uri": "numpy_2_0_migration_guide.html", "dispname": "NumPy 2.0 migration guide"}, {"name": "numpy_docs_mainpage", "domain": "std", "role": "label", "priority": "-1", "uri": "index.html#numpy-docs-mainpage", "dispname": "NumPy documentation"}, {"name": "numpy_tutorials", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#numpy-tutorials", "dispname": "NumPy tutorials"}, {"name": "numpyrandom", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/index.html#$", "dispname": "Random sampling (numpy.random)"}, {"name": "numpysimd", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/index.html#$", "dispname": "CPU/SIMD optimizations"}, {"name": "object array", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-object-array", "dispname": "-"}, {"name": "offsets-and-alignment", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.rec.html#$", "dispname": "Automatic byte offsets and alignment"}, {"name": "opt-build-report", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/build-options.html#$", "dispname": "Build report"}, {"name": "opt-platform-differences", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/build-options.html#$", "dispname": "Platform differences"}, {"name": "opt-special-options", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/build-options.html#$", "dispname": "Special options"}, {"name": "opt-supported-features", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/build-options.html#$", "dispname": "Supported features"}, {"name": "overflow-errors", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.types.html#$", "dispname": "Overflow errors"}, {"name": "parallel-jumped", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/parallel.html#$", "dispname": "Jumping the BitGenerator state"}, {"name": "prepare_release", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/releasing.html#prepare-release", "dispname": "How to prepare a release"}, {"name": "pushing-to-main", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Pushing changes to the main repo"}, {"name": "py-modindex", "domain": "std", "role": "label", "priority": "-1", "uri": "py-modindex.html", "dispname": "Python Module Index"}, {"name": "python-module-numpy.f2py", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/usage.html#python-module-numpy-f2py", "dispname": "Python module numpy.f2py"}, {"name": "quickstart.array-creation", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-array-creation", "dispname": "Array creation"}, {"name": "quickstart.basic-operations", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-basic-operations", "dispname": "Basic operations"}, {"name": "quickstart.copies-and-views", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-copies-and-views", "dispname": "Copies and views"}, {"name": "quickstart.indexing-slicing-and-iterating", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-indexing-slicing-and-iterating", "dispname": "Indexing, slicing and iterating"}, {"name": "quickstart.shape-manipulation", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-shape-manipulation", "dispname": "Shape manipulation"}, {"name": "quickstart.stacking-arrays", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-stacking-arrays", "dispname": "Stacking together different arrays"}, {"name": "quickstart.the-basics", "domain": "std", "role": "label", "priority": "-1", "uri": "user/quickstart.html#quickstart-the-basics", "dispname": "The basics"}, {"name": "r01a8f58ef25b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.roots.html#$", "dispname": "-"}, {"name": "r02de30f409d2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.nanquantile.html#$", "dispname": "-"}, {"name": "r02f022d4b0fe-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.inv.html#$", "dispname": "-"}, {"name": "r03a512939777-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.zipf.html#$", "dispname": "-"}, {"name": "r068cb77115ef-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.f.html#$", "dispname": "-"}, {"name": "r068cb77115ef-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.f.html#$", "dispname": "-"}, {"name": "r08bde0ebf37b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.percentile.html#$", "dispname": "-"}, {"name": "r09f005d8254d-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.negative_binomial.html#$", "dispname": "-"}, {"name": "r09f005d8254d-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.negative_binomial.html#$", "dispname": "-"}, {"name": "r09f32ab11221-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.f.html#$", "dispname": "-"}, {"name": "r09f32ab11221-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.f.html#$", "dispname": "-"}, {"name": "r0b9feda8a8ed-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.multivariate_normal.html#$", "dispname": "-"}, {"name": "r0b9feda8a8ed-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.multivariate_normal.html#$", "dispname": "-"}, {"name": "r0c799622ea98-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.log10.html#$", "dispname": "-"}, {"name": "r0c799622ea98-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.log10.html#$", "dispname": "-"}, {"name": "r0dbb9b01ef9c-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.exponential.html#$", "dispname": "-"}, {"name": "r0dbb9b01ef9c-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.exponential.html#$", "dispname": "-"}, {"name": "r0dbb9b01ef9c-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.exponential.html#$", "dispname": "-"}, {"name": "r0f3b6a011c4f-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebfit.html#$", "dispname": "-"}, {"name": "r0fe533894e26-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.dirichlet.html#$", "dispname": "-"}, {"name": "r0fe533894e26-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.dirichlet.html#$", "dispname": "-"}, {"name": "r102e81b560ea-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.triangular.html#$", "dispname": "-"}, {"name": "r1038d2d7ea5b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.asinh.html#$", "dispname": "-"}, {"name": "r1038d2d7ea5b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.asinh.html#$", "dispname": "-"}, {"name": "r10956276ab0c-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.wald.html#$", "dispname": "-"}, {"name": "r10956276ab0c-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.wald.html#$", "dispname": "-"}, {"name": "r10956276ab0c-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.wald.html#$", "dispname": "-"}, {"name": "r138ee7027ddf-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polyval.html#$", "dispname": "-"}, {"name": "r14e6c54b746b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.outer.html#$", "dispname": "-"}, {"name": "r1536f9c044a3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.normal.html#$", "dispname": "-"}, {"name": "r1536f9c044a3-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.normal.html#$", "dispname": "-"}, {"name": "r15565755312f-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.dirichlet.html#$", "dispname": "-"}, {"name": "r15565755312f-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.dirichlet.html#$", "dispname": "-"}, {"name": "r17278fbd2b1c-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.gumbel.html#$", "dispname": "-"}, {"name": "r17278fbd2b1c-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.gumbel.html#$", "dispname": "-"}, {"name": "r190e68b4b0fb-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_gamma.html#$", "dispname": "-"}, {"name": "r190e68b4b0fb-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_gamma.html#$", "dispname": "-"}, {"name": "r1a6952e0ea3e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.zipf.html#$", "dispname": "-"}, {"name": "r1f2e8fcacf2b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.hypergeometric.html#$", "dispname": "-"}, {"name": "r1f2e8fcacf2b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.hypergeometric.html#$", "dispname": "-"}, {"name": "r1f2e8fcacf2b-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.hypergeometric.html#$", "dispname": "-"}, {"name": "r1ffe72fc1dc5-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.trapezoid.html#$", "dispname": "-"}, {"name": "r1ffe72fc1dc5-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.trapezoid.html#$", "dispname": "-"}, {"name": "r20c8bad59052-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.atan2.html#$", "dispname": "-"}, {"name": "r22101f99eb84-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.tanh.html#$", "dispname": "-"}, {"name": "r22101f99eb84-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.tanh.html#$", "dispname": "-"}, {"name": "r2465fa468494-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.triangular.html#$", "dispname": "-"}, {"name": "r25ee6110317b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.round.html#$", "dispname": "-"}, {"name": "r2b1032d35214-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_f.html#$", "dispname": "-"}, {"name": "r2b1032d35214-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_f.html#$", "dispname": "-"}, {"name": "r2ee89c7f792a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.finfo.html#$", "dispname": "-"}, {"name": "r2ee89c7f792a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.finfo.html#$", "dispname": "-"}, {"name": "r2f327bcac6e6-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.gumbel.html#$", "dispname": "-"}, {"name": "r2f327bcac6e6-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.gumbel.html#$", "dispname": "-"}, {"name": "r30b32598df4a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.negative_binomial.html#$", "dispname": "-"}, {"name": "r30b32598df4a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.negative_binomial.html#$", "dispname": "-"}, {"name": "r312276d80bfa-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/mt19937.html#$", "dispname": "-"}, {"name": "r312276d80bfa-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/mt19937.html#$", "dispname": "-"}, {"name": "r317c588351f3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.sinc.html#$", "dispname": "-"}, {"name": "r317c588351f3-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.sinc.html#$", "dispname": "-"}, {"name": "r32b5162c4983-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.chisquare.html#$", "dispname": "-"}, {"name": "r3885a82d852c-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.rayleigh.html#$", "dispname": "-"}, {"name": "r3885a82d852c-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.rayleigh.html#$", "dispname": "-"}, {"name": "r3973533a530a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.pareto.html#$", "dispname": "-"}, {"name": "r3973533a530a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.pareto.html#$", "dispname": "-"}, {"name": "r3973533a530a-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.pareto.html#$", "dispname": "-"}, {"name": "r3973533a530a-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.pareto.html#$", "dispname": "-"}, {"name": "r3a7a5a2c0d2a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bartlett.html#$", "dispname": "-"}, {"name": "r3a7a5a2c0d2a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bartlett.html#$", "dispname": "-"}, {"name": "r3a7a5a2c0d2a-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bartlett.html#$", "dispname": "-"}, {"name": "r3a7a5a2c0d2a-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bartlett.html#$", "dispname": "-"}, {"name": "r3a7a5a2c0d2a-5", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bartlett.html#$", "dispname": "-"}, {"name": "r3cbd6af2d0d3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.exponential.html#$", "dispname": "-"}, {"name": "r3cbd6af2d0d3-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.exponential.html#$", "dispname": "-"}, {"name": "r3cbd6af2d0d3-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.exponential.html#$", "dispname": "-"}, {"name": "r3d00038c3802-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.laplace.html#$", "dispname": "-"}, {"name": "r3d00038c3802-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.laplace.html#$", "dispname": "-"}, {"name": "r3d00038c3802-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.laplace.html#$", "dispname": "-"}, {"name": "r3d00038c3802-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.laplace.html#$", "dispname": "-"}, {"name": "r3f369196fea0-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arctanh.html#$", "dispname": "-"}, {"name": "r3f369196fea0-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arctanh.html#$", "dispname": "-"}, {"name": "r3f3efff98d00-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.polynomials.chebyshev.html#$", "dispname": "-"}, {"name": "r40f8e2ad755a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/philox.html#$", "dispname": "-"}, {"name": "r4338a4b3d731-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.pareto.html#$", "dispname": "-"}, {"name": "r4338a4b3d731-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.pareto.html#$", "dispname": "-"}, {"name": "r4338a4b3d731-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.pareto.html#$", "dispname": "-"}, {"name": "r4338a4b3d731-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.pareto.html#$", "dispname": "-"}, {"name": "r444213de77d2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.laplace.html#$", "dispname": "-"}, {"name": "r444213de77d2-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.laplace.html#$", "dispname": "-"}, {"name": "r444213de77d2-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.laplace.html#$", "dispname": "-"}, {"name": "r444213de77d2-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.laplace.html#$", "dispname": "-"}, {"name": "r451bed364cc6-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.multi_dot.html#$", "dispname": "-"}, {"name": "r451bed364cc6-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.multi_dot.html#$", "dispname": "-"}, {"name": "r4523891264fe-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/pcg64.html#$", "dispname": "-"}, {"name": "r4523891264fe-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/pcg64.html#$", "dispname": "-"}, {"name": "r45cb63e385dd-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.ma.polyfit.html#$", "dispname": "-"}, {"name": "r45cb63e385dd-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.ma.polyfit.html#$", "dispname": "-"}, {"name": "r4687f22d1dc9-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.genfromtxt.html#$", "dispname": "-"}, {"name": "r46c0cf6209a3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagfit.html#$", "dispname": "-"}, {"name": "r499d2c9e74c3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.f.html#$", "dispname": "-"}, {"name": "r499d2c9e74c3-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.f.html#$", "dispname": "-"}, {"name": "r4aaa46c4947a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html#$", "dispname": "-"}, {"name": "r4aaa46c4947a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html#$", "dispname": "-"}, {"name": "r4aaa46c4947a-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html#$", "dispname": "-"}, {"name": "r4aaa46c4947a-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html#$", "dispname": "-"}, {"name": "r4aaa46c4947a-5", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html#$", "dispname": "-"}, {"name": "r4b7a1f944cc4-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.lognormal.html#$", "dispname": "-"}, {"name": "r4b7a1f944cc4-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.lognormal.html#$", "dispname": "-"}, {"name": "r4cab4292821f-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.seterr.html#$", "dispname": "-"}, {"name": "r4da0e147c95f-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.multivariate_normal.html#$", "dispname": "-"}, {"name": "r4da0e147c95f-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.multivariate_normal.html#$", "dispname": "-"}, {"name": "r4deec93ed654-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.exp.html#$", "dispname": "-"}, {"name": "r4deec93ed654-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.exp.html#$", "dispname": "-"}, {"name": "r4fdcbec07432-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.integers.html#$", "dispname": "-"}, {"name": "r50352647a6aa-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/sfc64.html#$", "dispname": "-"}, {"name": "r50352647a6aa-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/sfc64.html#$", "dispname": "-"}, {"name": "r542a2ef1fe0a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.rayleigh.html#$", "dispname": "-"}, {"name": "r542a2ef1fe0a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.rayleigh.html#$", "dispname": "-"}, {"name": "r54ca3e12e14a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logistic.html#$", "dispname": "-"}, {"name": "r54ca3e12e14a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logistic.html#$", "dispname": "-"}, {"name": "r54ca3e12e14a-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logistic.html#$", "dispname": "-"}, {"name": "r58a3e8c3cef0-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.power.html#$", "dispname": "-"}, {"name": "r58a3e8c3cef0-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.power.html#$", "dispname": "-"}, {"name": "r5bcb1f1fbbed-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.weibull.html#$", "dispname": "-"}, {"name": "r5bcb1f1fbbed-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.weibull.html#$", "dispname": "-"}, {"name": "r5bcb1f1fbbed-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.weibull.html#$", "dispname": "-"}, {"name": "r5cc1f1f25381-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.vectorize.html#$", "dispname": "-"}, {"name": "r611900c44d60-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.cond.html#$", "dispname": "-"}, {"name": "r62552758bfb0-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hamming.html#$", "dispname": "-"}, {"name": "r62552758bfb0-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hamming.html#$", "dispname": "-"}, {"name": "r62552758bfb0-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hamming.html#$", "dispname": "-"}, {"name": "r62552758bfb0-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hamming.html#$", "dispname": "-"}, {"name": "r63d947a46547-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.acosh.html#$", "dispname": "-"}, {"name": "r63d947a46547-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.acosh.html#$", "dispname": "-"}, {"name": "r653e926a4c5a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.poisson.html#$", "dispname": "-"}, {"name": "r653e926a4c5a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.poisson.html#$", "dispname": "-"}, {"name": "r66e8bd10eee2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.triangular.html#$", "dispname": "-"}, {"name": "r672d4d5b6143-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.savetxt.html#$", "dispname": "-"}, {"name": "r688e4aa3bfc3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.hypergeometric.html#$", "dispname": "-"}, {"name": "r688e4aa3bfc3-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.hypergeometric.html#$", "dispname": "-"}, {"name": "r688e4aa3bfc3-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.hypergeometric.html#$", "dispname": "-"}, {"name": "r688e4aa3bfc3-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.hypergeometric.html#$", "dispname": "-"}, {"name": "r6c241f843c17-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.weibull.html#$", "dispname": "-"}, {"name": "r6c241f843c17-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.weibull.html#$", "dispname": "-"}, {"name": "r6c241f843c17-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.weibull.html#$", "dispname": "-"}, {"name": "r6c2ffae921d1-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.poly.html#$", "dispname": "-"}, {"name": "r6c2ffae921d1-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.poly.html#$", "dispname": "-"}, {"name": "r6e7c88a9f70a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.rayleigh.html#$", "dispname": "-"}, {"name": "r6e7c88a9f70a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.rayleigh.html#$", "dispname": "-"}, {"name": "r6f77a8eed655-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.poisson.html#$", "dispname": "-"}, {"name": "r6f77a8eed655-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.poisson.html#$", "dispname": "-"}, {"name": "r7151051188ce-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.noncentral_f.html#$", "dispname": "-"}, {"name": "r7151051188ce-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.noncentral_f.html#$", "dispname": "-"}, {"name": "r718a42a407dc-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.heaviside.html#$", "dispname": "-"}, {"name": "r73135c1078a9-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.multivariate_normal.html#$", "dispname": "-"}, {"name": "r73135c1078a9-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.multivariate_normal.html#$", "dispname": "-"}, {"name": "r73eacd397847-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arctan2.html#$", "dispname": "-"}, {"name": "r755c9bae090e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_t.html#$", "dispname": "-"}, {"name": "r755c9bae090e-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_t.html#$", "dispname": "-"}, {"name": "r769dcde255da-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logistic.html#$", "dispname": "-"}, {"name": "r769dcde255da-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logistic.html#$", "dispname": "-"}, {"name": "r769dcde255da-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logistic.html#$", "dispname": "-"}, {"name": "r76ce6cbc12b1-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logseries.html#$", "dispname": "-"}, {"name": "r76ce6cbc12b1-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logseries.html#$", "dispname": "-"}, {"name": "r76ce6cbc12b1-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logseries.html#$", "dispname": "-"}, {"name": "r76ce6cbc12b1-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logseries.html#$", "dispname": "-"}, {"name": "r780462472f1b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.lognormal.html#$", "dispname": "-"}, {"name": "r780462472f1b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.lognormal.html#$", "dispname": "-"}, {"name": "r7c7d9a9b03c9-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.dirichlet.html#$", "dispname": "-"}, {"name": "r7c7d9a9b03c9-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.dirichlet.html#$", "dispname": "-"}, {"name": "r7ea57f32f5c1-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.vonmises.html#$", "dispname": "-"}, {"name": "r7ea57f32f5c1-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.vonmises.html#$", "dispname": "-"}, {"name": "r7ed4fe3307e2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.weibull.html#$", "dispname": "-"}, {"name": "r7ed4fe3307e2-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.weibull.html#$", "dispname": "-"}, {"name": "r7ed4fe3307e2-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.weibull.html#$", "dispname": "-"}, {"name": "r863504129d6e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.ma.outer.html#$", "dispname": "-"}, {"name": "r8738ed783818-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logseries.html#$", "dispname": "-"}, {"name": "r8738ed783818-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logseries.html#$", "dispname": "-"}, {"name": "r8738ed783818-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logseries.html#$", "dispname": "-"}, {"name": "r8738ed783818-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logseries.html#$", "dispname": "-"}, {"name": "r883d7cf8d44e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.hypergeometric.html#$", "dispname": "-"}, {"name": "r883d7cf8d44e-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.hypergeometric.html#$", "dispname": "-"}, {"name": "r883d7cf8d44e-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.hypergeometric.html#$", "dispname": "-"}, {"name": "r8913bc1f0021-ct", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.fft.fft.html#$", "dispname": "-"}, {"name": "r89f5270d198b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_t.html#$", "dispname": "-"}, {"name": "r89f5270d198b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_t.html#$", "dispname": "-"}, {"name": "r8dad45cadf16-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_cauchy.html#$", "dispname": "-"}, {"name": "r8dad45cadf16-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_cauchy.html#$", "dispname": "-"}, {"name": "r8dad45cadf16-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_cauchy.html#$", "dispname": "-"}, {"name": "r92eba0d55cbe-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polyfit.html#$", "dispname": "-"}, {"name": "r92eba0d55cbe-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polyfit.html#$", "dispname": "-"}, {"name": "r93153ef3fabc-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.poisson.html#$", "dispname": "-"}, {"name": "r93153ef3fabc-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.poisson.html#$", "dispname": "-"}, {"name": "r95849f33d2b1-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.convolve.html#$", "dispname": "-"}, {"name": "r95b2dde8a935-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.chisquare.html#$", "dispname": "-"}, {"name": "r962252997619-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.binary_repr.html#$", "dispname": "-"}, {"name": "r98059c66ae5c-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.geometric.html#$", "dispname": "-"}, {"name": "r9ac85fd08ec1-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.binomial.html#$", "dispname": "-"}, {"name": "r9ac85fd08ec1-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.binomial.html#$", "dispname": "-"}, {"name": "r9ac85fd08ec1-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.binomial.html#$", "dispname": "-"}, {"name": "r9ac85fd08ec1-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.binomial.html#$", "dispname": "-"}, {"name": "r9ac85fd08ec1-5", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.binomial.html#$", "dispname": "-"}, {"name": "r9b454188a39e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.negative_binomial.html#$", "dispname": "-"}, {"name": "r9b454188a39e-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.negative_binomial.html#$", "dispname": "-"}, {"name": "ra12ae25364fc-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_gamma.html#$", "dispname": "-"}, {"name": "ra12ae25364fc-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_gamma.html#$", "dispname": "-"}, {"name": "ra2d2bdda2b24-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.gradient.html#$", "dispname": "-"}, {"name": "ra2d2bdda2b24-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.gradient.html#$", "dispname": "-"}, {"name": "ra2d2bdda2b24-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.gradient.html#$", "dispname": "-"}, {"name": "ra2e838c5ea87-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.normal.html#$", "dispname": "-"}, {"name": "ra2e838c5ea87-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.normal.html#$", "dispname": "-"}, {"name": "ra33a5b77f548-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.zipf.html#$", "dispname": "-"}, {"name": "ra35a579c0a2d-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.wald.html#$", "dispname": "-"}, {"name": "ra35a579c0a2d-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.wald.html#$", "dispname": "-"}, {"name": "ra35a579c0a2d-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.wald.html#$", "dispname": "-"}, {"name": "ra43e662d710b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.matrix_rank.html#$", "dispname": "-"}, {"name": "ra43e662d710b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.matrix_rank.html#$", "dispname": "-"}, {"name": "ra4860a90e397-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.noncentral_chisquare.html#$", "dispname": "-"}, {"name": "ra6e7851edd91-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.gumbel.html#$", "dispname": "-"}, {"name": "ra6e7851edd91-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.gumbel.html#$", "dispname": "-"}, {"name": "ra77551488c27-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.gamma.html#$", "dispname": "-"}, {"name": "ra77551488c27-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.gamma.html#$", "dispname": "-"}, {"name": "rabc5c9a1e873-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.kaiser.html#$", "dispname": "-"}, {"name": "rabc5c9a1e873-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.kaiser.html#$", "dispname": "-"}, {"name": "rabc5c9a1e873-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.kaiser.html#$", "dispname": "-"}, {"name": "rac1c834adb66-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.norm.html#$", "dispname": "-"}, {"name": "rad26d0f7d970-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/pcg64dxsm.html#$", "dispname": "-"}, {"name": "rad26d0f7d970-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/pcg64dxsm.html#$", "dispname": "-"}, {"name": "random-bit-generators", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/index.html#$", "dispname": "Bit generators"}, {"name": "random-compatibility", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/compatibility.html#$", "dispname": "Compatibility policy"}, {"name": "random-quick-start", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/index.html#$", "dispname": "Quick start"}, {"name": "random_cython", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/extending.html#random-cython", "dispname": "Cython"}, {"name": "ravel", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "rb1ec5a35220a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_chisquare.html#$", "dispname": "-"}, {"name": "rb5c734d6c459-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bitwise_count.html#$", "dispname": "-"}, {"name": "rb5c734d6c459-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bitwise_count.html#$", "dispname": "-"}, {"name": "rb5c734d6c459-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bitwise_count.html#$", "dispname": "-"}, {"name": "rb6df7d096a5b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.wald.html#$", "dispname": "-"}, {"name": "rb6df7d096a5b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.wald.html#$", "dispname": "-"}, {"name": "rb6df7d096a5b-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.wald.html#$", "dispname": "-"}, {"name": "rb74de5df8c5e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_gamma.html#$", "dispname": "-"}, {"name": "rb74de5df8c5e-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_gamma.html#$", "dispname": "-"}, {"name": "rb7c952f3992e-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_t.html#$", "dispname": "-"}, {"name": "rb7c952f3992e-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_t.html#$", "dispname": "-"}, {"name": "rb83022192228-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermfit.html#$", "dispname": "-"}, {"name": "rb88503604af2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_f.html#$", "dispname": "-"}, {"name": "rb88503604af2-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_f.html#$", "dispname": "-"}, {"name": "rba3609d25bf2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.solve.html#$", "dispname": "-"}, {"name": "rba9e0e258624-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html#$", "dispname": "-"}, {"name": "rba9e0e258624-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html#$", "dispname": "-"}, {"name": "rba9e0e258624-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html#$", "dispname": "-"}, {"name": "rba9e0e258624-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html#$", "dispname": "-"}, {"name": "rba9e0e258624-5", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html#$", "dispname": "-"}, {"name": "rc008122b773c-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.power.html#$", "dispname": "-"}, {"name": "rc008122b773c-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.power.html#$", "dispname": "-"}, {"name": "rc338d9f74bfc-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.pareto.html#$", "dispname": "-"}, {"name": "rc338d9f74bfc-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.pareto.html#$", "dispname": "-"}, {"name": "rc338d9f74bfc-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.pareto.html#$", "dispname": "-"}, {"name": "rc338d9f74bfc-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.pareto.html#$", "dispname": "-"}, {"name": "rc3400d720244-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legfit.html#$", "dispname": "-"}, {"name": "rc3722e0c6f7a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.power.html#$", "dispname": "-"}, {"name": "rc3722e0c6f7a-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.power.html#$", "dispname": "-"}, {"name": "rc508f925e60b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.log.html#$", "dispname": "-"}, {"name": "rc508f925e60b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.log.html#$", "dispname": "-"}, {"name": "rc622f40167e5-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.vonmises.html#$", "dispname": "-"}, {"name": "rc622f40167e5-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.vonmises.html#$", "dispname": "-"}, {"name": "rc702e98a756a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.eigh.html#$", "dispname": "-"}, {"name": "rc7ef81b9dca3-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.gamma.html#$", "dispname": "-"}, {"name": "rc7ef81b9dca3-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.gamma.html#$", "dispname": "-"}, {"name": "rc8180d76515b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.jumped.html#$", "dispname": "-"}, {"name": "rc8180d76515b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.jumped.html#$", "dispname": "-"}, {"name": "rccd29a30f060-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logistic.html#$", "dispname": "-"}, {"name": "rccd29a30f060-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logistic.html#$", "dispname": "-"}, {"name": "rccd29a30f060-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logistic.html#$", "dispname": "-"}, {"name": "rcd8996c6c572-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arccosh.html#$", "dispname": "-"}, {"name": "rcd8996c6c572-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arccosh.html#$", "dispname": "-"}, {"name": "rceffa9d7cf46-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_cauchy.html#$", "dispname": "-"}, {"name": "rceffa9d7cf46-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_cauchy.html#$", "dispname": "-"}, {"name": "rceffa9d7cf46-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_cauchy.html#$", "dispname": "-"}, {"name": "rcfd3e98ffb09-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.exponential.html#$", "dispname": "-"}, {"name": "rcfd3e98ffb09-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.exponential.html#$", "dispname": "-"}, {"name": "rcfd3e98ffb09-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.exponential.html#$", "dispname": "-"}, {"name": "rd62dfb5ffa26-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.set_state.html#$", "dispname": "-"}, {"name": "rd663958e4897-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.correlate.html#$", "dispname": "-"}, {"name": "rd8967f61b44d-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hanning.html#$", "dispname": "-"}, {"name": "rd8967f61b44d-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hanning.html#$", "dispname": "-"}, {"name": "rd8967f61b44d-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hanning.html#$", "dispname": "-"}, {"name": "rd8967f61b44d-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.hanning.html#$", "dispname": "-"}, {"name": "rde927b304c4f-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.invert.html#$", "dispname": "-"}, {"name": "re01cd3f3acfe-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.quantile.html#$", "dispname": "-"}, {"name": "re21b1d0b0470-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.nanpercentile.html#$", "dispname": "-"}, {"name": "re3df8af29897-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.chisquare.html#$", "dispname": "-"}, {"name": "re3e5c8554f6d-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_chisquare.html#$", "dispname": "-"}, {"name": "re708645e50a8-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.vonmises.html#$", "dispname": "-"}, {"name": "re708645e50a8-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.vonmises.html#$", "dispname": "-"}, {"name": "re822a60d084a-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.bitwise_invert.html#$", "dispname": "-"}, {"name": "re85a9a53b4f0-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logseries.html#$", "dispname": "-"}, {"name": "re85a9a53b4f0-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logseries.html#$", "dispname": "-"}, {"name": "re85a9a53b4f0-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logseries.html#$", "dispname": "-"}, {"name": "re85a9a53b4f0-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.logseries.html#$", "dispname": "-"}, {"name": "re9eadf7a166b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.from_dlpack.html#$", "dispname": "-"}, {"name": "re9eadf7a166b-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.from_dlpack.html#$", "dispname": "-"}, {"name": "rebasing-on-main", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Rebasing on main"}, {"name": "rec505eafac9d-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.linalg.pinv.html#$", "dispname": "-"}, {"name": "recommend-secrets-randbits", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/index.html#$", "dispname": "-"}, {"name": "recommended-development-setup", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_environment.html#$", "dispname": "Recommended development setup"}, {"name": "record array", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-record-array", "dispname": "-"}, {"name": "recovering-from-mess-up", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Recovering from mess-ups"}, {"name": "redb98c78ab31-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_cauchy.html#$", "dispname": "-"}, {"name": "redb98c78ab31-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_cauchy.html#$", "dispname": "-"}, {"name": "redb98c78ab31-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_cauchy.html#$", "dispname": "-"}, {"name": "reference", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/index.html#$", "dispname": "NumPy reference"}, {"name": "reference/alignment", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/alignment.html", "dispname": "Memory alignment"}, {"name": "reference/array_api", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/array_api.html", "dispname": "Array API standard compatibility"}, {"name": "reference/arrays", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.html", "dispname": "Array objects"}, {"name": "reference/arrays.classes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.classes.html", "dispname": "Standard array subclasses"}, {"name": "reference/arrays.datetime", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.datetime.html", "dispname": "Datetimes and timedeltas"}, {"name": "reference/arrays.dtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.dtypes.html", "dispname": "Data type objects (dtype)"}, {"name": "reference/arrays.interface", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.interface.html", "dispname": "The array interface protocol"}, {"name": "reference/arrays.ndarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.ndarray.html", "dispname": "The N-dimensional array (ndarray)"}, {"name": "reference/arrays.nditer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.nditer.html", "dispname": "Iterating over arrays"}, {"name": "reference/arrays.nditer.cython", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.nditer.cython.html", "dispname": "Putting the inner loop in Cython"}, {"name": "reference/arrays.promotion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.promotion.html", "dispname": "Data type promotion in NumPy"}, {"name": "reference/arrays.scalars", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/arrays.scalars.html", "dispname": "Scalars"}, {"name": "reference/c-api/array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/array.html", "dispname": "Array API"}, {"name": "reference/c-api/config", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/config.html", "dispname": "System configuration"}, {"name": "reference/c-api/coremath", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/coremath.html", "dispname": "NumPy core math library"}, {"name": "reference/c-api/data_memory", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/data_memory.html", "dispname": "Memory management in NumPy"}, {"name": "reference/c-api/datetimes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/datetimes.html", "dispname": "Datetime API"}, {"name": "reference/c-api/deprecations", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/deprecations.html", "dispname": "C API deprecations"}, {"name": "reference/c-api/dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/dtype.html", "dispname": "Data type API"}, {"name": "reference/c-api/generalized-ufuncs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/generalized-ufuncs.html", "dispname": "Generalized universal function API"}, {"name": "reference/c-api/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/index.html", "dispname": "NumPy C-API"}, {"name": "reference/c-api/iterator", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/iterator.html", "dispname": "Array iterator API"}, {"name": "reference/c-api/strings", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/strings.html", "dispname": "NpyString API"}, {"name": "reference/c-api/types-and-structures", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/types-and-structures.html", "dispname": "Python types and C-structures"}, {"name": "reference/c-api/ufunc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/c-api/ufunc.html", "dispname": "ufunc API"}, {"name": "reference/constants", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/constants.html", "dispname": "Constants"}, {"name": "reference/distutils", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/distutils.html", "dispname": "Packaging (numpy.distutils)"}, {"name": "reference/distutils/misc_util", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/distutils/misc_util.html", "dispname": "distutils.misc_util"}, {"name": "reference/distutils_guide", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/distutils_guide.html", "dispname": "numpy.distutils user guide"}, {"name": "reference/distutils_status_migration", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/distutils_status_migration.html", "dispname": "Status of numpy.distutils and migration advice"}, {"name": "reference/generated/generated/numpy.lib.scimath.arccos", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.arccos.html", "dispname": "numpy.lib.scimath.arccos"}, {"name": "reference/generated/generated/numpy.lib.scimath.arcsin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.arcsin.html", "dispname": "numpy.lib.scimath.arcsin"}, {"name": "reference/generated/generated/numpy.lib.scimath.arctanh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.arctanh.html", "dispname": "numpy.lib.scimath.arctanh"}, {"name": "reference/generated/generated/numpy.lib.scimath.log", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.log.html", "dispname": "numpy.lib.scimath.log"}, {"name": "reference/generated/generated/numpy.lib.scimath.log10", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.log10.html", "dispname": "numpy.lib.scimath.log10"}, {"name": "reference/generated/generated/numpy.lib.scimath.log2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.log2.html", "dispname": "numpy.lib.scimath.log2"}, {"name": "reference/generated/generated/numpy.lib.scimath.logn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.logn.html", "dispname": "numpy.lib.scimath.logn"}, {"name": "reference/generated/generated/numpy.lib.scimath.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.power.html", "dispname": "numpy.lib.scimath.power"}, {"name": "reference/generated/generated/numpy.lib.scimath.sqrt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/generated/numpy.lib.scimath.sqrt.html", "dispname": "numpy.lib.scimath.sqrt"}, {"name": "reference/generated/numpy.__array_namespace_info__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.__array_namespace_info__.html", "dispname": "numpy.__array_namespace_info__"}, {"name": "reference/generated/numpy.__array_namespace_info__.capabilities", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.__array_namespace_info__.capabilities.html", "dispname": "numpy.__array_namespace_info__.capabilities"}, {"name": "reference/generated/numpy.__array_namespace_info__.default_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.__array_namespace_info__.default_device.html", "dispname": "numpy.__array_namespace_info__.default_device"}, {"name": "reference/generated/numpy.__array_namespace_info__.default_dtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.__array_namespace_info__.default_dtypes.html", "dispname": "numpy.__array_namespace_info__.default_dtypes"}, {"name": "reference/generated/numpy.__array_namespace_info__.devices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.__array_namespace_info__.devices.html", "dispname": "numpy.__array_namespace_info__.devices"}, {"name": "reference/generated/numpy.__array_namespace_info__.dtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.__array_namespace_info__.dtypes.html", "dispname": "numpy.__array_namespace_info__.dtypes"}, {"name": "reference/generated/numpy.absolute", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.absolute.html", "dispname": "numpy.absolute"}, {"name": "reference/generated/numpy.acos", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.acos.html", "dispname": "numpy.acos"}, {"name": "reference/generated/numpy.acosh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.acosh.html", "dispname": "numpy.acosh"}, {"name": "reference/generated/numpy.add", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.add.html", "dispname": "numpy.add"}, {"name": "reference/generated/numpy.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.all.html", "dispname": "numpy.all"}, {"name": "reference/generated/numpy.allclose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.allclose.html", "dispname": "numpy.allclose"}, {"name": "reference/generated/numpy.amax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.amax.html", "dispname": "numpy.amax"}, {"name": "reference/generated/numpy.amin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.amin.html", "dispname": "numpy.amin"}, {"name": "reference/generated/numpy.angle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.angle.html", "dispname": "numpy.angle"}, {"name": "reference/generated/numpy.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.any.html", "dispname": "numpy.any"}, {"name": "reference/generated/numpy.append", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.append.html", "dispname": "numpy.append"}, {"name": "reference/generated/numpy.apply_along_axis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.apply_along_axis.html", "dispname": "numpy.apply_along_axis"}, {"name": "reference/generated/numpy.apply_over_axes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.apply_over_axes.html", "dispname": "numpy.apply_over_axes"}, {"name": "reference/generated/numpy.arange", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arange.html", "dispname": "numpy.arange"}, {"name": "reference/generated/numpy.arccos", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arccos.html", "dispname": "numpy.arccos"}, {"name": "reference/generated/numpy.arccosh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arccosh.html", "dispname": "numpy.arccosh"}, {"name": "reference/generated/numpy.arcsin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arcsin.html", "dispname": "numpy.arcsin"}, {"name": "reference/generated/numpy.arcsinh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arcsinh.html", "dispname": "numpy.arcsinh"}, {"name": "reference/generated/numpy.arctan", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arctan.html", "dispname": "numpy.arctan"}, {"name": "reference/generated/numpy.arctan2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arctan2.html", "dispname": "numpy.arctan2"}, {"name": "reference/generated/numpy.arctanh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.arctanh.html", "dispname": "numpy.arctanh"}, {"name": "reference/generated/numpy.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.argmax.html", "dispname": "numpy.argmax"}, {"name": "reference/generated/numpy.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.argmin.html", "dispname": "numpy.argmin"}, {"name": "reference/generated/numpy.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.argpartition.html", "dispname": "numpy.argpartition"}, {"name": "reference/generated/numpy.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.argsort.html", "dispname": "numpy.argsort"}, {"name": "reference/generated/numpy.argwhere", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.argwhere.html", "dispname": "numpy.argwhere"}, {"name": "reference/generated/numpy.around", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.around.html", "dispname": "numpy.around"}, {"name": "reference/generated/numpy.array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array.html", "dispname": "numpy.array"}, {"name": "reference/generated/numpy.array2string", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array2string.html", "dispname": "numpy.array2string"}, {"name": "reference/generated/numpy.array_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array_equal.html", "dispname": "numpy.array_equal"}, {"name": "reference/generated/numpy.array_equiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array_equiv.html", "dispname": "numpy.array_equiv"}, {"name": "reference/generated/numpy.array_repr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array_repr.html", "dispname": "numpy.array_repr"}, {"name": "reference/generated/numpy.array_split", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array_split.html", "dispname": "numpy.array_split"}, {"name": "reference/generated/numpy.array_str", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.array_str.html", "dispname": "numpy.array_str"}, {"name": "reference/generated/numpy.asanyarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asanyarray.html", "dispname": "numpy.asanyarray"}, {"name": "reference/generated/numpy.asarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asarray.html", "dispname": "numpy.asarray"}, {"name": "reference/generated/numpy.asarray_chkfinite", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asarray_chkfinite.html", "dispname": "numpy.asarray_chkfinite"}, {"name": "reference/generated/numpy.ascontiguousarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ascontiguousarray.html", "dispname": "numpy.ascontiguousarray"}, {"name": "reference/generated/numpy.asfortranarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asfortranarray.html", "dispname": "numpy.asfortranarray"}, {"name": "reference/generated/numpy.asin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asin.html", "dispname": "numpy.asin"}, {"name": "reference/generated/numpy.asinh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asinh.html", "dispname": "numpy.asinh"}, {"name": "reference/generated/numpy.asmatrix", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.asmatrix.html", "dispname": "numpy.asmatrix"}, {"name": "reference/generated/numpy.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.astype.html", "dispname": "numpy.astype"}, {"name": "reference/generated/numpy.atan", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.atan.html", "dispname": "numpy.atan"}, {"name": "reference/generated/numpy.atan2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.atan2.html", "dispname": "numpy.atan2"}, {"name": "reference/generated/numpy.atanh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.atanh.html", "dispname": "numpy.atanh"}, {"name": "reference/generated/numpy.atleast_1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.atleast_1d.html", "dispname": "numpy.atleast_1d"}, {"name": "reference/generated/numpy.atleast_2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.atleast_2d.html", "dispname": "numpy.atleast_2d"}, {"name": "reference/generated/numpy.atleast_3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.atleast_3d.html", "dispname": "numpy.atleast_3d"}, {"name": "reference/generated/numpy.average", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.average.html", "dispname": "numpy.average"}, {"name": "reference/generated/numpy.bartlett", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bartlett.html", "dispname": "numpy.bartlett"}, {"name": "reference/generated/numpy.base_repr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.base_repr.html", "dispname": "numpy.base_repr"}, {"name": "reference/generated/numpy.binary_repr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.binary_repr.html", "dispname": "numpy.binary_repr"}, {"name": "reference/generated/numpy.bincount", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bincount.html", "dispname": "numpy.bincount"}, {"name": "reference/generated/numpy.bitwise_and", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_and.html", "dispname": "numpy.bitwise_and"}, {"name": "reference/generated/numpy.bitwise_count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_count.html", "dispname": "numpy.bitwise_count"}, {"name": "reference/generated/numpy.bitwise_invert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_invert.html", "dispname": "numpy.bitwise_invert"}, {"name": "reference/generated/numpy.bitwise_left_shift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_left_shift.html", "dispname": "numpy.bitwise_left_shift"}, {"name": "reference/generated/numpy.bitwise_or", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_or.html", "dispname": "numpy.bitwise_or"}, {"name": "reference/generated/numpy.bitwise_right_shift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_right_shift.html", "dispname": "numpy.bitwise_right_shift"}, {"name": "reference/generated/numpy.bitwise_xor", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bitwise_xor.html", "dispname": "numpy.bitwise_xor"}, {"name": "reference/generated/numpy.blackman", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.blackman.html", "dispname": "numpy.blackman"}, {"name": "reference/generated/numpy.block", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.block.html", "dispname": "numpy.block"}, {"name": "reference/generated/numpy.bmat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.bmat.html", "dispname": "numpy.bmat"}, {"name": "reference/generated/numpy.broadcast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.html", "dispname": "numpy.broadcast"}, {"name": "reference/generated/numpy.broadcast.index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.index.html", "dispname": "numpy.broadcast.index"}, {"name": "reference/generated/numpy.broadcast.iters", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.iters.html", "dispname": "numpy.broadcast.iters"}, {"name": "reference/generated/numpy.broadcast.nd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.nd.html", "dispname": "numpy.broadcast.nd"}, {"name": "reference/generated/numpy.broadcast.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.ndim.html", "dispname": "numpy.broadcast.ndim"}, {"name": "reference/generated/numpy.broadcast.numiter", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.numiter.html", "dispname": "numpy.broadcast.numiter"}, {"name": "reference/generated/numpy.broadcast.reset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.reset.html", "dispname": "numpy.broadcast.reset"}, {"name": "reference/generated/numpy.broadcast.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.shape.html", "dispname": "numpy.broadcast.shape"}, {"name": "reference/generated/numpy.broadcast.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast.size.html", "dispname": "numpy.broadcast.size"}, {"name": "reference/generated/numpy.broadcast_arrays", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast_arrays.html", "dispname": "numpy.broadcast_arrays"}, {"name": "reference/generated/numpy.broadcast_shapes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast_shapes.html", "dispname": "numpy.broadcast_shapes"}, {"name": "reference/generated/numpy.broadcast_to", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.broadcast_to.html", "dispname": "numpy.broadcast_to"}, {"name": "reference/generated/numpy.busday_count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.busday_count.html", "dispname": "numpy.busday_count"}, {"name": "reference/generated/numpy.busday_offset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.busday_offset.html", "dispname": "numpy.busday_offset"}, {"name": "reference/generated/numpy.busdaycalendar", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.busdaycalendar.html", "dispname": "numpy.busdaycalendar"}, {"name": "reference/generated/numpy.busdaycalendar.holidays", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.busdaycalendar.holidays.html", "dispname": "numpy.busdaycalendar.holidays"}, {"name": "reference/generated/numpy.busdaycalendar.weekmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.busdaycalendar.weekmask.html", "dispname": "numpy.busdaycalendar.weekmask"}, {"name": "reference/generated/numpy.c_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.c_.html", "dispname": "numpy.c_"}, {"name": "reference/generated/numpy.can_cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.can_cast.html", "dispname": "numpy.can_cast"}, {"name": "reference/generated/numpy.cbrt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cbrt.html", "dispname": "numpy.cbrt"}, {"name": "reference/generated/numpy.ceil", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ceil.html", "dispname": "numpy.ceil"}, {"name": "reference/generated/numpy.char.add", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.add.html", "dispname": "numpy.char.add"}, {"name": "reference/generated/numpy.char.array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.array.html", "dispname": "numpy.char.array"}, {"name": "reference/generated/numpy.char.asarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.asarray.html", "dispname": "numpy.char.asarray"}, {"name": "reference/generated/numpy.char.capitalize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.capitalize.html", "dispname": "numpy.char.capitalize"}, {"name": "reference/generated/numpy.char.center", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.center.html", "dispname": "numpy.char.center"}, {"name": "reference/generated/numpy.char.chararray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.html", "dispname": "numpy.char.chararray"}, {"name": "reference/generated/numpy.char.chararray.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.T.html", "dispname": "numpy.char.chararray.T"}, {"name": "reference/generated/numpy.char.chararray.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.all.html", "dispname": "numpy.char.chararray.all"}, {"name": "reference/generated/numpy.char.chararray.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.any.html", "dispname": "numpy.char.chararray.any"}, {"name": "reference/generated/numpy.char.chararray.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.argmax.html", "dispname": "numpy.char.chararray.argmax"}, {"name": "reference/generated/numpy.char.chararray.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.argmin.html", "dispname": "numpy.char.chararray.argmin"}, {"name": "reference/generated/numpy.char.chararray.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.argpartition.html", "dispname": "numpy.char.chararray.argpartition"}, {"name": "reference/generated/numpy.char.chararray.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.argsort.html", "dispname": "numpy.char.chararray.argsort"}, {"name": "reference/generated/numpy.char.chararray.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.astype.html", "dispname": "numpy.char.chararray.astype"}, {"name": "reference/generated/numpy.char.chararray.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.base.html", "dispname": "numpy.char.chararray.base"}, {"name": "reference/generated/numpy.char.chararray.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.byteswap.html", "dispname": "numpy.char.chararray.byteswap"}, {"name": "reference/generated/numpy.char.chararray.capitalize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.capitalize.html", "dispname": "numpy.char.chararray.capitalize"}, {"name": "reference/generated/numpy.char.chararray.center", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.center.html", "dispname": "numpy.char.chararray.center"}, {"name": "reference/generated/numpy.char.chararray.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.choose.html", "dispname": "numpy.char.chararray.choose"}, {"name": "reference/generated/numpy.char.chararray.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.clip.html", "dispname": "numpy.char.chararray.clip"}, {"name": "reference/generated/numpy.char.chararray.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.compress.html", "dispname": "numpy.char.chararray.compress"}, {"name": "reference/generated/numpy.char.chararray.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.conj.html", "dispname": "numpy.char.chararray.conj"}, {"name": "reference/generated/numpy.char.chararray.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.conjugate.html", "dispname": "numpy.char.chararray.conjugate"}, {"name": "reference/generated/numpy.char.chararray.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.copy.html", "dispname": "numpy.char.chararray.copy"}, {"name": "reference/generated/numpy.char.chararray.count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.count.html", "dispname": "numpy.char.chararray.count"}, {"name": "reference/generated/numpy.char.chararray.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.ctypes.html", "dispname": "numpy.char.chararray.ctypes"}, {"name": "reference/generated/numpy.char.chararray.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.cumprod.html", "dispname": "numpy.char.chararray.cumprod"}, {"name": "reference/generated/numpy.char.chararray.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.cumsum.html", "dispname": "numpy.char.chararray.cumsum"}, {"name": "reference/generated/numpy.char.chararray.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.data.html", "dispname": "numpy.char.chararray.data"}, {"name": "reference/generated/numpy.char.chararray.decode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.decode.html", "dispname": "numpy.char.chararray.decode"}, {"name": "reference/generated/numpy.char.chararray.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.device.html", "dispname": "numpy.char.chararray.device"}, {"name": "reference/generated/numpy.char.chararray.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.diagonal.html", "dispname": "numpy.char.chararray.diagonal"}, {"name": "reference/generated/numpy.char.chararray.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.dot.html", "dispname": "numpy.char.chararray.dot"}, {"name": "reference/generated/numpy.char.chararray.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.dtype.html", "dispname": "numpy.char.chararray.dtype"}, {"name": "reference/generated/numpy.char.chararray.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.dump.html", "dispname": "numpy.char.chararray.dump"}, {"name": "reference/generated/numpy.char.chararray.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.dumps.html", "dispname": "numpy.char.chararray.dumps"}, {"name": "reference/generated/numpy.char.chararray.encode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.encode.html", "dispname": "numpy.char.chararray.encode"}, {"name": "reference/generated/numpy.char.chararray.endswith", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.endswith.html", "dispname": "numpy.char.chararray.endswith"}, {"name": "reference/generated/numpy.char.chararray.expandtabs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.expandtabs.html", "dispname": "numpy.char.chararray.expandtabs"}, {"name": "reference/generated/numpy.char.chararray.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.fill.html", "dispname": "numpy.char.chararray.fill"}, {"name": "reference/generated/numpy.char.chararray.find", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.find.html", "dispname": "numpy.char.chararray.find"}, {"name": "reference/generated/numpy.char.chararray.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.flags.html", "dispname": "numpy.char.chararray.flags"}, {"name": "reference/generated/numpy.char.chararray.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.flat.html", "dispname": "numpy.char.chararray.flat"}, {"name": "reference/generated/numpy.char.chararray.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.flatten.html", "dispname": "numpy.char.chararray.flatten"}, {"name": "reference/generated/numpy.char.chararray.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.getfield.html", "dispname": "numpy.char.chararray.getfield"}, {"name": "reference/generated/numpy.char.chararray.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.imag.html", "dispname": "numpy.char.chararray.imag"}, {"name": "reference/generated/numpy.char.chararray.index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.index.html", "dispname": "numpy.char.chararray.index"}, {"name": "reference/generated/numpy.char.chararray.isalnum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isalnum.html", "dispname": "numpy.char.chararray.isalnum"}, {"name": "reference/generated/numpy.char.chararray.isalpha", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isalpha.html", "dispname": "numpy.char.chararray.isalpha"}, {"name": "reference/generated/numpy.char.chararray.isdecimal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isdecimal.html", "dispname": "numpy.char.chararray.isdecimal"}, {"name": "reference/generated/numpy.char.chararray.isdigit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isdigit.html", "dispname": "numpy.char.chararray.isdigit"}, {"name": "reference/generated/numpy.char.chararray.islower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.islower.html", "dispname": "numpy.char.chararray.islower"}, {"name": "reference/generated/numpy.char.chararray.isnumeric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isnumeric.html", "dispname": "numpy.char.chararray.isnumeric"}, {"name": "reference/generated/numpy.char.chararray.isspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isspace.html", "dispname": "numpy.char.chararray.isspace"}, {"name": "reference/generated/numpy.char.chararray.istitle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.istitle.html", "dispname": "numpy.char.chararray.istitle"}, {"name": "reference/generated/numpy.char.chararray.isupper", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.isupper.html", "dispname": "numpy.char.chararray.isupper"}, {"name": "reference/generated/numpy.char.chararray.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.item.html", "dispname": "numpy.char.chararray.item"}, {"name": "reference/generated/numpy.char.chararray.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.itemset.html", "dispname": "numpy.char.chararray.itemset"}, {"name": "reference/generated/numpy.char.chararray.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.itemsize.html", "dispname": "numpy.char.chararray.itemsize"}, {"name": "reference/generated/numpy.char.chararray.join", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.join.html", "dispname": "numpy.char.chararray.join"}, {"name": "reference/generated/numpy.char.chararray.ljust", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.ljust.html", "dispname": "numpy.char.chararray.ljust"}, {"name": "reference/generated/numpy.char.chararray.lower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.lower.html", "dispname": "numpy.char.chararray.lower"}, {"name": "reference/generated/numpy.char.chararray.lstrip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.lstrip.html", "dispname": "numpy.char.chararray.lstrip"}, {"name": "reference/generated/numpy.char.chararray.mT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.mT.html", "dispname": "numpy.char.chararray.mT"}, {"name": "reference/generated/numpy.char.chararray.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.max.html", "dispname": "numpy.char.chararray.max"}, {"name": "reference/generated/numpy.char.chararray.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.mean.html", "dispname": "numpy.char.chararray.mean"}, {"name": "reference/generated/numpy.char.chararray.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.min.html", "dispname": "numpy.char.chararray.min"}, {"name": "reference/generated/numpy.char.chararray.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.nbytes.html", "dispname": "numpy.char.chararray.nbytes"}, {"name": "reference/generated/numpy.char.chararray.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.ndim.html", "dispname": "numpy.char.chararray.ndim"}, {"name": "reference/generated/numpy.char.chararray.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.newbyteorder.html", "dispname": "numpy.char.chararray.newbyteorder"}, {"name": "reference/generated/numpy.char.chararray.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.nonzero.html", "dispname": "numpy.char.chararray.nonzero"}, {"name": "reference/generated/numpy.char.chararray.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.partition.html", "dispname": "numpy.char.chararray.partition"}, {"name": "reference/generated/numpy.char.chararray.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.prod.html", "dispname": "numpy.char.chararray.prod"}, {"name": "reference/generated/numpy.char.chararray.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.ptp.html", "dispname": "numpy.char.chararray.ptp"}, {"name": "reference/generated/numpy.char.chararray.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.put.html", "dispname": "numpy.char.chararray.put"}, {"name": "reference/generated/numpy.char.chararray.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.ravel.html", "dispname": "numpy.char.chararray.ravel"}, {"name": "reference/generated/numpy.char.chararray.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.real.html", "dispname": "numpy.char.chararray.real"}, {"name": "reference/generated/numpy.char.chararray.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.repeat.html", "dispname": "numpy.char.chararray.repeat"}, {"name": "reference/generated/numpy.char.chararray.replace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.replace.html", "dispname": "numpy.char.chararray.replace"}, {"name": "reference/generated/numpy.char.chararray.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.reshape.html", "dispname": "numpy.char.chararray.reshape"}, {"name": "reference/generated/numpy.char.chararray.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.resize.html", "dispname": "numpy.char.chararray.resize"}, {"name": "reference/generated/numpy.char.chararray.rfind", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.rfind.html", "dispname": "numpy.char.chararray.rfind"}, {"name": "reference/generated/numpy.char.chararray.rindex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.rindex.html", "dispname": "numpy.char.chararray.rindex"}, {"name": "reference/generated/numpy.char.chararray.rjust", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.rjust.html", "dispname": "numpy.char.chararray.rjust"}, {"name": "reference/generated/numpy.char.chararray.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.round.html", "dispname": "numpy.char.chararray.round"}, {"name": "reference/generated/numpy.char.chararray.rpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.rpartition.html", "dispname": "numpy.char.chararray.rpartition"}, {"name": "reference/generated/numpy.char.chararray.rsplit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.rsplit.html", "dispname": "numpy.char.chararray.rsplit"}, {"name": "reference/generated/numpy.char.chararray.rstrip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.rstrip.html", "dispname": "numpy.char.chararray.rstrip"}, {"name": "reference/generated/numpy.char.chararray.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.searchsorted.html", "dispname": "numpy.char.chararray.searchsorted"}, {"name": "reference/generated/numpy.char.chararray.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.setfield.html", "dispname": "numpy.char.chararray.setfield"}, {"name": "reference/generated/numpy.char.chararray.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.setflags.html", "dispname": "numpy.char.chararray.setflags"}, {"name": "reference/generated/numpy.char.chararray.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.shape.html", "dispname": "numpy.char.chararray.shape"}, {"name": "reference/generated/numpy.char.chararray.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.size.html", "dispname": "numpy.char.chararray.size"}, {"name": "reference/generated/numpy.char.chararray.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.sort.html", "dispname": "numpy.char.chararray.sort"}, {"name": "reference/generated/numpy.char.chararray.split", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.split.html", "dispname": "numpy.char.chararray.split"}, {"name": "reference/generated/numpy.char.chararray.splitlines", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.splitlines.html", "dispname": "numpy.char.chararray.splitlines"}, {"name": "reference/generated/numpy.char.chararray.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.squeeze.html", "dispname": "numpy.char.chararray.squeeze"}, {"name": "reference/generated/numpy.char.chararray.startswith", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.startswith.html", "dispname": "numpy.char.chararray.startswith"}, {"name": "reference/generated/numpy.char.chararray.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.std.html", "dispname": "numpy.char.chararray.std"}, {"name": "reference/generated/numpy.char.chararray.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.strides.html", "dispname": "numpy.char.chararray.strides"}, {"name": "reference/generated/numpy.char.chararray.strip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.strip.html", "dispname": "numpy.char.chararray.strip"}, {"name": "reference/generated/numpy.char.chararray.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.sum.html", "dispname": "numpy.char.chararray.sum"}, {"name": "reference/generated/numpy.char.chararray.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.swapaxes.html", "dispname": "numpy.char.chararray.swapaxes"}, {"name": "reference/generated/numpy.char.chararray.swapcase", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.swapcase.html", "dispname": "numpy.char.chararray.swapcase"}, {"name": "reference/generated/numpy.char.chararray.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.take.html", "dispname": "numpy.char.chararray.take"}, {"name": "reference/generated/numpy.char.chararray.title", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.title.html", "dispname": "numpy.char.chararray.title"}, {"name": "reference/generated/numpy.char.chararray.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.to_device.html", "dispname": "numpy.char.chararray.to_device"}, {"name": "reference/generated/numpy.char.chararray.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.tobytes.html", "dispname": "numpy.char.chararray.tobytes"}, {"name": "reference/generated/numpy.char.chararray.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.tofile.html", "dispname": "numpy.char.chararray.tofile"}, {"name": "reference/generated/numpy.char.chararray.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.tolist.html", "dispname": "numpy.char.chararray.tolist"}, {"name": "reference/generated/numpy.char.chararray.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.tostring.html", "dispname": "numpy.char.chararray.tostring"}, {"name": "reference/generated/numpy.char.chararray.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.trace.html", "dispname": "numpy.char.chararray.trace"}, {"name": "reference/generated/numpy.char.chararray.translate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.translate.html", "dispname": "numpy.char.chararray.translate"}, {"name": "reference/generated/numpy.char.chararray.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.transpose.html", "dispname": "numpy.char.chararray.transpose"}, {"name": "reference/generated/numpy.char.chararray.upper", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.upper.html", "dispname": "numpy.char.chararray.upper"}, {"name": "reference/generated/numpy.char.chararray.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.var.html", "dispname": "numpy.char.chararray.var"}, {"name": "reference/generated/numpy.char.chararray.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.view.html", "dispname": "numpy.char.chararray.view"}, {"name": "reference/generated/numpy.char.chararray.zfill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.chararray.zfill.html", "dispname": "numpy.char.chararray.zfill"}, {"name": "reference/generated/numpy.char.compare_chararrays", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.compare_chararrays.html", "dispname": "numpy.char.compare_chararrays"}, {"name": "reference/generated/numpy.char.count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.count.html", "dispname": "numpy.char.count"}, {"name": "reference/generated/numpy.char.decode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.decode.html", "dispname": "numpy.char.decode"}, {"name": "reference/generated/numpy.char.encode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.encode.html", "dispname": "numpy.char.encode"}, {"name": "reference/generated/numpy.char.endswith", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.endswith.html", "dispname": "numpy.char.endswith"}, {"name": "reference/generated/numpy.char.equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.equal.html", "dispname": "numpy.char.equal"}, {"name": "reference/generated/numpy.char.expandtabs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.expandtabs.html", "dispname": "numpy.char.expandtabs"}, {"name": "reference/generated/numpy.char.find", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.find.html", "dispname": "numpy.char.find"}, {"name": "reference/generated/numpy.char.greater", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.greater.html", "dispname": "numpy.char.greater"}, {"name": "reference/generated/numpy.char.greater_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.greater_equal.html", "dispname": "numpy.char.greater_equal"}, {"name": "reference/generated/numpy.char.index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.index.html", "dispname": "numpy.char.index"}, {"name": "reference/generated/numpy.char.isalnum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isalnum.html", "dispname": "numpy.char.isalnum"}, {"name": "reference/generated/numpy.char.isalpha", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isalpha.html", "dispname": "numpy.char.isalpha"}, {"name": "reference/generated/numpy.char.isdecimal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isdecimal.html", "dispname": "numpy.char.isdecimal"}, {"name": "reference/generated/numpy.char.isdigit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isdigit.html", "dispname": "numpy.char.isdigit"}, {"name": "reference/generated/numpy.char.islower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.islower.html", "dispname": "numpy.char.islower"}, {"name": "reference/generated/numpy.char.isnumeric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isnumeric.html", "dispname": "numpy.char.isnumeric"}, {"name": "reference/generated/numpy.char.isspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isspace.html", "dispname": "numpy.char.isspace"}, {"name": "reference/generated/numpy.char.istitle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.istitle.html", "dispname": "numpy.char.istitle"}, {"name": "reference/generated/numpy.char.isupper", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.isupper.html", "dispname": "numpy.char.isupper"}, {"name": "reference/generated/numpy.char.join", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.join.html", "dispname": "numpy.char.join"}, {"name": "reference/generated/numpy.char.less", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.less.html", "dispname": "numpy.char.less"}, {"name": "reference/generated/numpy.char.less_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.less_equal.html", "dispname": "numpy.char.less_equal"}, {"name": "reference/generated/numpy.char.ljust", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.ljust.html", "dispname": "numpy.char.ljust"}, {"name": "reference/generated/numpy.char.lower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.lower.html", "dispname": "numpy.char.lower"}, {"name": "reference/generated/numpy.char.lstrip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.lstrip.html", "dispname": "numpy.char.lstrip"}, {"name": "reference/generated/numpy.char.mod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.mod.html", "dispname": "numpy.char.mod"}, {"name": "reference/generated/numpy.char.multiply", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.multiply.html", "dispname": "numpy.char.multiply"}, {"name": "reference/generated/numpy.char.not_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.not_equal.html", "dispname": "numpy.char.not_equal"}, {"name": "reference/generated/numpy.char.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.partition.html", "dispname": "numpy.char.partition"}, {"name": "reference/generated/numpy.char.replace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.replace.html", "dispname": "numpy.char.replace"}, {"name": "reference/generated/numpy.char.rfind", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.rfind.html", "dispname": "numpy.char.rfind"}, {"name": "reference/generated/numpy.char.rindex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.rindex.html", "dispname": "numpy.char.rindex"}, {"name": "reference/generated/numpy.char.rjust", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.rjust.html", "dispname": "numpy.char.rjust"}, {"name": "reference/generated/numpy.char.rpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.rpartition.html", "dispname": "numpy.char.rpartition"}, {"name": "reference/generated/numpy.char.rsplit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.rsplit.html", "dispname": "numpy.char.rsplit"}, {"name": "reference/generated/numpy.char.rstrip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.rstrip.html", "dispname": "numpy.char.rstrip"}, {"name": "reference/generated/numpy.char.split", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.split.html", "dispname": "numpy.char.split"}, {"name": "reference/generated/numpy.char.splitlines", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.splitlines.html", "dispname": "numpy.char.splitlines"}, {"name": "reference/generated/numpy.char.startswith", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.startswith.html", "dispname": "numpy.char.startswith"}, {"name": "reference/generated/numpy.char.str_len", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.str_len.html", "dispname": "numpy.char.str_len"}, {"name": "reference/generated/numpy.char.strip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.strip.html", "dispname": "numpy.char.strip"}, {"name": "reference/generated/numpy.char.swapcase", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.swapcase.html", "dispname": "numpy.char.swapcase"}, {"name": "reference/generated/numpy.char.title", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.title.html", "dispname": "numpy.char.title"}, {"name": "reference/generated/numpy.char.translate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.translate.html", "dispname": "numpy.char.translate"}, {"name": "reference/generated/numpy.char.upper", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.upper.html", "dispname": "numpy.char.upper"}, {"name": "reference/generated/numpy.char.zfill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.char.zfill.html", "dispname": "numpy.char.zfill"}, {"name": "reference/generated/numpy.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.choose.html", "dispname": "numpy.choose"}, {"name": "reference/generated/numpy.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.clip.html", "dispname": "numpy.clip"}, {"name": "reference/generated/numpy.column_stack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.column_stack.html", "dispname": "numpy.column_stack"}, {"name": "reference/generated/numpy.common_type", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.common_type.html", "dispname": "numpy.common_type"}, {"name": "reference/generated/numpy.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.compress.html", "dispname": "numpy.compress"}, {"name": "reference/generated/numpy.concat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.concat.html", "dispname": "numpy.concat"}, {"name": "reference/generated/numpy.concatenate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.concatenate.html", "dispname": "numpy.concatenate"}, {"name": "reference/generated/numpy.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.conj.html", "dispname": "numpy.conj"}, {"name": "reference/generated/numpy.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.conjugate.html", "dispname": "numpy.conjugate"}, {"name": "reference/generated/numpy.convolve", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.convolve.html", "dispname": "numpy.convolve"}, {"name": "reference/generated/numpy.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.copy.html", "dispname": "numpy.copy"}, {"name": "reference/generated/numpy.copysign", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.copysign.html", "dispname": "numpy.copysign"}, {"name": "reference/generated/numpy.copyto", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.copyto.html", "dispname": "numpy.copyto"}, {"name": "reference/generated/numpy.corrcoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.corrcoef.html", "dispname": "numpy.corrcoef"}, {"name": "reference/generated/numpy.correlate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.correlate.html", "dispname": "numpy.correlate"}, {"name": "reference/generated/numpy.cos", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cos.html", "dispname": "numpy.cos"}, {"name": "reference/generated/numpy.cosh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cosh.html", "dispname": "numpy.cosh"}, {"name": "reference/generated/numpy.count_nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.count_nonzero.html", "dispname": "numpy.count_nonzero"}, {"name": "reference/generated/numpy.cov", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cov.html", "dispname": "numpy.cov"}, {"name": "reference/generated/numpy.cross", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cross.html", "dispname": "numpy.cross"}, {"name": "reference/generated/numpy.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cumprod.html", "dispname": "numpy.cumprod"}, {"name": "reference/generated/numpy.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cumsum.html", "dispname": "numpy.cumsum"}, {"name": "reference/generated/numpy.cumulative_prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cumulative_prod.html", "dispname": "numpy.cumulative_prod"}, {"name": "reference/generated/numpy.cumulative_sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.cumulative_sum.html", "dispname": "numpy.cumulative_sum"}, {"name": "reference/generated/numpy.datetime_as_string", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.datetime_as_string.html", "dispname": "numpy.datetime_as_string"}, {"name": "reference/generated/numpy.datetime_data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.datetime_data.html", "dispname": "numpy.datetime_data"}, {"name": "reference/generated/numpy.deg2rad", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.deg2rad.html", "dispname": "numpy.deg2rad"}, {"name": "reference/generated/numpy.degrees", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.degrees.html", "dispname": "numpy.degrees"}, {"name": "reference/generated/numpy.delete", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.delete.html", "dispname": "numpy.delete"}, {"name": "reference/generated/numpy.diag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.diag.html", "dispname": "numpy.diag"}, {"name": "reference/generated/numpy.diag_indices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.diag_indices.html", "dispname": "numpy.diag_indices"}, {"name": "reference/generated/numpy.diag_indices_from", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.diag_indices_from.html", "dispname": "numpy.diag_indices_from"}, {"name": "reference/generated/numpy.diagflat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.diagflat.html", "dispname": "numpy.diagflat"}, {"name": "reference/generated/numpy.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.diagonal.html", "dispname": "numpy.diagonal"}, {"name": "reference/generated/numpy.diff", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.diff.html", "dispname": "numpy.diff"}, {"name": "reference/generated/numpy.digitize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.digitize.html", "dispname": "numpy.digitize"}, {"name": "reference/generated/numpy.distutils.ccompiler", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.html", "dispname": "numpy.distutils.ccompiler"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_compile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_compile.html", "dispname": "numpy.distutils.ccompiler.CCompiler_compile"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_customize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_customize.html", "dispname": "numpy.distutils.ccompiler.CCompiler_customize"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_customize_cmd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_customize_cmd.html", "dispname": "numpy.distutils.ccompiler.CCompiler_customize_cmd"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_cxx_compiler", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_cxx_compiler.html", "dispname": "numpy.distutils.ccompiler.CCompiler_cxx_compiler"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_find_executables", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_find_executables.html", "dispname": "numpy.distutils.ccompiler.CCompiler_find_executables"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_get_version", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_get_version.html", "dispname": "numpy.distutils.ccompiler.CCompiler_get_version"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_object_filenames", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_object_filenames.html", "dispname": "numpy.distutils.ccompiler.CCompiler_object_filenames"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_show_customization", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_show_customization.html", "dispname": "numpy.distutils.ccompiler.CCompiler_show_customization"}, {"name": "reference/generated/numpy.distutils.ccompiler.CCompiler_spawn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.CCompiler_spawn.html", "dispname": "numpy.distutils.ccompiler.CCompiler_spawn"}, {"name": "reference/generated/numpy.distutils.ccompiler.gen_lib_options", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.gen_lib_options.html", "dispname": "numpy.distutils.ccompiler.gen_lib_options"}, {"name": "reference/generated/numpy.distutils.ccompiler.new_compiler", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.new_compiler.html", "dispname": "numpy.distutils.ccompiler.new_compiler"}, {"name": "reference/generated/numpy.distutils.ccompiler.replace_method", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.replace_method.html", "dispname": "numpy.distutils.ccompiler.replace_method"}, {"name": "reference/generated/numpy.distutils.ccompiler.simple_version_match", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler.simple_version_match.html", "dispname": "numpy.distutils.ccompiler.simple_version_match"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.html", "dispname": "numpy.distutils.ccompiler_opt"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cache_flush", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cache_flush.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cache_flush"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cache_hash", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cache_hash.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cache_hash"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_normalize_flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_normalize_flags.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cc_normalize_flags"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_cexpr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_cexpr.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_cexpr"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_flags.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cc_test_flags"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix_.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_c_prefix_"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cache_factors", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cache_factors.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cache_factors"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cc_flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cc_flags.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_cc_flags"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_check_path", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_check_path.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_check_path"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features_partial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features_partial.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_features_partial"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_min_features", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_min_features.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_min_features"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_nocache", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_nocache.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_nocache"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_noopt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_noopt.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_noopt"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_target_groups", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_target_groups.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_target_groups"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_tmp_path", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.conf_tmp_path.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.conf_tmp_path"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_flags.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_flags"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_names", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_names.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_baseline_names"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_dispatch_names", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_dispatch_names.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.cpu_dispatch_names"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_compile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_compile.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_compile"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_error", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_error.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_error"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_fatal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_fatal.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_fatal"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_info", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_info.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_info"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_load_module", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_load_module.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_load_module"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_log", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_log.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_log"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_test", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.dist_test.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.dist_test"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_ahead", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_ahead.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_ahead"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_c_preprocessor", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_c_preprocessor.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_c_preprocessor"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_can_autovec", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_can_autovec.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_can_autovec"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_detect", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_detect.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_detect"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_extra_checks", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_extra_checks.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_extra_checks"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_flags.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_flags"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_get_til", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_get_til.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_get_til"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies_c", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies_c.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_implies_c"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_exist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_exist.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_exist"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_supported", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_supported.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_is_supported"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_names", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_names.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_names"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_sorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_sorted.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_sorted"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_test", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_test.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_test"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.feature_untied"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.generate_dispatch_header", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.generate_dispatch_header.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.generate_dispatch_header"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.is_cached", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.is_cached.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.is_cached"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.me", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.me.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.me"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.parse_targets", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.parse_targets.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.parse_targets"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.report", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.report.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.report"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.try_dispatch", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.CCompilerOpt.try_dispatch.html", "dispname": "numpy.distutils.ccompiler_opt.CCompilerOpt.try_dispatch"}, {"name": "reference/generated/numpy.distutils.ccompiler_opt.new_ccompiler_opt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.ccompiler_opt.new_ccompiler_opt.html", "dispname": "numpy.distutils.ccompiler_opt.new_ccompiler_opt"}, {"name": "reference/generated/numpy.distutils.core.Extension", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.core.Extension.html", "dispname": "numpy.distutils.core.Extension"}, {"name": "reference/generated/numpy.distutils.core.Extension.has_cxx_sources", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.core.Extension.has_cxx_sources.html", "dispname": "numpy.distutils.core.Extension.has_cxx_sources"}, {"name": "reference/generated/numpy.distutils.core.Extension.has_f2py_sources", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.core.Extension.has_f2py_sources.html", "dispname": "numpy.distutils.core.Extension.has_f2py_sources"}, {"name": "reference/generated/numpy.distutils.cpuinfo.cpu", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.cpuinfo.cpu.html", "dispname": "numpy.distutils.cpuinfo.cpu"}, {"name": "reference/generated/numpy.distutils.exec_command", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.html", "dispname": "numpy.distutils.exec_command"}, {"name": "reference/generated/numpy.distutils.exec_command.exec_command", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.exec_command.html", "dispname": "numpy.distutils.exec_command.exec_command"}, {"name": "reference/generated/numpy.distutils.exec_command.filepath_from_subprocess_output", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.filepath_from_subprocess_output.html", "dispname": "numpy.distutils.exec_command.filepath_from_subprocess_output"}, {"name": "reference/generated/numpy.distutils.exec_command.find_executable", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.find_executable.html", "dispname": "numpy.distutils.exec_command.find_executable"}, {"name": "reference/generated/numpy.distutils.exec_command.forward_bytes_to_stdout", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.forward_bytes_to_stdout.html", "dispname": "numpy.distutils.exec_command.forward_bytes_to_stdout"}, {"name": "reference/generated/numpy.distutils.exec_command.get_pythonexe", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.get_pythonexe.html", "dispname": "numpy.distutils.exec_command.get_pythonexe"}, {"name": "reference/generated/numpy.distutils.exec_command.temp_file_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.exec_command.temp_file_name.html", "dispname": "numpy.distutils.exec_command.temp_file_name"}, {"name": "reference/generated/numpy.distutils.log.set_verbosity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.log.set_verbosity.html", "dispname": "numpy.distutils.log.set_verbosity"}, {"name": "reference/generated/numpy.distutils.system_info.get_info", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.system_info.get_info.html", "dispname": "numpy.distutils.system_info.get_info"}, {"name": "reference/generated/numpy.distutils.system_info.get_standard_file", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.distutils.system_info.get_standard_file.html", "dispname": "numpy.distutils.system_info.get_standard_file"}, {"name": "reference/generated/numpy.divide", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.divide.html", "dispname": "numpy.divide"}, {"name": "reference/generated/numpy.divmod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.divmod.html", "dispname": "numpy.divmod"}, {"name": "reference/generated/numpy.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dot.html", "dispname": "numpy.dot"}, {"name": "reference/generated/numpy.dsplit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dsplit.html", "dispname": "numpy.dsplit"}, {"name": "reference/generated/numpy.dstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dstack.html", "dispname": "numpy.dstack"}, {"name": "reference/generated/numpy.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.html", "dispname": "numpy.dtype"}, {"name": "reference/generated/numpy.dtype.__class_getitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__class_getitem__.html", "dispname": "numpy.dtype.__class_getitem__"}, {"name": "reference/generated/numpy.dtype.__ge__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__ge__.html", "dispname": "numpy.dtype.__ge__"}, {"name": "reference/generated/numpy.dtype.__gt__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__gt__.html", "dispname": "numpy.dtype.__gt__"}, {"name": "reference/generated/numpy.dtype.__le__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__le__.html", "dispname": "numpy.dtype.__le__"}, {"name": "reference/generated/numpy.dtype.__lt__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__lt__.html", "dispname": "numpy.dtype.__lt__"}, {"name": "reference/generated/numpy.dtype.__reduce__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__reduce__.html", "dispname": "numpy.dtype.__reduce__"}, {"name": "reference/generated/numpy.dtype.__setstate__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.__setstate__.html", "dispname": "numpy.dtype.__setstate__"}, {"name": "reference/generated/numpy.dtype.alignment", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.alignment.html", "dispname": "numpy.dtype.alignment"}, {"name": "reference/generated/numpy.dtype.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.base.html", "dispname": "numpy.dtype.base"}, {"name": "reference/generated/numpy.dtype.byteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.byteorder.html", "dispname": "numpy.dtype.byteorder"}, {"name": "reference/generated/numpy.dtype.char", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.char.html", "dispname": "numpy.dtype.char"}, {"name": "reference/generated/numpy.dtype.descr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.descr.html", "dispname": "numpy.dtype.descr"}, {"name": "reference/generated/numpy.dtype.fields", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.fields.html", "dispname": "numpy.dtype.fields"}, {"name": "reference/generated/numpy.dtype.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.flags.html", "dispname": "numpy.dtype.flags"}, {"name": "reference/generated/numpy.dtype.hasobject", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.hasobject.html", "dispname": "numpy.dtype.hasobject"}, {"name": "reference/generated/numpy.dtype.isalignedstruct", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.isalignedstruct.html", "dispname": "numpy.dtype.isalignedstruct"}, {"name": "reference/generated/numpy.dtype.isbuiltin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.isbuiltin.html", "dispname": "numpy.dtype.isbuiltin"}, {"name": "reference/generated/numpy.dtype.isnative", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.isnative.html", "dispname": "numpy.dtype.isnative"}, {"name": "reference/generated/numpy.dtype.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.itemsize.html", "dispname": "numpy.dtype.itemsize"}, {"name": "reference/generated/numpy.dtype.kind", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.kind.html", "dispname": "numpy.dtype.kind"}, {"name": "reference/generated/numpy.dtype.metadata", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.metadata.html", "dispname": "numpy.dtype.metadata"}, {"name": "reference/generated/numpy.dtype.name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.name.html", "dispname": "numpy.dtype.name"}, {"name": "reference/generated/numpy.dtype.names", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.names.html", "dispname": "numpy.dtype.names"}, {"name": "reference/generated/numpy.dtype.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.ndim.html", "dispname": "numpy.dtype.ndim"}, {"name": "reference/generated/numpy.dtype.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.newbyteorder.html", "dispname": "numpy.dtype.newbyteorder"}, {"name": "reference/generated/numpy.dtype.num", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.num.html", "dispname": "numpy.dtype.num"}, {"name": "reference/generated/numpy.dtype.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.shape.html", "dispname": "numpy.dtype.shape"}, {"name": "reference/generated/numpy.dtype.str", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.str.html", "dispname": "numpy.dtype.str"}, {"name": "reference/generated/numpy.dtype.subdtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.subdtype.html", "dispname": "numpy.dtype.subdtype"}, {"name": "reference/generated/numpy.dtype.type", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.dtype.type.html", "dispname": "numpy.dtype.type"}, {"name": "reference/generated/numpy.ediff1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ediff1d.html", "dispname": "numpy.ediff1d"}, {"name": "reference/generated/numpy.einsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.einsum.html", "dispname": "numpy.einsum"}, {"name": "reference/generated/numpy.einsum_path", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.einsum_path.html", "dispname": "numpy.einsum_path"}, {"name": "reference/generated/numpy.emath.arccos", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.arccos.html", "dispname": "numpy.emath.arccos"}, {"name": "reference/generated/numpy.emath.arcsin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.arcsin.html", "dispname": "numpy.emath.arcsin"}, {"name": "reference/generated/numpy.emath.arctanh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.arctanh.html", "dispname": "numpy.emath.arctanh"}, {"name": "reference/generated/numpy.emath.log", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.log.html", "dispname": "numpy.emath.log"}, {"name": "reference/generated/numpy.emath.log10", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.log10.html", "dispname": "numpy.emath.log10"}, {"name": "reference/generated/numpy.emath.log2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.log2.html", "dispname": "numpy.emath.log2"}, {"name": "reference/generated/numpy.emath.logn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.logn.html", "dispname": "numpy.emath.logn"}, {"name": "reference/generated/numpy.emath.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.power.html", "dispname": "numpy.emath.power"}, {"name": "reference/generated/numpy.emath.sqrt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.emath.sqrt.html", "dispname": "numpy.emath.sqrt"}, {"name": "reference/generated/numpy.empty", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.empty.html", "dispname": "numpy.empty"}, {"name": "reference/generated/numpy.empty_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.empty_like.html", "dispname": "numpy.empty_like"}, {"name": "reference/generated/numpy.equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.equal.html", "dispname": "numpy.equal"}, {"name": "reference/generated/numpy.errstate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.errstate.html", "dispname": "numpy.errstate"}, {"name": "reference/generated/numpy.errstate.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.errstate.__call__.html", "dispname": "numpy.errstate.__call__"}, {"name": "reference/generated/numpy.exceptions.AxisError", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exceptions.AxisError.html", "dispname": "numpy.exceptions.AxisError"}, {"name": "reference/generated/numpy.exceptions.ComplexWarning", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exceptions.ComplexWarning.html", "dispname": "numpy.exceptions.ComplexWarning"}, {"name": "reference/generated/numpy.exceptions.DTypePromotionError", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exceptions.DTypePromotionError.html", "dispname": "numpy.exceptions.DTypePromotionError"}, {"name": "reference/generated/numpy.exceptions.RankWarning", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exceptions.RankWarning.html", "dispname": "numpy.exceptions.RankWarning"}, {"name": "reference/generated/numpy.exceptions.TooHardError", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exceptions.TooHardError.html", "dispname": "numpy.exceptions.TooHardError"}, {"name": "reference/generated/numpy.exceptions.VisibleDeprecationWarning", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exceptions.VisibleDeprecationWarning.html", "dispname": "numpy.exceptions.VisibleDeprecationWarning"}, {"name": "reference/generated/numpy.exp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exp.html", "dispname": "numpy.exp"}, {"name": "reference/generated/numpy.exp2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.exp2.html", "dispname": "numpy.exp2"}, {"name": "reference/generated/numpy.expand_dims", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.expand_dims.html", "dispname": "numpy.expand_dims"}, {"name": "reference/generated/numpy.expm1", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.expm1.html", "dispname": "numpy.expm1"}, {"name": "reference/generated/numpy.extract", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.extract.html", "dispname": "numpy.extract"}, {"name": "reference/generated/numpy.eye", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.eye.html", "dispname": "numpy.eye"}, {"name": "reference/generated/numpy.fabs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fabs.html", "dispname": "numpy.fabs"}, {"name": "reference/generated/numpy.fft.fft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.fft.html", "dispname": "numpy.fft.fft"}, {"name": "reference/generated/numpy.fft.fft2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.fft2.html", "dispname": "numpy.fft.fft2"}, {"name": "reference/generated/numpy.fft.fftfreq", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.fftfreq.html", "dispname": "numpy.fft.fftfreq"}, {"name": "reference/generated/numpy.fft.fftn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.fftn.html", "dispname": "numpy.fft.fftn"}, {"name": "reference/generated/numpy.fft.fftshift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.fftshift.html", "dispname": "numpy.fft.fftshift"}, {"name": "reference/generated/numpy.fft.hfft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.hfft.html", "dispname": "numpy.fft.hfft"}, {"name": "reference/generated/numpy.fft.ifft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.ifft.html", "dispname": "numpy.fft.ifft"}, {"name": "reference/generated/numpy.fft.ifft2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.ifft2.html", "dispname": "numpy.fft.ifft2"}, {"name": "reference/generated/numpy.fft.ifftn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.ifftn.html", "dispname": "numpy.fft.ifftn"}, {"name": "reference/generated/numpy.fft.ifftshift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.ifftshift.html", "dispname": "numpy.fft.ifftshift"}, {"name": "reference/generated/numpy.fft.ihfft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.ihfft.html", "dispname": "numpy.fft.ihfft"}, {"name": "reference/generated/numpy.fft.irfft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.irfft.html", "dispname": "numpy.fft.irfft"}, {"name": "reference/generated/numpy.fft.irfft2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.irfft2.html", "dispname": "numpy.fft.irfft2"}, {"name": "reference/generated/numpy.fft.irfftn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.irfftn.html", "dispname": "numpy.fft.irfftn"}, {"name": "reference/generated/numpy.fft.rfft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.rfft.html", "dispname": "numpy.fft.rfft"}, {"name": "reference/generated/numpy.fft.rfft2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.rfft2.html", "dispname": "numpy.fft.rfft2"}, {"name": "reference/generated/numpy.fft.rfftfreq", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.rfftfreq.html", "dispname": "numpy.fft.rfftfreq"}, {"name": "reference/generated/numpy.fft.rfftn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fft.rfftn.html", "dispname": "numpy.fft.rfftn"}, {"name": "reference/generated/numpy.fill_diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fill_diagonal.html", "dispname": "numpy.fill_diagonal"}, {"name": "reference/generated/numpy.finfo", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.finfo.html", "dispname": "numpy.finfo"}, {"name": "reference/generated/numpy.finfo.smallest_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.finfo.smallest_normal.html", "dispname": "numpy.finfo.smallest_normal"}, {"name": "reference/generated/numpy.finfo.tiny", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.finfo.tiny.html", "dispname": "numpy.finfo.tiny"}, {"name": "reference/generated/numpy.fix", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fix.html", "dispname": "numpy.fix"}, {"name": "reference/generated/numpy.flatiter", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flatiter.html", "dispname": "numpy.flatiter"}, {"name": "reference/generated/numpy.flatiter.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flatiter.base.html", "dispname": "numpy.flatiter.base"}, {"name": "reference/generated/numpy.flatiter.coords", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flatiter.coords.html", "dispname": "numpy.flatiter.coords"}, {"name": "reference/generated/numpy.flatiter.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flatiter.copy.html", "dispname": "numpy.flatiter.copy"}, {"name": "reference/generated/numpy.flatiter.index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flatiter.index.html", "dispname": "numpy.flatiter.index"}, {"name": "reference/generated/numpy.flatnonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flatnonzero.html", "dispname": "numpy.flatnonzero"}, {"name": "reference/generated/numpy.flip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flip.html", "dispname": "numpy.flip"}, {"name": "reference/generated/numpy.fliplr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fliplr.html", "dispname": "numpy.fliplr"}, {"name": "reference/generated/numpy.flipud", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.flipud.html", "dispname": "numpy.flipud"}, {"name": "reference/generated/numpy.float_power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.float_power.html", "dispname": "numpy.float_power"}, {"name": "reference/generated/numpy.floor", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.floor.html", "dispname": "numpy.floor"}, {"name": "reference/generated/numpy.floor_divide", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.floor_divide.html", "dispname": "numpy.floor_divide"}, {"name": "reference/generated/numpy.fmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fmax.html", "dispname": "numpy.fmax"}, {"name": "reference/generated/numpy.fmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fmin.html", "dispname": "numpy.fmin"}, {"name": "reference/generated/numpy.fmod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fmod.html", "dispname": "numpy.fmod"}, {"name": "reference/generated/numpy.format_float_positional", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.format_float_positional.html", "dispname": "numpy.format_float_positional"}, {"name": "reference/generated/numpy.format_float_scientific", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.format_float_scientific.html", "dispname": "numpy.format_float_scientific"}, {"name": "reference/generated/numpy.frexp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.frexp.html", "dispname": "numpy.frexp"}, {"name": "reference/generated/numpy.from_dlpack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.from_dlpack.html", "dispname": "numpy.from_dlpack"}, {"name": "reference/generated/numpy.frombuffer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.frombuffer.html", "dispname": "numpy.frombuffer"}, {"name": "reference/generated/numpy.fromfile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fromfile.html", "dispname": "numpy.fromfile"}, {"name": "reference/generated/numpy.fromfunction", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fromfunction.html", "dispname": "numpy.fromfunction"}, {"name": "reference/generated/numpy.fromiter", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fromiter.html", "dispname": "numpy.fromiter"}, {"name": "reference/generated/numpy.frompyfunc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.frompyfunc.html", "dispname": "numpy.frompyfunc"}, {"name": "reference/generated/numpy.fromregex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fromregex.html", "dispname": "numpy.fromregex"}, {"name": "reference/generated/numpy.fromstring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.fromstring.html", "dispname": "numpy.fromstring"}, {"name": "reference/generated/numpy.full", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.full.html", "dispname": "numpy.full"}, {"name": "reference/generated/numpy.full_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.full_like.html", "dispname": "numpy.full_like"}, {"name": "reference/generated/numpy.gcd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.gcd.html", "dispname": "numpy.gcd"}, {"name": "reference/generated/numpy.generic.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.T.html", "dispname": "numpy.generic.T"}, {"name": "reference/generated/numpy.generic.__array__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__array__.html", "dispname": "numpy.generic.__array__"}, {"name": "reference/generated/numpy.generic.__array_interface__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__array_interface__.html", "dispname": "numpy.generic.__array_interface__"}, {"name": "reference/generated/numpy.generic.__array_priority__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__array_priority__.html", "dispname": "numpy.generic.__array_priority__"}, {"name": "reference/generated/numpy.generic.__array_struct__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__array_struct__.html", "dispname": "numpy.generic.__array_struct__"}, {"name": "reference/generated/numpy.generic.__array_wrap__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__array_wrap__.html", "dispname": "numpy.generic.__array_wrap__"}, {"name": "reference/generated/numpy.generic.__reduce__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__reduce__.html", "dispname": "numpy.generic.__reduce__"}, {"name": "reference/generated/numpy.generic.__setstate__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.__setstate__.html", "dispname": "numpy.generic.__setstate__"}, {"name": "reference/generated/numpy.generic.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.base.html", "dispname": "numpy.generic.base"}, {"name": "reference/generated/numpy.generic.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.byteswap.html", "dispname": "numpy.generic.byteswap"}, {"name": "reference/generated/numpy.generic.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.data.html", "dispname": "numpy.generic.data"}, {"name": "reference/generated/numpy.generic.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.dtype.html", "dispname": "numpy.generic.dtype"}, {"name": "reference/generated/numpy.generic.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.flags.html", "dispname": "numpy.generic.flags"}, {"name": "reference/generated/numpy.generic.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.flat.html", "dispname": "numpy.generic.flat"}, {"name": "reference/generated/numpy.generic.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.imag.html", "dispname": "numpy.generic.imag"}, {"name": "reference/generated/numpy.generic.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.itemsize.html", "dispname": "numpy.generic.itemsize"}, {"name": "reference/generated/numpy.generic.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.ndim.html", "dispname": "numpy.generic.ndim"}, {"name": "reference/generated/numpy.generic.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.real.html", "dispname": "numpy.generic.real"}, {"name": "reference/generated/numpy.generic.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.setflags.html", "dispname": "numpy.generic.setflags"}, {"name": "reference/generated/numpy.generic.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.shape.html", "dispname": "numpy.generic.shape"}, {"name": "reference/generated/numpy.generic.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.size.html", "dispname": "numpy.generic.size"}, {"name": "reference/generated/numpy.generic.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.squeeze.html", "dispname": "numpy.generic.squeeze"}, {"name": "reference/generated/numpy.generic.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.generic.strides.html", "dispname": "numpy.generic.strides"}, {"name": "reference/generated/numpy.genfromtxt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.genfromtxt.html", "dispname": "numpy.genfromtxt"}, {"name": "reference/generated/numpy.geomspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.geomspace.html", "dispname": "numpy.geomspace"}, {"name": "reference/generated/numpy.get_include", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.get_include.html", "dispname": "numpy.get_include"}, {"name": "reference/generated/numpy.get_printoptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.get_printoptions.html", "dispname": "numpy.get_printoptions"}, {"name": "reference/generated/numpy.getbufsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.getbufsize.html", "dispname": "numpy.getbufsize"}, {"name": "reference/generated/numpy.geterr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.geterr.html", "dispname": "numpy.geterr"}, {"name": "reference/generated/numpy.geterrcall", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.geterrcall.html", "dispname": "numpy.geterrcall"}, {"name": "reference/generated/numpy.gradient", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.gradient.html", "dispname": "numpy.gradient"}, {"name": "reference/generated/numpy.greater", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.greater.html", "dispname": "numpy.greater"}, {"name": "reference/generated/numpy.greater_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.greater_equal.html", "dispname": "numpy.greater_equal"}, {"name": "reference/generated/numpy.hamming", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.hamming.html", "dispname": "numpy.hamming"}, {"name": "reference/generated/numpy.hanning", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.hanning.html", "dispname": "numpy.hanning"}, {"name": "reference/generated/numpy.heaviside", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.heaviside.html", "dispname": "numpy.heaviside"}, {"name": "reference/generated/numpy.histogram", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.histogram.html", "dispname": "numpy.histogram"}, {"name": "reference/generated/numpy.histogram2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.histogram2d.html", "dispname": "numpy.histogram2d"}, {"name": "reference/generated/numpy.histogram_bin_edges", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.histogram_bin_edges.html", "dispname": "numpy.histogram_bin_edges"}, {"name": "reference/generated/numpy.histogramdd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.histogramdd.html", "dispname": "numpy.histogramdd"}, {"name": "reference/generated/numpy.hsplit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.hsplit.html", "dispname": "numpy.hsplit"}, {"name": "reference/generated/numpy.hstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.hstack.html", "dispname": "numpy.hstack"}, {"name": "reference/generated/numpy.hypot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.hypot.html", "dispname": "numpy.hypot"}, {"name": "reference/generated/numpy.i0", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.i0.html", "dispname": "numpy.i0"}, {"name": "reference/generated/numpy.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.identity.html", "dispname": "numpy.identity"}, {"name": "reference/generated/numpy.iinfo", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.iinfo.html", "dispname": "numpy.iinfo"}, {"name": "reference/generated/numpy.iinfo.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.iinfo.max.html", "dispname": "numpy.iinfo.max"}, {"name": "reference/generated/numpy.iinfo.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.iinfo.min.html", "dispname": "numpy.iinfo.min"}, {"name": "reference/generated/numpy.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.imag.html", "dispname": "numpy.imag"}, {"name": "reference/generated/numpy.in1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.in1d.html", "dispname": "numpy.in1d"}, {"name": "reference/generated/numpy.indices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.indices.html", "dispname": "numpy.indices"}, {"name": "reference/generated/numpy.info", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.info.html", "dispname": "numpy.info"}, {"name": "reference/generated/numpy.inner", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.inner.html", "dispname": "numpy.inner"}, {"name": "reference/generated/numpy.insert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.insert.html", "dispname": "numpy.insert"}, {"name": "reference/generated/numpy.interp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.interp.html", "dispname": "numpy.interp"}, {"name": "reference/generated/numpy.intersect1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.intersect1d.html", "dispname": "numpy.intersect1d"}, {"name": "reference/generated/numpy.invert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.invert.html", "dispname": "numpy.invert"}, {"name": "reference/generated/numpy.is_busday", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.is_busday.html", "dispname": "numpy.is_busday"}, {"name": "reference/generated/numpy.isclose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isclose.html", "dispname": "numpy.isclose"}, {"name": "reference/generated/numpy.iscomplex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.iscomplex.html", "dispname": "numpy.iscomplex"}, {"name": "reference/generated/numpy.iscomplexobj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.iscomplexobj.html", "dispname": "numpy.iscomplexobj"}, {"name": "reference/generated/numpy.isdtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isdtype.html", "dispname": "numpy.isdtype"}, {"name": "reference/generated/numpy.isfinite", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isfinite.html", "dispname": "numpy.isfinite"}, {"name": "reference/generated/numpy.isfortran", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isfortran.html", "dispname": "numpy.isfortran"}, {"name": "reference/generated/numpy.isin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isin.html", "dispname": "numpy.isin"}, {"name": "reference/generated/numpy.isinf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isinf.html", "dispname": "numpy.isinf"}, {"name": "reference/generated/numpy.isnan", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isnan.html", "dispname": "numpy.isnan"}, {"name": "reference/generated/numpy.isnat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isnat.html", "dispname": "numpy.isnat"}, {"name": "reference/generated/numpy.isneginf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isneginf.html", "dispname": "numpy.isneginf"}, {"name": "reference/generated/numpy.isposinf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isposinf.html", "dispname": "numpy.isposinf"}, {"name": "reference/generated/numpy.isreal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isreal.html", "dispname": "numpy.isreal"}, {"name": "reference/generated/numpy.isrealobj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isrealobj.html", "dispname": "numpy.isrealobj"}, {"name": "reference/generated/numpy.isscalar", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.isscalar.html", "dispname": "numpy.isscalar"}, {"name": "reference/generated/numpy.issubdtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.issubdtype.html", "dispname": "numpy.issubdtype"}, {"name": "reference/generated/numpy.iterable", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.iterable.html", "dispname": "numpy.iterable"}, {"name": "reference/generated/numpy.ix_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ix_.html", "dispname": "numpy.ix_"}, {"name": "reference/generated/numpy.kaiser", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.kaiser.html", "dispname": "numpy.kaiser"}, {"name": "reference/generated/numpy.kron", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.kron.html", "dispname": "numpy.kron"}, {"name": "reference/generated/numpy.lcm", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lcm.html", "dispname": "numpy.lcm"}, {"name": "reference/generated/numpy.ldexp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ldexp.html", "dispname": "numpy.ldexp"}, {"name": "reference/generated/numpy.left_shift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.left_shift.html", "dispname": "numpy.left_shift"}, {"name": "reference/generated/numpy.less", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.less.html", "dispname": "numpy.less"}, {"name": "reference/generated/numpy.less_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.less_equal.html", "dispname": "numpy.less_equal"}, {"name": "reference/generated/numpy.lexsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lexsort.html", "dispname": "numpy.lexsort"}, {"name": "reference/generated/numpy.lib.Arrayterator", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.Arrayterator.html", "dispname": "numpy.lib.Arrayterator"}, {"name": "reference/generated/numpy.lib.Arrayterator.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.Arrayterator.flat.html", "dispname": "numpy.lib.Arrayterator.flat"}, {"name": "reference/generated/numpy.lib.Arrayterator.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.Arrayterator.shape.html", "dispname": "numpy.lib.Arrayterator.shape"}, {"name": "reference/generated/numpy.lib.NumpyVersion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.NumpyVersion.html", "dispname": "numpy.lib.NumpyVersion"}, {"name": "reference/generated/numpy.lib.add_docstring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.add_docstring.html", "dispname": "numpy.lib.add_docstring"}, {"name": "reference/generated/numpy.lib.add_newdoc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.add_newdoc.html", "dispname": "numpy.lib.add_newdoc"}, {"name": "reference/generated/numpy.lib.array_utils", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.array_utils.html", "dispname": "numpy.lib.array_utils"}, {"name": "reference/generated/numpy.lib.array_utils.byte_bounds", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.array_utils.byte_bounds.html", "dispname": "numpy.lib.array_utils.byte_bounds"}, {"name": "reference/generated/numpy.lib.array_utils.normalize_axis_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.array_utils.normalize_axis_index.html", "dispname": "numpy.lib.array_utils.normalize_axis_index"}, {"name": "reference/generated/numpy.lib.array_utils.normalize_axis_tuple", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.array_utils.normalize_axis_tuple.html", "dispname": "numpy.lib.array_utils.normalize_axis_tuple"}, {"name": "reference/generated/numpy.lib.format", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.html", "dispname": "numpy.lib.format"}, {"name": "reference/generated/numpy.lib.format.descr_to_dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.descr_to_dtype.html", "dispname": "numpy.lib.format.descr_to_dtype"}, {"name": "reference/generated/numpy.lib.format.dtype_to_descr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.dtype_to_descr.html", "dispname": "numpy.lib.format.dtype_to_descr"}, {"name": "reference/generated/numpy.lib.format.header_data_from_array_1_0", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.header_data_from_array_1_0.html", "dispname": "numpy.lib.format.header_data_from_array_1_0"}, {"name": "reference/generated/numpy.lib.format.isfileobj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.isfileobj.html", "dispname": "numpy.lib.format.isfileobj"}, {"name": "reference/generated/numpy.lib.format.magic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.magic.html", "dispname": "numpy.lib.format.magic"}, {"name": "reference/generated/numpy.lib.format.open_memmap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.open_memmap.html", "dispname": "numpy.lib.format.open_memmap"}, {"name": "reference/generated/numpy.lib.format.read_array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.read_array.html", "dispname": "numpy.lib.format.read_array"}, {"name": "reference/generated/numpy.lib.format.read_array_header_1_0", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.read_array_header_1_0.html", "dispname": "numpy.lib.format.read_array_header_1_0"}, {"name": "reference/generated/numpy.lib.format.read_array_header_2_0", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.read_array_header_2_0.html", "dispname": "numpy.lib.format.read_array_header_2_0"}, {"name": "reference/generated/numpy.lib.format.read_magic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.read_magic.html", "dispname": "numpy.lib.format.read_magic"}, {"name": "reference/generated/numpy.lib.format.write_array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.write_array.html", "dispname": "numpy.lib.format.write_array"}, {"name": "reference/generated/numpy.lib.format.write_array_header_1_0", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.write_array_header_1_0.html", "dispname": "numpy.lib.format.write_array_header_1_0"}, {"name": "reference/generated/numpy.lib.format.write_array_header_2_0", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.format.write_array_header_2_0.html", "dispname": "numpy.lib.format.write_array_header_2_0"}, {"name": "reference/generated/numpy.lib.introspect", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.introspect.html", "dispname": "numpy.lib.introspect"}, {"name": "reference/generated/numpy.lib.introspect.opt_func_info", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.introspect.opt_func_info.html", "dispname": "numpy.lib.introspect.opt_func_info"}, {"name": "reference/generated/numpy.lib.mixins", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.mixins.html", "dispname": "numpy.lib.mixins"}, {"name": "reference/generated/numpy.lib.mixins.NDArrayOperatorsMixin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.mixins.NDArrayOperatorsMixin.html", "dispname": "numpy.lib.mixins.NDArrayOperatorsMixin"}, {"name": "reference/generated/numpy.lib.npyio", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.html", "dispname": "numpy.lib.npyio"}, {"name": "reference/generated/numpy.lib.npyio.DataSource", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.DataSource.html", "dispname": "numpy.lib.npyio.DataSource"}, {"name": "reference/generated/numpy.lib.npyio.DataSource.abspath", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.DataSource.abspath.html", "dispname": "numpy.lib.npyio.DataSource.abspath"}, {"name": "reference/generated/numpy.lib.npyio.DataSource.exists", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.DataSource.exists.html", "dispname": "numpy.lib.npyio.DataSource.exists"}, {"name": "reference/generated/numpy.lib.npyio.DataSource.open", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.DataSource.open.html", "dispname": "numpy.lib.npyio.DataSource.open"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.html", "dispname": "numpy.lib.npyio.NpzFile"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.close", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.close.html", "dispname": "numpy.lib.npyio.NpzFile.close"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.fid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.fid.html", "dispname": "numpy.lib.npyio.NpzFile.fid"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.get", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.get.html", "dispname": "numpy.lib.npyio.NpzFile.get"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.items", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.items.html", "dispname": "numpy.lib.npyio.NpzFile.items"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.keys", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.keys.html", "dispname": "numpy.lib.npyio.NpzFile.keys"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.values", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.values.html", "dispname": "numpy.lib.npyio.NpzFile.values"}, {"name": "reference/generated/numpy.lib.npyio.NpzFile.zip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.npyio.NpzFile.zip.html", "dispname": "numpy.lib.npyio.NpzFile.zip"}, {"name": "reference/generated/numpy.lib.scimath", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.scimath.html", "dispname": "numpy.lib.scimath"}, {"name": "reference/generated/numpy.lib.stride_tricks", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.stride_tricks.html", "dispname": "numpy.lib.stride_tricks"}, {"name": "reference/generated/numpy.lib.stride_tricks.as_strided", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.stride_tricks.as_strided.html", "dispname": "numpy.lib.stride_tricks.as_strided"}, {"name": "reference/generated/numpy.lib.stride_tricks.sliding_window_view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.stride_tricks.sliding_window_view.html", "dispname": "numpy.lib.stride_tricks.sliding_window_view"}, {"name": "reference/generated/numpy.lib.user_array.container", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.html", "dispname": "numpy.lib.user_array.container"}, {"name": "reference/generated/numpy.lib.user_array.container.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.astype.html", "dispname": "numpy.lib.user_array.container.astype"}, {"name": "reference/generated/numpy.lib.user_array.container.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.byteswap.html", "dispname": "numpy.lib.user_array.container.byteswap"}, {"name": "reference/generated/numpy.lib.user_array.container.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.copy.html", "dispname": "numpy.lib.user_array.container.copy"}, {"name": "reference/generated/numpy.lib.user_array.container.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.tobytes.html", "dispname": "numpy.lib.user_array.container.tobytes"}, {"name": "reference/generated/numpy.lib.user_array.container.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.lib.user_array.container.tostring.html", "dispname": "numpy.lib.user_array.container.tostring"}, {"name": "reference/generated/numpy.linalg.LinAlgError", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.LinAlgError.html", "dispname": "numpy.linalg.LinAlgError"}, {"name": "reference/generated/numpy.linalg.cholesky", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.cholesky.html", "dispname": "numpy.linalg.cholesky"}, {"name": "reference/generated/numpy.linalg.cond", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.cond.html", "dispname": "numpy.linalg.cond"}, {"name": "reference/generated/numpy.linalg.cross", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.cross.html", "dispname": "numpy.linalg.cross"}, {"name": "reference/generated/numpy.linalg.det", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.det.html", "dispname": "numpy.linalg.det"}, {"name": "reference/generated/numpy.linalg.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.diagonal.html", "dispname": "numpy.linalg.diagonal"}, {"name": "reference/generated/numpy.linalg.eig", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.eig.html", "dispname": "numpy.linalg.eig"}, {"name": "reference/generated/numpy.linalg.eigh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.eigh.html", "dispname": "numpy.linalg.eigh"}, {"name": "reference/generated/numpy.linalg.eigvals", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.eigvals.html", "dispname": "numpy.linalg.eigvals"}, {"name": "reference/generated/numpy.linalg.eigvalsh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.eigvalsh.html", "dispname": "numpy.linalg.eigvalsh"}, {"name": "reference/generated/numpy.linalg.inv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.inv.html", "dispname": "numpy.linalg.inv"}, {"name": "reference/generated/numpy.linalg.lstsq", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.lstsq.html", "dispname": "numpy.linalg.lstsq"}, {"name": "reference/generated/numpy.linalg.matmul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.matmul.html", "dispname": "numpy.linalg.matmul"}, {"name": "reference/generated/numpy.linalg.matrix_norm", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.matrix_norm.html", "dispname": "numpy.linalg.matrix_norm"}, {"name": "reference/generated/numpy.linalg.matrix_power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.matrix_power.html", "dispname": "numpy.linalg.matrix_power"}, {"name": "reference/generated/numpy.linalg.matrix_rank", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.matrix_rank.html", "dispname": "numpy.linalg.matrix_rank"}, {"name": "reference/generated/numpy.linalg.matrix_transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.matrix_transpose.html", "dispname": "numpy.linalg.matrix_transpose"}, {"name": "reference/generated/numpy.linalg.multi_dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.multi_dot.html", "dispname": "numpy.linalg.multi_dot"}, {"name": "reference/generated/numpy.linalg.norm", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.norm.html", "dispname": "numpy.linalg.norm"}, {"name": "reference/generated/numpy.linalg.outer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.outer.html", "dispname": "numpy.linalg.outer"}, {"name": "reference/generated/numpy.linalg.pinv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.pinv.html", "dispname": "numpy.linalg.pinv"}, {"name": "reference/generated/numpy.linalg.qr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.qr.html", "dispname": "numpy.linalg.qr"}, {"name": "reference/generated/numpy.linalg.slogdet", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.slogdet.html", "dispname": "numpy.linalg.slogdet"}, {"name": "reference/generated/numpy.linalg.solve", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.solve.html", "dispname": "numpy.linalg.solve"}, {"name": "reference/generated/numpy.linalg.svd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.svd.html", "dispname": "numpy.linalg.svd"}, {"name": "reference/generated/numpy.linalg.svdvals", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.svdvals.html", "dispname": "numpy.linalg.svdvals"}, {"name": "reference/generated/numpy.linalg.tensordot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.tensordot.html", "dispname": "numpy.linalg.tensordot"}, {"name": "reference/generated/numpy.linalg.tensorinv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.tensorinv.html", "dispname": "numpy.linalg.tensorinv"}, {"name": "reference/generated/numpy.linalg.tensorsolve", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.tensorsolve.html", "dispname": "numpy.linalg.tensorsolve"}, {"name": "reference/generated/numpy.linalg.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.trace.html", "dispname": "numpy.linalg.trace"}, {"name": "reference/generated/numpy.linalg.vecdot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.vecdot.html", "dispname": "numpy.linalg.vecdot"}, {"name": "reference/generated/numpy.linalg.vector_norm", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linalg.vector_norm.html", "dispname": "numpy.linalg.vector_norm"}, {"name": "reference/generated/numpy.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.linspace.html", "dispname": "numpy.linspace"}, {"name": "reference/generated/numpy.load", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.load.html", "dispname": "numpy.load"}, {"name": "reference/generated/numpy.loadtxt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.loadtxt.html", "dispname": "numpy.loadtxt"}, {"name": "reference/generated/numpy.log", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.log.html", "dispname": "numpy.log"}, {"name": "reference/generated/numpy.log10", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.log10.html", "dispname": "numpy.log10"}, {"name": "reference/generated/numpy.log1p", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.log1p.html", "dispname": "numpy.log1p"}, {"name": "reference/generated/numpy.log2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.log2.html", "dispname": "numpy.log2"}, {"name": "reference/generated/numpy.logaddexp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logaddexp.html", "dispname": "numpy.logaddexp"}, {"name": "reference/generated/numpy.logaddexp2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logaddexp2.html", "dispname": "numpy.logaddexp2"}, {"name": "reference/generated/numpy.logical_and", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logical_and.html", "dispname": "numpy.logical_and"}, {"name": "reference/generated/numpy.logical_not", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logical_not.html", "dispname": "numpy.logical_not"}, {"name": "reference/generated/numpy.logical_or", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logical_or.html", "dispname": "numpy.logical_or"}, {"name": "reference/generated/numpy.logical_xor", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logical_xor.html", "dispname": "numpy.logical_xor"}, {"name": "reference/generated/numpy.logspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.logspace.html", "dispname": "numpy.logspace"}, {"name": "reference/generated/numpy.ma.MaskType", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.html", "dispname": "numpy.ma.MaskType"}, {"name": "reference/generated/numpy.ma.MaskType.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.T.html", "dispname": "numpy.ma.MaskType.T"}, {"name": "reference/generated/numpy.ma.MaskType.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.all.html", "dispname": "numpy.ma.MaskType.all"}, {"name": "reference/generated/numpy.ma.MaskType.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.any.html", "dispname": "numpy.ma.MaskType.any"}, {"name": "reference/generated/numpy.ma.MaskType.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.argmax.html", "dispname": "numpy.ma.MaskType.argmax"}, {"name": "reference/generated/numpy.ma.MaskType.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.argmin.html", "dispname": "numpy.ma.MaskType.argmin"}, {"name": "reference/generated/numpy.ma.MaskType.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.argsort.html", "dispname": "numpy.ma.MaskType.argsort"}, {"name": "reference/generated/numpy.ma.MaskType.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.astype.html", "dispname": "numpy.ma.MaskType.astype"}, {"name": "reference/generated/numpy.ma.MaskType.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.base.html", "dispname": "numpy.ma.MaskType.base"}, {"name": "reference/generated/numpy.ma.MaskType.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.byteswap.html", "dispname": "numpy.ma.MaskType.byteswap"}, {"name": "reference/generated/numpy.ma.MaskType.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.choose.html", "dispname": "numpy.ma.MaskType.choose"}, {"name": "reference/generated/numpy.ma.MaskType.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.clip.html", "dispname": "numpy.ma.MaskType.clip"}, {"name": "reference/generated/numpy.ma.MaskType.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.compress.html", "dispname": "numpy.ma.MaskType.compress"}, {"name": "reference/generated/numpy.ma.MaskType.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.conj.html", "dispname": "numpy.ma.MaskType.conj"}, {"name": "reference/generated/numpy.ma.MaskType.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.conjugate.html", "dispname": "numpy.ma.MaskType.conjugate"}, {"name": "reference/generated/numpy.ma.MaskType.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.copy.html", "dispname": "numpy.ma.MaskType.copy"}, {"name": "reference/generated/numpy.ma.MaskType.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.cumprod.html", "dispname": "numpy.ma.MaskType.cumprod"}, {"name": "reference/generated/numpy.ma.MaskType.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.cumsum.html", "dispname": "numpy.ma.MaskType.cumsum"}, {"name": "reference/generated/numpy.ma.MaskType.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.data.html", "dispname": "numpy.ma.MaskType.data"}, {"name": "reference/generated/numpy.ma.MaskType.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.device.html", "dispname": "numpy.ma.MaskType.device"}, {"name": "reference/generated/numpy.ma.MaskType.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.diagonal.html", "dispname": "numpy.ma.MaskType.diagonal"}, {"name": "reference/generated/numpy.ma.MaskType.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.dtype.html", "dispname": "numpy.ma.MaskType.dtype"}, {"name": "reference/generated/numpy.ma.MaskType.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.dump.html", "dispname": "numpy.ma.MaskType.dump"}, {"name": "reference/generated/numpy.ma.MaskType.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.dumps.html", "dispname": "numpy.ma.MaskType.dumps"}, {"name": "reference/generated/numpy.ma.MaskType.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.fill.html", "dispname": "numpy.ma.MaskType.fill"}, {"name": "reference/generated/numpy.ma.MaskType.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.flags.html", "dispname": "numpy.ma.MaskType.flags"}, {"name": "reference/generated/numpy.ma.MaskType.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.flat.html", "dispname": "numpy.ma.MaskType.flat"}, {"name": "reference/generated/numpy.ma.MaskType.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.flatten.html", "dispname": "numpy.ma.MaskType.flatten"}, {"name": "reference/generated/numpy.ma.MaskType.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.getfield.html", "dispname": "numpy.ma.MaskType.getfield"}, {"name": "reference/generated/numpy.ma.MaskType.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.imag.html", "dispname": "numpy.ma.MaskType.imag"}, {"name": "reference/generated/numpy.ma.MaskType.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.item.html", "dispname": "numpy.ma.MaskType.item"}, {"name": "reference/generated/numpy.ma.MaskType.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.itemset.html", "dispname": "numpy.ma.MaskType.itemset"}, {"name": "reference/generated/numpy.ma.MaskType.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.itemsize.html", "dispname": "numpy.ma.MaskType.itemsize"}, {"name": "reference/generated/numpy.ma.MaskType.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.max.html", "dispname": "numpy.ma.MaskType.max"}, {"name": "reference/generated/numpy.ma.MaskType.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.mean.html", "dispname": "numpy.ma.MaskType.mean"}, {"name": "reference/generated/numpy.ma.MaskType.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.min.html", "dispname": "numpy.ma.MaskType.min"}, {"name": "reference/generated/numpy.ma.MaskType.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.nbytes.html", "dispname": "numpy.ma.MaskType.nbytes"}, {"name": "reference/generated/numpy.ma.MaskType.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.ndim.html", "dispname": "numpy.ma.MaskType.ndim"}, {"name": "reference/generated/numpy.ma.MaskType.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.newbyteorder.html", "dispname": "numpy.ma.MaskType.newbyteorder"}, {"name": "reference/generated/numpy.ma.MaskType.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.nonzero.html", "dispname": "numpy.ma.MaskType.nonzero"}, {"name": "reference/generated/numpy.ma.MaskType.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.prod.html", "dispname": "numpy.ma.MaskType.prod"}, {"name": "reference/generated/numpy.ma.MaskType.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.ptp.html", "dispname": "numpy.ma.MaskType.ptp"}, {"name": "reference/generated/numpy.ma.MaskType.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.put.html", "dispname": "numpy.ma.MaskType.put"}, {"name": "reference/generated/numpy.ma.MaskType.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.ravel.html", "dispname": "numpy.ma.MaskType.ravel"}, {"name": "reference/generated/numpy.ma.MaskType.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.real.html", "dispname": "numpy.ma.MaskType.real"}, {"name": "reference/generated/numpy.ma.MaskType.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.repeat.html", "dispname": "numpy.ma.MaskType.repeat"}, {"name": "reference/generated/numpy.ma.MaskType.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.reshape.html", "dispname": "numpy.ma.MaskType.reshape"}, {"name": "reference/generated/numpy.ma.MaskType.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.resize.html", "dispname": "numpy.ma.MaskType.resize"}, {"name": "reference/generated/numpy.ma.MaskType.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.round.html", "dispname": "numpy.ma.MaskType.round"}, {"name": "reference/generated/numpy.ma.MaskType.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.searchsorted.html", "dispname": "numpy.ma.MaskType.searchsorted"}, {"name": "reference/generated/numpy.ma.MaskType.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.setfield.html", "dispname": "numpy.ma.MaskType.setfield"}, {"name": "reference/generated/numpy.ma.MaskType.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.setflags.html", "dispname": "numpy.ma.MaskType.setflags"}, {"name": "reference/generated/numpy.ma.MaskType.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.shape.html", "dispname": "numpy.ma.MaskType.shape"}, {"name": "reference/generated/numpy.ma.MaskType.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.size.html", "dispname": "numpy.ma.MaskType.size"}, {"name": "reference/generated/numpy.ma.MaskType.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.sort.html", "dispname": "numpy.ma.MaskType.sort"}, {"name": "reference/generated/numpy.ma.MaskType.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.squeeze.html", "dispname": "numpy.ma.MaskType.squeeze"}, {"name": "reference/generated/numpy.ma.MaskType.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.std.html", "dispname": "numpy.ma.MaskType.std"}, {"name": "reference/generated/numpy.ma.MaskType.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.strides.html", "dispname": "numpy.ma.MaskType.strides"}, {"name": "reference/generated/numpy.ma.MaskType.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.sum.html", "dispname": "numpy.ma.MaskType.sum"}, {"name": "reference/generated/numpy.ma.MaskType.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.swapaxes.html", "dispname": "numpy.ma.MaskType.swapaxes"}, {"name": "reference/generated/numpy.ma.MaskType.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.take.html", "dispname": "numpy.ma.MaskType.take"}, {"name": "reference/generated/numpy.ma.MaskType.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.to_device.html", "dispname": "numpy.ma.MaskType.to_device"}, {"name": "reference/generated/numpy.ma.MaskType.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.tobytes.html", "dispname": "numpy.ma.MaskType.tobytes"}, {"name": "reference/generated/numpy.ma.MaskType.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.tofile.html", "dispname": "numpy.ma.MaskType.tofile"}, {"name": "reference/generated/numpy.ma.MaskType.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.tolist.html", "dispname": "numpy.ma.MaskType.tolist"}, {"name": "reference/generated/numpy.ma.MaskType.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.tostring.html", "dispname": "numpy.ma.MaskType.tostring"}, {"name": "reference/generated/numpy.ma.MaskType.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.trace.html", "dispname": "numpy.ma.MaskType.trace"}, {"name": "reference/generated/numpy.ma.MaskType.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.transpose.html", "dispname": "numpy.ma.MaskType.transpose"}, {"name": "reference/generated/numpy.ma.MaskType.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.var.html", "dispname": "numpy.ma.MaskType.var"}, {"name": "reference/generated/numpy.ma.MaskType.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskType.view.html", "dispname": "numpy.ma.MaskType.view"}, {"name": "reference/generated/numpy.ma.MaskedArray.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.T.html", "dispname": "numpy.ma.MaskedArray.T"}, {"name": "reference/generated/numpy.ma.MaskedArray.__abs__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__abs__.html", "dispname": "numpy.ma.MaskedArray.__abs__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__add__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__add__.html", "dispname": "numpy.ma.MaskedArray.__add__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__and__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__and__.html", "dispname": "numpy.ma.MaskedArray.__and__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__array__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__array__.html", "dispname": "numpy.ma.MaskedArray.__array__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__array_priority__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__array_priority__.html", "dispname": "numpy.ma.MaskedArray.__array_priority__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__array_wrap__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__array_wrap__.html", "dispname": "numpy.ma.MaskedArray.__array_wrap__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__bool__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__bool__.html", "dispname": "numpy.ma.MaskedArray.__bool__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__contains__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__contains__.html", "dispname": "numpy.ma.MaskedArray.__contains__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__copy__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__copy__.html", "dispname": "numpy.ma.MaskedArray.__copy__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__deepcopy__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__deepcopy__.html", "dispname": "numpy.ma.MaskedArray.__deepcopy__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__delitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__delitem__.html", "dispname": "numpy.ma.MaskedArray.__delitem__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__div__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__div__.html", "dispname": "numpy.ma.MaskedArray.__div__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__divmod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__divmod__.html", "dispname": "numpy.ma.MaskedArray.__divmod__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__eq__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__eq__.html", "dispname": "numpy.ma.MaskedArray.__eq__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__float__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__float__.html", "dispname": "numpy.ma.MaskedArray.__float__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__floordiv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__floordiv__.html", "dispname": "numpy.ma.MaskedArray.__floordiv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ge__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ge__.html", "dispname": "numpy.ma.MaskedArray.__ge__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__getitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__getitem__.html", "dispname": "numpy.ma.MaskedArray.__getitem__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__getstate__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__getstate__.html", "dispname": "numpy.ma.MaskedArray.__getstate__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__gt__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__gt__.html", "dispname": "numpy.ma.MaskedArray.__gt__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__iadd__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__iadd__.html", "dispname": "numpy.ma.MaskedArray.__iadd__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__iand__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__iand__.html", "dispname": "numpy.ma.MaskedArray.__iand__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__idiv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__idiv__.html", "dispname": "numpy.ma.MaskedArray.__idiv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ifloordiv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ifloordiv__.html", "dispname": "numpy.ma.MaskedArray.__ifloordiv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ilshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ilshift__.html", "dispname": "numpy.ma.MaskedArray.__ilshift__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__imod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__imod__.html", "dispname": "numpy.ma.MaskedArray.__imod__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__imul__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__imul__.html", "dispname": "numpy.ma.MaskedArray.__imul__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__int__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__int__.html", "dispname": "numpy.ma.MaskedArray.__int__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ior__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ior__.html", "dispname": "numpy.ma.MaskedArray.__ior__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ipow__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ipow__.html", "dispname": "numpy.ma.MaskedArray.__ipow__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__irshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__irshift__.html", "dispname": "numpy.ma.MaskedArray.__irshift__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__isub__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__isub__.html", "dispname": "numpy.ma.MaskedArray.__isub__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__itruediv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__itruediv__.html", "dispname": "numpy.ma.MaskedArray.__itruediv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ixor__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ixor__.html", "dispname": "numpy.ma.MaskedArray.__ixor__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__le__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__le__.html", "dispname": "numpy.ma.MaskedArray.__le__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__len__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__len__.html", "dispname": "numpy.ma.MaskedArray.__len__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__lshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__lshift__.html", "dispname": "numpy.ma.MaskedArray.__lshift__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__lt__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__lt__.html", "dispname": "numpy.ma.MaskedArray.__lt__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__mod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__mod__.html", "dispname": "numpy.ma.MaskedArray.__mod__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__mul__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__mul__.html", "dispname": "numpy.ma.MaskedArray.__mul__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ne__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ne__.html", "dispname": "numpy.ma.MaskedArray.__ne__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__new__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__new__.html", "dispname": "numpy.ma.MaskedArray.__new__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__or__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__or__.html", "dispname": "numpy.ma.MaskedArray.__or__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__pow__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__pow__.html", "dispname": "numpy.ma.MaskedArray.__pow__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__radd__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__radd__.html", "dispname": "numpy.ma.MaskedArray.__radd__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rand__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rand__.html", "dispname": "numpy.ma.MaskedArray.__rand__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rdivmod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rdivmod__.html", "dispname": "numpy.ma.MaskedArray.__rdivmod__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__reduce__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__reduce__.html", "dispname": "numpy.ma.MaskedArray.__reduce__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__repr__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__repr__.html", "dispname": "numpy.ma.MaskedArray.__repr__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rfloordiv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rfloordiv__.html", "dispname": "numpy.ma.MaskedArray.__rfloordiv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rlshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rlshift__.html", "dispname": "numpy.ma.MaskedArray.__rlshift__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rmod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rmod__.html", "dispname": "numpy.ma.MaskedArray.__rmod__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rmul__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rmul__.html", "dispname": "numpy.ma.MaskedArray.__rmul__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__ror__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__ror__.html", "dispname": "numpy.ma.MaskedArray.__ror__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rpow__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rpow__.html", "dispname": "numpy.ma.MaskedArray.__rpow__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rrshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rrshift__.html", "dispname": "numpy.ma.MaskedArray.__rrshift__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rshift__.html", "dispname": "numpy.ma.MaskedArray.__rshift__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rsub__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rsub__.html", "dispname": "numpy.ma.MaskedArray.__rsub__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rtruediv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rtruediv__.html", "dispname": "numpy.ma.MaskedArray.__rtruediv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__rxor__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__rxor__.html", "dispname": "numpy.ma.MaskedArray.__rxor__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__setitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__setitem__.html", "dispname": "numpy.ma.MaskedArray.__setitem__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__setmask__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__setmask__.html", "dispname": "numpy.ma.MaskedArray.__setmask__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__setstate__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__setstate__.html", "dispname": "numpy.ma.MaskedArray.__setstate__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__str__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__str__.html", "dispname": "numpy.ma.MaskedArray.__str__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__sub__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__sub__.html", "dispname": "numpy.ma.MaskedArray.__sub__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__truediv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__truediv__.html", "dispname": "numpy.ma.MaskedArray.__truediv__"}, {"name": "reference/generated/numpy.ma.MaskedArray.__xor__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.__xor__.html", "dispname": "numpy.ma.MaskedArray.__xor__"}, {"name": "reference/generated/numpy.ma.MaskedArray.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.all.html", "dispname": "numpy.ma.MaskedArray.all"}, {"name": "reference/generated/numpy.ma.MaskedArray.anom", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.anom.html", "dispname": "numpy.ma.MaskedArray.anom"}, {"name": "reference/generated/numpy.ma.MaskedArray.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.any.html", "dispname": "numpy.ma.MaskedArray.any"}, {"name": "reference/generated/numpy.ma.MaskedArray.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.argmax.html", "dispname": "numpy.ma.MaskedArray.argmax"}, {"name": "reference/generated/numpy.ma.MaskedArray.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.argmin.html", "dispname": "numpy.ma.MaskedArray.argmin"}, {"name": "reference/generated/numpy.ma.MaskedArray.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.argsort.html", "dispname": "numpy.ma.MaskedArray.argsort"}, {"name": "reference/generated/numpy.ma.MaskedArray.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.astype.html", "dispname": "numpy.ma.MaskedArray.astype"}, {"name": "reference/generated/numpy.ma.MaskedArray.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.base.html", "dispname": "numpy.ma.MaskedArray.base"}, {"name": "reference/generated/numpy.ma.MaskedArray.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.byteswap.html", "dispname": "numpy.ma.MaskedArray.byteswap"}, {"name": "reference/generated/numpy.ma.MaskedArray.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.choose.html", "dispname": "numpy.ma.MaskedArray.choose"}, {"name": "reference/generated/numpy.ma.MaskedArray.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.clip.html", "dispname": "numpy.ma.MaskedArray.clip"}, {"name": "reference/generated/numpy.ma.MaskedArray.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.compress.html", "dispname": "numpy.ma.MaskedArray.compress"}, {"name": "reference/generated/numpy.ma.MaskedArray.compressed", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.compressed.html", "dispname": "numpy.ma.MaskedArray.compressed"}, {"name": "reference/generated/numpy.ma.MaskedArray.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.conj.html", "dispname": "numpy.ma.MaskedArray.conj"}, {"name": "reference/generated/numpy.ma.MaskedArray.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.conjugate.html", "dispname": "numpy.ma.MaskedArray.conjugate"}, {"name": "reference/generated/numpy.ma.MaskedArray.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.copy.html", "dispname": "numpy.ma.MaskedArray.copy"}, {"name": "reference/generated/numpy.ma.MaskedArray.count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.count.html", "dispname": "numpy.ma.MaskedArray.count"}, {"name": "reference/generated/numpy.ma.MaskedArray.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.ctypes.html", "dispname": "numpy.ma.MaskedArray.ctypes"}, {"name": "reference/generated/numpy.ma.MaskedArray.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.cumprod.html", "dispname": "numpy.ma.MaskedArray.cumprod"}, {"name": "reference/generated/numpy.ma.MaskedArray.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.cumsum.html", "dispname": "numpy.ma.MaskedArray.cumsum"}, {"name": "reference/generated/numpy.ma.MaskedArray.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.diagonal.html", "dispname": "numpy.ma.MaskedArray.diagonal"}, {"name": "reference/generated/numpy.ma.MaskedArray.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.dtype.html", "dispname": "numpy.ma.MaskedArray.dtype"}, {"name": "reference/generated/numpy.ma.MaskedArray.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.dump.html", "dispname": "numpy.ma.MaskedArray.dump"}, {"name": "reference/generated/numpy.ma.MaskedArray.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.dumps.html", "dispname": "numpy.ma.MaskedArray.dumps"}, {"name": "reference/generated/numpy.ma.MaskedArray.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.fill.html", "dispname": "numpy.ma.MaskedArray.fill"}, {"name": "reference/generated/numpy.ma.MaskedArray.filled", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.filled.html", "dispname": "numpy.ma.MaskedArray.filled"}, {"name": "reference/generated/numpy.ma.MaskedArray.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.flags.html", "dispname": "numpy.ma.MaskedArray.flags"}, {"name": "reference/generated/numpy.ma.MaskedArray.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.flat.html", "dispname": "numpy.ma.MaskedArray.flat"}, {"name": "reference/generated/numpy.ma.MaskedArray.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.flatten.html", "dispname": "numpy.ma.MaskedArray.flatten"}, {"name": "reference/generated/numpy.ma.MaskedArray.get_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.get_fill_value.html", "dispname": "numpy.ma.MaskedArray.get_fill_value"}, {"name": "reference/generated/numpy.ma.MaskedArray.harden_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.harden_mask.html", "dispname": "numpy.ma.MaskedArray.harden_mask"}, {"name": "reference/generated/numpy.ma.MaskedArray.ids", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.ids.html", "dispname": "numpy.ma.MaskedArray.ids"}, {"name": "reference/generated/numpy.ma.MaskedArray.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.imag.html", "dispname": "numpy.ma.MaskedArray.imag"}, {"name": "reference/generated/numpy.ma.MaskedArray.iscontiguous", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.iscontiguous.html", "dispname": "numpy.ma.MaskedArray.iscontiguous"}, {"name": "reference/generated/numpy.ma.MaskedArray.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.item.html", "dispname": "numpy.ma.MaskedArray.item"}, {"name": "reference/generated/numpy.ma.MaskedArray.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.itemsize.html", "dispname": "numpy.ma.MaskedArray.itemsize"}, {"name": "reference/generated/numpy.ma.MaskedArray.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.max.html", "dispname": "numpy.ma.MaskedArray.max"}, {"name": "reference/generated/numpy.ma.MaskedArray.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.mean.html", "dispname": "numpy.ma.MaskedArray.mean"}, {"name": "reference/generated/numpy.ma.MaskedArray.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.min.html", "dispname": "numpy.ma.MaskedArray.min"}, {"name": "reference/generated/numpy.ma.MaskedArray.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.nbytes.html", "dispname": "numpy.ma.MaskedArray.nbytes"}, {"name": "reference/generated/numpy.ma.MaskedArray.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.ndim.html", "dispname": "numpy.ma.MaskedArray.ndim"}, {"name": "reference/generated/numpy.ma.MaskedArray.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.nonzero.html", "dispname": "numpy.ma.MaskedArray.nonzero"}, {"name": "reference/generated/numpy.ma.MaskedArray.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.prod.html", "dispname": "numpy.ma.MaskedArray.prod"}, {"name": "reference/generated/numpy.ma.MaskedArray.product", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.product.html", "dispname": "numpy.ma.MaskedArray.product"}, {"name": "reference/generated/numpy.ma.MaskedArray.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.ptp.html", "dispname": "numpy.ma.MaskedArray.ptp"}, {"name": "reference/generated/numpy.ma.MaskedArray.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.put.html", "dispname": "numpy.ma.MaskedArray.put"}, {"name": "reference/generated/numpy.ma.MaskedArray.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.ravel.html", "dispname": "numpy.ma.MaskedArray.ravel"}, {"name": "reference/generated/numpy.ma.MaskedArray.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.real.html", "dispname": "numpy.ma.MaskedArray.real"}, {"name": "reference/generated/numpy.ma.MaskedArray.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.repeat.html", "dispname": "numpy.ma.MaskedArray.repeat"}, {"name": "reference/generated/numpy.ma.MaskedArray.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.reshape.html", "dispname": "numpy.ma.MaskedArray.reshape"}, {"name": "reference/generated/numpy.ma.MaskedArray.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.resize.html", "dispname": "numpy.ma.MaskedArray.resize"}, {"name": "reference/generated/numpy.ma.MaskedArray.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.round.html", "dispname": "numpy.ma.MaskedArray.round"}, {"name": "reference/generated/numpy.ma.MaskedArray.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.searchsorted.html", "dispname": "numpy.ma.MaskedArray.searchsorted"}, {"name": "reference/generated/numpy.ma.MaskedArray.set_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.set_fill_value.html", "dispname": "numpy.ma.MaskedArray.set_fill_value"}, {"name": "reference/generated/numpy.ma.MaskedArray.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.shape.html", "dispname": "numpy.ma.MaskedArray.shape"}, {"name": "reference/generated/numpy.ma.MaskedArray.shrink_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.shrink_mask.html", "dispname": "numpy.ma.MaskedArray.shrink_mask"}, {"name": "reference/generated/numpy.ma.MaskedArray.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.size.html", "dispname": "numpy.ma.MaskedArray.size"}, {"name": "reference/generated/numpy.ma.MaskedArray.soften_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.soften_mask.html", "dispname": "numpy.ma.MaskedArray.soften_mask"}, {"name": "reference/generated/numpy.ma.MaskedArray.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.sort.html", "dispname": "numpy.ma.MaskedArray.sort"}, {"name": "reference/generated/numpy.ma.MaskedArray.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.squeeze.html", "dispname": "numpy.ma.MaskedArray.squeeze"}, {"name": "reference/generated/numpy.ma.MaskedArray.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.std.html", "dispname": "numpy.ma.MaskedArray.std"}, {"name": "reference/generated/numpy.ma.MaskedArray.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.strides.html", "dispname": "numpy.ma.MaskedArray.strides"}, {"name": "reference/generated/numpy.ma.MaskedArray.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.sum.html", "dispname": "numpy.ma.MaskedArray.sum"}, {"name": "reference/generated/numpy.ma.MaskedArray.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.swapaxes.html", "dispname": "numpy.ma.MaskedArray.swapaxes"}, {"name": "reference/generated/numpy.ma.MaskedArray.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.take.html", "dispname": "numpy.ma.MaskedArray.take"}, {"name": "reference/generated/numpy.ma.MaskedArray.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.tobytes.html", "dispname": "numpy.ma.MaskedArray.tobytes"}, {"name": "reference/generated/numpy.ma.MaskedArray.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.tofile.html", "dispname": "numpy.ma.MaskedArray.tofile"}, {"name": "reference/generated/numpy.ma.MaskedArray.toflex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.toflex.html", "dispname": "numpy.ma.MaskedArray.toflex"}, {"name": "reference/generated/numpy.ma.MaskedArray.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.tolist.html", "dispname": "numpy.ma.MaskedArray.tolist"}, {"name": "reference/generated/numpy.ma.MaskedArray.torecords", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.torecords.html", "dispname": "numpy.ma.MaskedArray.torecords"}, {"name": "reference/generated/numpy.ma.MaskedArray.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.tostring.html", "dispname": "numpy.ma.MaskedArray.tostring"}, {"name": "reference/generated/numpy.ma.MaskedArray.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.trace.html", "dispname": "numpy.ma.MaskedArray.trace"}, {"name": "reference/generated/numpy.ma.MaskedArray.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.transpose.html", "dispname": "numpy.ma.MaskedArray.transpose"}, {"name": "reference/generated/numpy.ma.MaskedArray.unshare_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.unshare_mask.html", "dispname": "numpy.ma.MaskedArray.unshare_mask"}, {"name": "reference/generated/numpy.ma.MaskedArray.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.var.html", "dispname": "numpy.ma.MaskedArray.var"}, {"name": "reference/generated/numpy.ma.MaskedArray.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.MaskedArray.view.html", "dispname": "numpy.ma.MaskedArray.view"}, {"name": "reference/generated/numpy.ma.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.all.html", "dispname": "numpy.ma.all"}, {"name": "reference/generated/numpy.ma.allclose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.allclose.html", "dispname": "numpy.ma.allclose"}, {"name": "reference/generated/numpy.ma.allequal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.allequal.html", "dispname": "numpy.ma.allequal"}, {"name": "reference/generated/numpy.ma.amax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.amax.html", "dispname": "numpy.ma.amax"}, {"name": "reference/generated/numpy.ma.amin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.amin.html", "dispname": "numpy.ma.amin"}, {"name": "reference/generated/numpy.ma.anom", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.anom.html", "dispname": "numpy.ma.anom"}, {"name": "reference/generated/numpy.ma.anomalies", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.anomalies.html", "dispname": "numpy.ma.anomalies"}, {"name": "reference/generated/numpy.ma.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.any.html", "dispname": "numpy.ma.any"}, {"name": "reference/generated/numpy.ma.append", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.append.html", "dispname": "numpy.ma.append"}, {"name": "reference/generated/numpy.ma.apply_along_axis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.apply_along_axis.html", "dispname": "numpy.ma.apply_along_axis"}, {"name": "reference/generated/numpy.ma.apply_over_axes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.apply_over_axes.html", "dispname": "numpy.ma.apply_over_axes"}, {"name": "reference/generated/numpy.ma.arange", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.arange.html", "dispname": "numpy.ma.arange"}, {"name": "reference/generated/numpy.ma.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.argmax.html", "dispname": "numpy.ma.argmax"}, {"name": "reference/generated/numpy.ma.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.argmin.html", "dispname": "numpy.ma.argmin"}, {"name": "reference/generated/numpy.ma.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.argsort.html", "dispname": "numpy.ma.argsort"}, {"name": "reference/generated/numpy.ma.around", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.around.html", "dispname": "numpy.ma.around"}, {"name": "reference/generated/numpy.ma.array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.array.html", "dispname": "numpy.ma.array"}, {"name": "reference/generated/numpy.ma.asanyarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.asanyarray.html", "dispname": "numpy.ma.asanyarray"}, {"name": "reference/generated/numpy.ma.asarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.asarray.html", "dispname": "numpy.ma.asarray"}, {"name": "reference/generated/numpy.ma.atleast_1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.atleast_1d.html", "dispname": "numpy.ma.atleast_1d"}, {"name": "reference/generated/numpy.ma.atleast_2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.atleast_2d.html", "dispname": "numpy.ma.atleast_2d"}, {"name": "reference/generated/numpy.ma.atleast_3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.atleast_3d.html", "dispname": "numpy.ma.atleast_3d"}, {"name": "reference/generated/numpy.ma.average", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.average.html", "dispname": "numpy.ma.average"}, {"name": "reference/generated/numpy.ma.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.choose.html", "dispname": "numpy.ma.choose"}, {"name": "reference/generated/numpy.ma.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.clip.html", "dispname": "numpy.ma.clip"}, {"name": "reference/generated/numpy.ma.clump_masked", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.clump_masked.html", "dispname": "numpy.ma.clump_masked"}, {"name": "reference/generated/numpy.ma.clump_unmasked", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.clump_unmasked.html", "dispname": "numpy.ma.clump_unmasked"}, {"name": "reference/generated/numpy.ma.column_stack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.column_stack.html", "dispname": "numpy.ma.column_stack"}, {"name": "reference/generated/numpy.ma.common_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.common_fill_value.html", "dispname": "numpy.ma.common_fill_value"}, {"name": "reference/generated/numpy.ma.compress_cols", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.compress_cols.html", "dispname": "numpy.ma.compress_cols"}, {"name": "reference/generated/numpy.ma.compress_nd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.compress_nd.html", "dispname": "numpy.ma.compress_nd"}, {"name": "reference/generated/numpy.ma.compress_rowcols", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.compress_rowcols.html", "dispname": "numpy.ma.compress_rowcols"}, {"name": "reference/generated/numpy.ma.compress_rows", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.compress_rows.html", "dispname": "numpy.ma.compress_rows"}, {"name": "reference/generated/numpy.ma.compressed", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.compressed.html", "dispname": "numpy.ma.compressed"}, {"name": "reference/generated/numpy.ma.concatenate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.concatenate.html", "dispname": "numpy.ma.concatenate"}, {"name": "reference/generated/numpy.ma.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.conjugate.html", "dispname": "numpy.ma.conjugate"}, {"name": "reference/generated/numpy.ma.convolve", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.convolve.html", "dispname": "numpy.ma.convolve"}, {"name": "reference/generated/numpy.ma.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.copy.html", "dispname": "numpy.ma.copy"}, {"name": "reference/generated/numpy.ma.corrcoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.corrcoef.html", "dispname": "numpy.ma.corrcoef"}, {"name": "reference/generated/numpy.ma.correlate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.correlate.html", "dispname": "numpy.ma.correlate"}, {"name": "reference/generated/numpy.ma.count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.count.html", "dispname": "numpy.ma.count"}, {"name": "reference/generated/numpy.ma.count_masked", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.count_masked.html", "dispname": "numpy.ma.count_masked"}, {"name": "reference/generated/numpy.ma.cov", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.cov.html", "dispname": "numpy.ma.cov"}, {"name": "reference/generated/numpy.ma.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.cumprod.html", "dispname": "numpy.ma.cumprod"}, {"name": "reference/generated/numpy.ma.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.cumsum.html", "dispname": "numpy.ma.cumsum"}, {"name": "reference/generated/numpy.ma.default_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.default_fill_value.html", "dispname": "numpy.ma.default_fill_value"}, {"name": "reference/generated/numpy.ma.diag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.diag.html", "dispname": "numpy.ma.diag"}, {"name": "reference/generated/numpy.ma.diagflat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.diagflat.html", "dispname": "numpy.ma.diagflat"}, {"name": "reference/generated/numpy.ma.diff", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.diff.html", "dispname": "numpy.ma.diff"}, {"name": "reference/generated/numpy.ma.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.dot.html", "dispname": "numpy.ma.dot"}, {"name": "reference/generated/numpy.ma.dstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.dstack.html", "dispname": "numpy.ma.dstack"}, {"name": "reference/generated/numpy.ma.ediff1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ediff1d.html", "dispname": "numpy.ma.ediff1d"}, {"name": "reference/generated/numpy.ma.empty", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.empty.html", "dispname": "numpy.ma.empty"}, {"name": "reference/generated/numpy.ma.empty_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.empty_like.html", "dispname": "numpy.ma.empty_like"}, {"name": "reference/generated/numpy.ma.expand_dims", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.expand_dims.html", "dispname": "numpy.ma.expand_dims"}, {"name": "reference/generated/numpy.ma.filled", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.filled.html", "dispname": "numpy.ma.filled"}, {"name": "reference/generated/numpy.ma.fix_invalid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.fix_invalid.html", "dispname": "numpy.ma.fix_invalid"}, {"name": "reference/generated/numpy.ma.flatnotmasked_contiguous", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.flatnotmasked_contiguous.html", "dispname": "numpy.ma.flatnotmasked_contiguous"}, {"name": "reference/generated/numpy.ma.flatnotmasked_edges", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.flatnotmasked_edges.html", "dispname": "numpy.ma.flatnotmasked_edges"}, {"name": "reference/generated/numpy.ma.flatten_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.flatten_mask.html", "dispname": "numpy.ma.flatten_mask"}, {"name": "reference/generated/numpy.ma.flatten_structured_array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.flatten_structured_array.html", "dispname": "numpy.ma.flatten_structured_array"}, {"name": "reference/generated/numpy.ma.frombuffer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.frombuffer.html", "dispname": "numpy.ma.frombuffer"}, {"name": "reference/generated/numpy.ma.fromflex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.fromflex.html", "dispname": "numpy.ma.fromflex"}, {"name": "reference/generated/numpy.ma.fromfunction", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.fromfunction.html", "dispname": "numpy.ma.fromfunction"}, {"name": "reference/generated/numpy.ma.getdata", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.getdata.html", "dispname": "numpy.ma.getdata"}, {"name": "reference/generated/numpy.ma.getmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.getmask.html", "dispname": "numpy.ma.getmask"}, {"name": "reference/generated/numpy.ma.getmaskarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.getmaskarray.html", "dispname": "numpy.ma.getmaskarray"}, {"name": "reference/generated/numpy.ma.harden_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.harden_mask.html", "dispname": "numpy.ma.harden_mask"}, {"name": "reference/generated/numpy.ma.hsplit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.hsplit.html", "dispname": "numpy.ma.hsplit"}, {"name": "reference/generated/numpy.ma.hstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.hstack.html", "dispname": "numpy.ma.hstack"}, {"name": "reference/generated/numpy.ma.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.identity.html", "dispname": "numpy.ma.identity"}, {"name": "reference/generated/numpy.ma.in1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.in1d.html", "dispname": "numpy.ma.in1d"}, {"name": "reference/generated/numpy.ma.indices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.indices.html", "dispname": "numpy.ma.indices"}, {"name": "reference/generated/numpy.ma.inner", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.inner.html", "dispname": "numpy.ma.inner"}, {"name": "reference/generated/numpy.ma.innerproduct", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.innerproduct.html", "dispname": "numpy.ma.innerproduct"}, {"name": "reference/generated/numpy.ma.intersect1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.intersect1d.html", "dispname": "numpy.ma.intersect1d"}, {"name": "reference/generated/numpy.ma.isMA", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.isMA.html", "dispname": "numpy.ma.isMA"}, {"name": "reference/generated/numpy.ma.isMaskedArray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.isMaskedArray.html", "dispname": "numpy.ma.isMaskedArray"}, {"name": "reference/generated/numpy.ma.is_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.is_mask.html", "dispname": "numpy.ma.is_mask"}, {"name": "reference/generated/numpy.ma.is_masked", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.is_masked.html", "dispname": "numpy.ma.is_masked"}, {"name": "reference/generated/numpy.ma.isarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.isarray.html", "dispname": "numpy.ma.isarray"}, {"name": "reference/generated/numpy.ma.isin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.isin.html", "dispname": "numpy.ma.isin"}, {"name": "reference/generated/numpy.ma.left_shift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.left_shift.html", "dispname": "numpy.ma.left_shift"}, {"name": "reference/generated/numpy.ma.make_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.make_mask.html", "dispname": "numpy.ma.make_mask"}, {"name": "reference/generated/numpy.ma.make_mask_descr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.make_mask_descr.html", "dispname": "numpy.ma.make_mask_descr"}, {"name": "reference/generated/numpy.ma.make_mask_none", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.make_mask_none.html", "dispname": "numpy.ma.make_mask_none"}, {"name": "reference/generated/numpy.ma.mask_cols", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.mask_cols.html", "dispname": "numpy.ma.mask_cols"}, {"name": "reference/generated/numpy.ma.mask_or", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.mask_or.html", "dispname": "numpy.ma.mask_or"}, {"name": "reference/generated/numpy.ma.mask_rowcols", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.mask_rowcols.html", "dispname": "numpy.ma.mask_rowcols"}, {"name": "reference/generated/numpy.ma.mask_rows", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.mask_rows.html", "dispname": "numpy.ma.mask_rows"}, {"name": "reference/generated/numpy.ma.masked_all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_all.html", "dispname": "numpy.ma.masked_all"}, {"name": "reference/generated/numpy.ma.masked_all_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_all_like.html", "dispname": "numpy.ma.masked_all_like"}, {"name": "reference/generated/numpy.ma.masked_array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.html", "dispname": "numpy.ma.masked_array"}, {"name": "reference/generated/numpy.ma.masked_array.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.T.html", "dispname": "numpy.ma.masked_array.T"}, {"name": "reference/generated/numpy.ma.masked_array.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.all.html", "dispname": "numpy.ma.masked_array.all"}, {"name": "reference/generated/numpy.ma.masked_array.anom", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.anom.html", "dispname": "numpy.ma.masked_array.anom"}, {"name": "reference/generated/numpy.ma.masked_array.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.any.html", "dispname": "numpy.ma.masked_array.any"}, {"name": "reference/generated/numpy.ma.masked_array.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.argmax.html", "dispname": "numpy.ma.masked_array.argmax"}, {"name": "reference/generated/numpy.ma.masked_array.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.argmin.html", "dispname": "numpy.ma.masked_array.argmin"}, {"name": "reference/generated/numpy.ma.masked_array.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.argpartition.html", "dispname": "numpy.ma.masked_array.argpartition"}, {"name": "reference/generated/numpy.ma.masked_array.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.argsort.html", "dispname": "numpy.ma.masked_array.argsort"}, {"name": "reference/generated/numpy.ma.masked_array.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.astype.html", "dispname": "numpy.ma.masked_array.astype"}, {"name": "reference/generated/numpy.ma.masked_array.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.base.html", "dispname": "numpy.ma.masked_array.base"}, {"name": "reference/generated/numpy.ma.masked_array.baseclass", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.baseclass.html", "dispname": "numpy.ma.masked_array.baseclass"}, {"name": "reference/generated/numpy.ma.masked_array.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.byteswap.html", "dispname": "numpy.ma.masked_array.byteswap"}, {"name": "reference/generated/numpy.ma.masked_array.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.choose.html", "dispname": "numpy.ma.masked_array.choose"}, {"name": "reference/generated/numpy.ma.masked_array.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.clip.html", "dispname": "numpy.ma.masked_array.clip"}, {"name": "reference/generated/numpy.ma.masked_array.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.compress.html", "dispname": "numpy.ma.masked_array.compress"}, {"name": "reference/generated/numpy.ma.masked_array.compressed", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.compressed.html", "dispname": "numpy.ma.masked_array.compressed"}, {"name": "reference/generated/numpy.ma.masked_array.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.conj.html", "dispname": "numpy.ma.masked_array.conj"}, {"name": "reference/generated/numpy.ma.masked_array.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.conjugate.html", "dispname": "numpy.ma.masked_array.conjugate"}, {"name": "reference/generated/numpy.ma.masked_array.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.copy.html", "dispname": "numpy.ma.masked_array.copy"}, {"name": "reference/generated/numpy.ma.masked_array.count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.count.html", "dispname": "numpy.ma.masked_array.count"}, {"name": "reference/generated/numpy.ma.masked_array.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.ctypes.html", "dispname": "numpy.ma.masked_array.ctypes"}, {"name": "reference/generated/numpy.ma.masked_array.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.cumprod.html", "dispname": "numpy.ma.masked_array.cumprod"}, {"name": "reference/generated/numpy.ma.masked_array.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.cumsum.html", "dispname": "numpy.ma.masked_array.cumsum"}, {"name": "reference/generated/numpy.ma.masked_array.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.data.html", "dispname": "numpy.ma.masked_array.data"}, {"name": "reference/generated/numpy.ma.masked_array.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.device.html", "dispname": "numpy.ma.masked_array.device"}, {"name": "reference/generated/numpy.ma.masked_array.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.diagonal.html", "dispname": "numpy.ma.masked_array.diagonal"}, {"name": "reference/generated/numpy.ma.masked_array.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.dot.html", "dispname": "numpy.ma.masked_array.dot"}, {"name": "reference/generated/numpy.ma.masked_array.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.dtype.html", "dispname": "numpy.ma.masked_array.dtype"}, {"name": "reference/generated/numpy.ma.masked_array.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.dump.html", "dispname": "numpy.ma.masked_array.dump"}, {"name": "reference/generated/numpy.ma.masked_array.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.dumps.html", "dispname": "numpy.ma.masked_array.dumps"}, {"name": "reference/generated/numpy.ma.masked_array.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.fill.html", "dispname": "numpy.ma.masked_array.fill"}, {"name": "reference/generated/numpy.ma.masked_array.fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.fill_value.html", "dispname": "numpy.ma.masked_array.fill_value"}, {"name": "reference/generated/numpy.ma.masked_array.filled", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.filled.html", "dispname": "numpy.ma.masked_array.filled"}, {"name": "reference/generated/numpy.ma.masked_array.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.flags.html", "dispname": "numpy.ma.masked_array.flags"}, {"name": "reference/generated/numpy.ma.masked_array.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.flat.html", "dispname": "numpy.ma.masked_array.flat"}, {"name": "reference/generated/numpy.ma.masked_array.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.flatten.html", "dispname": "numpy.ma.masked_array.flatten"}, {"name": "reference/generated/numpy.ma.masked_array.get_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.get_fill_value.html", "dispname": "numpy.ma.masked_array.get_fill_value"}, {"name": "reference/generated/numpy.ma.masked_array.get_imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.get_imag.html", "dispname": "numpy.ma.masked_array.get_imag"}, {"name": "reference/generated/numpy.ma.masked_array.get_real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.get_real.html", "dispname": "numpy.ma.masked_array.get_real"}, {"name": "reference/generated/numpy.ma.masked_array.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.getfield.html", "dispname": "numpy.ma.masked_array.getfield"}, {"name": "reference/generated/numpy.ma.masked_array.harden_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.harden_mask.html", "dispname": "numpy.ma.masked_array.harden_mask"}, {"name": "reference/generated/numpy.ma.masked_array.hardmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.hardmask.html", "dispname": "numpy.ma.masked_array.hardmask"}, {"name": "reference/generated/numpy.ma.masked_array.ids", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.ids.html", "dispname": "numpy.ma.masked_array.ids"}, {"name": "reference/generated/numpy.ma.masked_array.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.imag.html", "dispname": "numpy.ma.masked_array.imag"}, {"name": "reference/generated/numpy.ma.masked_array.iscontiguous", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.iscontiguous.html", "dispname": "numpy.ma.masked_array.iscontiguous"}, {"name": "reference/generated/numpy.ma.masked_array.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.item.html", "dispname": "numpy.ma.masked_array.item"}, {"name": "reference/generated/numpy.ma.masked_array.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.itemset.html", "dispname": "numpy.ma.masked_array.itemset"}, {"name": "reference/generated/numpy.ma.masked_array.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.itemsize.html", "dispname": "numpy.ma.masked_array.itemsize"}, {"name": "reference/generated/numpy.ma.masked_array.mT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.mT.html", "dispname": "numpy.ma.masked_array.mT"}, {"name": "reference/generated/numpy.ma.masked_array.mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.mask.html", "dispname": "numpy.ma.masked_array.mask"}, {"name": "reference/generated/numpy.ma.masked_array.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.max.html", "dispname": "numpy.ma.masked_array.max"}, {"name": "reference/generated/numpy.ma.masked_array.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.mean.html", "dispname": "numpy.ma.masked_array.mean"}, {"name": "reference/generated/numpy.ma.masked_array.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.min.html", "dispname": "numpy.ma.masked_array.min"}, {"name": "reference/generated/numpy.ma.masked_array.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.nbytes.html", "dispname": "numpy.ma.masked_array.nbytes"}, {"name": "reference/generated/numpy.ma.masked_array.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.ndim.html", "dispname": "numpy.ma.masked_array.ndim"}, {"name": "reference/generated/numpy.ma.masked_array.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.newbyteorder.html", "dispname": "numpy.ma.masked_array.newbyteorder"}, {"name": "reference/generated/numpy.ma.masked_array.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.nonzero.html", "dispname": "numpy.ma.masked_array.nonzero"}, {"name": "reference/generated/numpy.ma.masked_array.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.partition.html", "dispname": "numpy.ma.masked_array.partition"}, {"name": "reference/generated/numpy.ma.masked_array.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.prod.html", "dispname": "numpy.ma.masked_array.prod"}, {"name": "reference/generated/numpy.ma.masked_array.product", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.product.html", "dispname": "numpy.ma.masked_array.product"}, {"name": "reference/generated/numpy.ma.masked_array.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.ptp.html", "dispname": "numpy.ma.masked_array.ptp"}, {"name": "reference/generated/numpy.ma.masked_array.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.put.html", "dispname": "numpy.ma.masked_array.put"}, {"name": "reference/generated/numpy.ma.masked_array.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.ravel.html", "dispname": "numpy.ma.masked_array.ravel"}, {"name": "reference/generated/numpy.ma.masked_array.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.real.html", "dispname": "numpy.ma.masked_array.real"}, {"name": "reference/generated/numpy.ma.masked_array.recordmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.recordmask.html", "dispname": "numpy.ma.masked_array.recordmask"}, {"name": "reference/generated/numpy.ma.masked_array.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.repeat.html", "dispname": "numpy.ma.masked_array.repeat"}, {"name": "reference/generated/numpy.ma.masked_array.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.reshape.html", "dispname": "numpy.ma.masked_array.reshape"}, {"name": "reference/generated/numpy.ma.masked_array.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.resize.html", "dispname": "numpy.ma.masked_array.resize"}, {"name": "reference/generated/numpy.ma.masked_array.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.round.html", "dispname": "numpy.ma.masked_array.round"}, {"name": "reference/generated/numpy.ma.masked_array.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.searchsorted.html", "dispname": "numpy.ma.masked_array.searchsorted"}, {"name": "reference/generated/numpy.ma.masked_array.set_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.set_fill_value.html", "dispname": "numpy.ma.masked_array.set_fill_value"}, {"name": "reference/generated/numpy.ma.masked_array.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.setfield.html", "dispname": "numpy.ma.masked_array.setfield"}, {"name": "reference/generated/numpy.ma.masked_array.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.setflags.html", "dispname": "numpy.ma.masked_array.setflags"}, {"name": "reference/generated/numpy.ma.masked_array.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.shape.html", "dispname": "numpy.ma.masked_array.shape"}, {"name": "reference/generated/numpy.ma.masked_array.sharedmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.sharedmask.html", "dispname": "numpy.ma.masked_array.sharedmask"}, {"name": "reference/generated/numpy.ma.masked_array.shrink_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.shrink_mask.html", "dispname": "numpy.ma.masked_array.shrink_mask"}, {"name": "reference/generated/numpy.ma.masked_array.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.size.html", "dispname": "numpy.ma.masked_array.size"}, {"name": "reference/generated/numpy.ma.masked_array.soften_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.soften_mask.html", "dispname": "numpy.ma.masked_array.soften_mask"}, {"name": "reference/generated/numpy.ma.masked_array.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.sort.html", "dispname": "numpy.ma.masked_array.sort"}, {"name": "reference/generated/numpy.ma.masked_array.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.squeeze.html", "dispname": "numpy.ma.masked_array.squeeze"}, {"name": "reference/generated/numpy.ma.masked_array.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.std.html", "dispname": "numpy.ma.masked_array.std"}, {"name": "reference/generated/numpy.ma.masked_array.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.strides.html", "dispname": "numpy.ma.masked_array.strides"}, {"name": "reference/generated/numpy.ma.masked_array.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.sum.html", "dispname": "numpy.ma.masked_array.sum"}, {"name": "reference/generated/numpy.ma.masked_array.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.swapaxes.html", "dispname": "numpy.ma.masked_array.swapaxes"}, {"name": "reference/generated/numpy.ma.masked_array.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.take.html", "dispname": "numpy.ma.masked_array.take"}, {"name": "reference/generated/numpy.ma.masked_array.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.to_device.html", "dispname": "numpy.ma.masked_array.to_device"}, {"name": "reference/generated/numpy.ma.masked_array.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.tobytes.html", "dispname": "numpy.ma.masked_array.tobytes"}, {"name": "reference/generated/numpy.ma.masked_array.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.tofile.html", "dispname": "numpy.ma.masked_array.tofile"}, {"name": "reference/generated/numpy.ma.masked_array.toflex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.toflex.html", "dispname": "numpy.ma.masked_array.toflex"}, {"name": "reference/generated/numpy.ma.masked_array.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.tolist.html", "dispname": "numpy.ma.masked_array.tolist"}, {"name": "reference/generated/numpy.ma.masked_array.torecords", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.torecords.html", "dispname": "numpy.ma.masked_array.torecords"}, {"name": "reference/generated/numpy.ma.masked_array.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.tostring.html", "dispname": "numpy.ma.masked_array.tostring"}, {"name": "reference/generated/numpy.ma.masked_array.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.trace.html", "dispname": "numpy.ma.masked_array.trace"}, {"name": "reference/generated/numpy.ma.masked_array.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.transpose.html", "dispname": "numpy.ma.masked_array.transpose"}, {"name": "reference/generated/numpy.ma.masked_array.unshare_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.unshare_mask.html", "dispname": "numpy.ma.masked_array.unshare_mask"}, {"name": "reference/generated/numpy.ma.masked_array.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.var.html", "dispname": "numpy.ma.masked_array.var"}, {"name": "reference/generated/numpy.ma.masked_array.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_array.view.html", "dispname": "numpy.ma.masked_array.view"}, {"name": "reference/generated/numpy.ma.masked_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_equal.html", "dispname": "numpy.ma.masked_equal"}, {"name": "reference/generated/numpy.ma.masked_greater", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_greater.html", "dispname": "numpy.ma.masked_greater"}, {"name": "reference/generated/numpy.ma.masked_greater_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_greater_equal.html", "dispname": "numpy.ma.masked_greater_equal"}, {"name": "reference/generated/numpy.ma.masked_inside", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_inside.html", "dispname": "numpy.ma.masked_inside"}, {"name": "reference/generated/numpy.ma.masked_invalid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_invalid.html", "dispname": "numpy.ma.masked_invalid"}, {"name": "reference/generated/numpy.ma.masked_less", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_less.html", "dispname": "numpy.ma.masked_less"}, {"name": "reference/generated/numpy.ma.masked_less_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_less_equal.html", "dispname": "numpy.ma.masked_less_equal"}, {"name": "reference/generated/numpy.ma.masked_not_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_not_equal.html", "dispname": "numpy.ma.masked_not_equal"}, {"name": "reference/generated/numpy.ma.masked_object", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_object.html", "dispname": "numpy.ma.masked_object"}, {"name": "reference/generated/numpy.ma.masked_outside", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_outside.html", "dispname": "numpy.ma.masked_outside"}, {"name": "reference/generated/numpy.ma.masked_values", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_values.html", "dispname": "numpy.ma.masked_values"}, {"name": "reference/generated/numpy.ma.masked_where", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.masked_where.html", "dispname": "numpy.ma.masked_where"}, {"name": "reference/generated/numpy.ma.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.max.html", "dispname": "numpy.ma.max"}, {"name": "reference/generated/numpy.ma.maximum_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.maximum_fill_value.html", "dispname": "numpy.ma.maximum_fill_value"}, {"name": "reference/generated/numpy.ma.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.mean.html", "dispname": "numpy.ma.mean"}, {"name": "reference/generated/numpy.ma.median", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.median.html", "dispname": "numpy.ma.median"}, {"name": "reference/generated/numpy.ma.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.min.html", "dispname": "numpy.ma.min"}, {"name": "reference/generated/numpy.ma.minimum_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.minimum_fill_value.html", "dispname": "numpy.ma.minimum_fill_value"}, {"name": "reference/generated/numpy.ma.mr_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.mr_.html", "dispname": "numpy.ma.mr_"}, {"name": "reference/generated/numpy.ma.ndenumerate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ndenumerate.html", "dispname": "numpy.ma.ndenumerate"}, {"name": "reference/generated/numpy.ma.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ndim.html", "dispname": "numpy.ma.ndim"}, {"name": "reference/generated/numpy.ma.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.nonzero.html", "dispname": "numpy.ma.nonzero"}, {"name": "reference/generated/numpy.ma.notmasked_contiguous", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.notmasked_contiguous.html", "dispname": "numpy.ma.notmasked_contiguous"}, {"name": "reference/generated/numpy.ma.notmasked_edges", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.notmasked_edges.html", "dispname": "numpy.ma.notmasked_edges"}, {"name": "reference/generated/numpy.ma.ones", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ones.html", "dispname": "numpy.ma.ones"}, {"name": "reference/generated/numpy.ma.ones_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ones_like.html", "dispname": "numpy.ma.ones_like"}, {"name": "reference/generated/numpy.ma.outer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.outer.html", "dispname": "numpy.ma.outer"}, {"name": "reference/generated/numpy.ma.outerproduct", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.outerproduct.html", "dispname": "numpy.ma.outerproduct"}, {"name": "reference/generated/numpy.ma.polyfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.polyfit.html", "dispname": "numpy.ma.polyfit"}, {"name": "reference/generated/numpy.ma.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.power.html", "dispname": "numpy.ma.power"}, {"name": "reference/generated/numpy.ma.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.prod.html", "dispname": "numpy.ma.prod"}, {"name": "reference/generated/numpy.ma.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ptp.html", "dispname": "numpy.ma.ptp"}, {"name": "reference/generated/numpy.ma.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.put.html", "dispname": "numpy.ma.put"}, {"name": "reference/generated/numpy.ma.putmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.putmask.html", "dispname": "numpy.ma.putmask"}, {"name": "reference/generated/numpy.ma.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.ravel.html", "dispname": "numpy.ma.ravel"}, {"name": "reference/generated/numpy.ma.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.reshape.html", "dispname": "numpy.ma.reshape"}, {"name": "reference/generated/numpy.ma.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.resize.html", "dispname": "numpy.ma.resize"}, {"name": "reference/generated/numpy.ma.right_shift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.right_shift.html", "dispname": "numpy.ma.right_shift"}, {"name": "reference/generated/numpy.ma.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.round.html", "dispname": "numpy.ma.round"}, {"name": "reference/generated/numpy.ma.round_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.round_.html", "dispname": "numpy.ma.round_"}, {"name": "reference/generated/numpy.ma.set_fill_value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.set_fill_value.html", "dispname": "numpy.ma.set_fill_value"}, {"name": "reference/generated/numpy.ma.setdiff1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.setdiff1d.html", "dispname": "numpy.ma.setdiff1d"}, {"name": "reference/generated/numpy.ma.setxor1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.setxor1d.html", "dispname": "numpy.ma.setxor1d"}, {"name": "reference/generated/numpy.ma.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.shape.html", "dispname": "numpy.ma.shape"}, {"name": "reference/generated/numpy.ma.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.size.html", "dispname": "numpy.ma.size"}, {"name": "reference/generated/numpy.ma.soften_mask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.soften_mask.html", "dispname": "numpy.ma.soften_mask"}, {"name": "reference/generated/numpy.ma.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.sort.html", "dispname": "numpy.ma.sort"}, {"name": "reference/generated/numpy.ma.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.squeeze.html", "dispname": "numpy.ma.squeeze"}, {"name": "reference/generated/numpy.ma.stack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.stack.html", "dispname": "numpy.ma.stack"}, {"name": "reference/generated/numpy.ma.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.std.html", "dispname": "numpy.ma.std"}, {"name": "reference/generated/numpy.ma.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.sum.html", "dispname": "numpy.ma.sum"}, {"name": "reference/generated/numpy.ma.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.swapaxes.html", "dispname": "numpy.ma.swapaxes"}, {"name": "reference/generated/numpy.ma.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.take.html", "dispname": "numpy.ma.take"}, {"name": "reference/generated/numpy.ma.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.trace.html", "dispname": "numpy.ma.trace"}, {"name": "reference/generated/numpy.ma.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.transpose.html", "dispname": "numpy.ma.transpose"}, {"name": "reference/generated/numpy.ma.union1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.union1d.html", "dispname": "numpy.ma.union1d"}, {"name": "reference/generated/numpy.ma.unique", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.unique.html", "dispname": "numpy.ma.unique"}, {"name": "reference/generated/numpy.ma.vander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.vander.html", "dispname": "numpy.ma.vander"}, {"name": "reference/generated/numpy.ma.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.var.html", "dispname": "numpy.ma.var"}, {"name": "reference/generated/numpy.ma.vstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.vstack.html", "dispname": "numpy.ma.vstack"}, {"name": "reference/generated/numpy.ma.where", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.where.html", "dispname": "numpy.ma.where"}, {"name": "reference/generated/numpy.ma.zeros", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.zeros.html", "dispname": "numpy.ma.zeros"}, {"name": "reference/generated/numpy.ma.zeros_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ma.zeros_like.html", "dispname": "numpy.ma.zeros_like"}, {"name": "reference/generated/numpy.mask_indices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.mask_indices.html", "dispname": "numpy.mask_indices"}, {"name": "reference/generated/numpy.matlib.empty", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.empty.html", "dispname": "numpy.matlib.empty"}, {"name": "reference/generated/numpy.matlib.eye", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.eye.html", "dispname": "numpy.matlib.eye"}, {"name": "reference/generated/numpy.matlib.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.identity.html", "dispname": "numpy.matlib.identity"}, {"name": "reference/generated/numpy.matlib.ones", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.ones.html", "dispname": "numpy.matlib.ones"}, {"name": "reference/generated/numpy.matlib.rand", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.rand.html", "dispname": "numpy.matlib.rand"}, {"name": "reference/generated/numpy.matlib.randn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.randn.html", "dispname": "numpy.matlib.randn"}, {"name": "reference/generated/numpy.matlib.repmat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.repmat.html", "dispname": "numpy.matlib.repmat"}, {"name": "reference/generated/numpy.matlib.zeros", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matlib.zeros.html", "dispname": "numpy.matlib.zeros"}, {"name": "reference/generated/numpy.matmul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matmul.html", "dispname": "numpy.matmul"}, {"name": "reference/generated/numpy.matrix", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.html", "dispname": "numpy.matrix"}, {"name": "reference/generated/numpy.matrix.A", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.A.html", "dispname": "numpy.matrix.A"}, {"name": "reference/generated/numpy.matrix.A1", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.A1.html", "dispname": "numpy.matrix.A1"}, {"name": "reference/generated/numpy.matrix.H", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.H.html", "dispname": "numpy.matrix.H"}, {"name": "reference/generated/numpy.matrix.I", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.I.html", "dispname": "numpy.matrix.I"}, {"name": "reference/generated/numpy.matrix.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.T.html", "dispname": "numpy.matrix.T"}, {"name": "reference/generated/numpy.matrix.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.all.html", "dispname": "numpy.matrix.all"}, {"name": "reference/generated/numpy.matrix.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.any.html", "dispname": "numpy.matrix.any"}, {"name": "reference/generated/numpy.matrix.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.argmax.html", "dispname": "numpy.matrix.argmax"}, {"name": "reference/generated/numpy.matrix.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.argmin.html", "dispname": "numpy.matrix.argmin"}, {"name": "reference/generated/numpy.matrix.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.argpartition.html", "dispname": "numpy.matrix.argpartition"}, {"name": "reference/generated/numpy.matrix.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.argsort.html", "dispname": "numpy.matrix.argsort"}, {"name": "reference/generated/numpy.matrix.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.astype.html", "dispname": "numpy.matrix.astype"}, {"name": "reference/generated/numpy.matrix.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.base.html", "dispname": "numpy.matrix.base"}, {"name": "reference/generated/numpy.matrix.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.byteswap.html", "dispname": "numpy.matrix.byteswap"}, {"name": "reference/generated/numpy.matrix.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.choose.html", "dispname": "numpy.matrix.choose"}, {"name": "reference/generated/numpy.matrix.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.clip.html", "dispname": "numpy.matrix.clip"}, {"name": "reference/generated/numpy.matrix.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.compress.html", "dispname": "numpy.matrix.compress"}, {"name": "reference/generated/numpy.matrix.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.conj.html", "dispname": "numpy.matrix.conj"}, {"name": "reference/generated/numpy.matrix.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.conjugate.html", "dispname": "numpy.matrix.conjugate"}, {"name": "reference/generated/numpy.matrix.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.copy.html", "dispname": "numpy.matrix.copy"}, {"name": "reference/generated/numpy.matrix.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.ctypes.html", "dispname": "numpy.matrix.ctypes"}, {"name": "reference/generated/numpy.matrix.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.cumprod.html", "dispname": "numpy.matrix.cumprod"}, {"name": "reference/generated/numpy.matrix.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.cumsum.html", "dispname": "numpy.matrix.cumsum"}, {"name": "reference/generated/numpy.matrix.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.data.html", "dispname": "numpy.matrix.data"}, {"name": "reference/generated/numpy.matrix.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.device.html", "dispname": "numpy.matrix.device"}, {"name": "reference/generated/numpy.matrix.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.diagonal.html", "dispname": "numpy.matrix.diagonal"}, {"name": "reference/generated/numpy.matrix.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.dot.html", "dispname": "numpy.matrix.dot"}, {"name": "reference/generated/numpy.matrix.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.dtype.html", "dispname": "numpy.matrix.dtype"}, {"name": "reference/generated/numpy.matrix.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.dump.html", "dispname": "numpy.matrix.dump"}, {"name": "reference/generated/numpy.matrix.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.dumps.html", "dispname": "numpy.matrix.dumps"}, {"name": "reference/generated/numpy.matrix.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.fill.html", "dispname": "numpy.matrix.fill"}, {"name": "reference/generated/numpy.matrix.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.flags.html", "dispname": "numpy.matrix.flags"}, {"name": "reference/generated/numpy.matrix.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.flat.html", "dispname": "numpy.matrix.flat"}, {"name": "reference/generated/numpy.matrix.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.flatten.html", "dispname": "numpy.matrix.flatten"}, {"name": "reference/generated/numpy.matrix.getA", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.getA.html", "dispname": "numpy.matrix.getA"}, {"name": "reference/generated/numpy.matrix.getA1", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.getA1.html", "dispname": "numpy.matrix.getA1"}, {"name": "reference/generated/numpy.matrix.getH", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.getH.html", "dispname": "numpy.matrix.getH"}, {"name": "reference/generated/numpy.matrix.getI", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.getI.html", "dispname": "numpy.matrix.getI"}, {"name": "reference/generated/numpy.matrix.getT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.getT.html", "dispname": "numpy.matrix.getT"}, {"name": "reference/generated/numpy.matrix.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.getfield.html", "dispname": "numpy.matrix.getfield"}, {"name": "reference/generated/numpy.matrix.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.imag.html", "dispname": "numpy.matrix.imag"}, {"name": "reference/generated/numpy.matrix.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.item.html", "dispname": "numpy.matrix.item"}, {"name": "reference/generated/numpy.matrix.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.itemset.html", "dispname": "numpy.matrix.itemset"}, {"name": "reference/generated/numpy.matrix.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.itemsize.html", "dispname": "numpy.matrix.itemsize"}, {"name": "reference/generated/numpy.matrix.mT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.mT.html", "dispname": "numpy.matrix.mT"}, {"name": "reference/generated/numpy.matrix.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.max.html", "dispname": "numpy.matrix.max"}, {"name": "reference/generated/numpy.matrix.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.mean.html", "dispname": "numpy.matrix.mean"}, {"name": "reference/generated/numpy.matrix.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.min.html", "dispname": "numpy.matrix.min"}, {"name": "reference/generated/numpy.matrix.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.nbytes.html", "dispname": "numpy.matrix.nbytes"}, {"name": "reference/generated/numpy.matrix.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.ndim.html", "dispname": "numpy.matrix.ndim"}, {"name": "reference/generated/numpy.matrix.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.newbyteorder.html", "dispname": "numpy.matrix.newbyteorder"}, {"name": "reference/generated/numpy.matrix.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.nonzero.html", "dispname": "numpy.matrix.nonzero"}, {"name": "reference/generated/numpy.matrix.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.partition.html", "dispname": "numpy.matrix.partition"}, {"name": "reference/generated/numpy.matrix.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.prod.html", "dispname": "numpy.matrix.prod"}, {"name": "reference/generated/numpy.matrix.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.ptp.html", "dispname": "numpy.matrix.ptp"}, {"name": "reference/generated/numpy.matrix.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.put.html", "dispname": "numpy.matrix.put"}, {"name": "reference/generated/numpy.matrix.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.ravel.html", "dispname": "numpy.matrix.ravel"}, {"name": "reference/generated/numpy.matrix.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.real.html", "dispname": "numpy.matrix.real"}, {"name": "reference/generated/numpy.matrix.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.repeat.html", "dispname": "numpy.matrix.repeat"}, {"name": "reference/generated/numpy.matrix.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.reshape.html", "dispname": "numpy.matrix.reshape"}, {"name": "reference/generated/numpy.matrix.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.resize.html", "dispname": "numpy.matrix.resize"}, {"name": "reference/generated/numpy.matrix.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.round.html", "dispname": "numpy.matrix.round"}, {"name": "reference/generated/numpy.matrix.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.searchsorted.html", "dispname": "numpy.matrix.searchsorted"}, {"name": "reference/generated/numpy.matrix.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.setfield.html", "dispname": "numpy.matrix.setfield"}, {"name": "reference/generated/numpy.matrix.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.setflags.html", "dispname": "numpy.matrix.setflags"}, {"name": "reference/generated/numpy.matrix.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.shape.html", "dispname": "numpy.matrix.shape"}, {"name": "reference/generated/numpy.matrix.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.size.html", "dispname": "numpy.matrix.size"}, {"name": "reference/generated/numpy.matrix.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.sort.html", "dispname": "numpy.matrix.sort"}, {"name": "reference/generated/numpy.matrix.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.squeeze.html", "dispname": "numpy.matrix.squeeze"}, {"name": "reference/generated/numpy.matrix.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.std.html", "dispname": "numpy.matrix.std"}, {"name": "reference/generated/numpy.matrix.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.strides.html", "dispname": "numpy.matrix.strides"}, {"name": "reference/generated/numpy.matrix.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.sum.html", "dispname": "numpy.matrix.sum"}, {"name": "reference/generated/numpy.matrix.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.swapaxes.html", "dispname": "numpy.matrix.swapaxes"}, {"name": "reference/generated/numpy.matrix.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.take.html", "dispname": "numpy.matrix.take"}, {"name": "reference/generated/numpy.matrix.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.to_device.html", "dispname": "numpy.matrix.to_device"}, {"name": "reference/generated/numpy.matrix.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.tobytes.html", "dispname": "numpy.matrix.tobytes"}, {"name": "reference/generated/numpy.matrix.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.tofile.html", "dispname": "numpy.matrix.tofile"}, {"name": "reference/generated/numpy.matrix.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.tolist.html", "dispname": "numpy.matrix.tolist"}, {"name": "reference/generated/numpy.matrix.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.tostring.html", "dispname": "numpy.matrix.tostring"}, {"name": "reference/generated/numpy.matrix.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.trace.html", "dispname": "numpy.matrix.trace"}, {"name": "reference/generated/numpy.matrix.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.transpose.html", "dispname": "numpy.matrix.transpose"}, {"name": "reference/generated/numpy.matrix.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.var.html", "dispname": "numpy.matrix.var"}, {"name": "reference/generated/numpy.matrix.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix.view.html", "dispname": "numpy.matrix.view"}, {"name": "reference/generated/numpy.matrix_transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.matrix_transpose.html", "dispname": "numpy.matrix_transpose"}, {"name": "reference/generated/numpy.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.max.html", "dispname": "numpy.max"}, {"name": "reference/generated/numpy.maximum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.maximum.html", "dispname": "numpy.maximum"}, {"name": "reference/generated/numpy.may_share_memory", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.may_share_memory.html", "dispname": "numpy.may_share_memory"}, {"name": "reference/generated/numpy.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.mean.html", "dispname": "numpy.mean"}, {"name": "reference/generated/numpy.median", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.median.html", "dispname": "numpy.median"}, {"name": "reference/generated/numpy.memmap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.html", "dispname": "numpy.memmap"}, {"name": "reference/generated/numpy.memmap.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.T.html", "dispname": "numpy.memmap.T"}, {"name": "reference/generated/numpy.memmap.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.all.html", "dispname": "numpy.memmap.all"}, {"name": "reference/generated/numpy.memmap.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.any.html", "dispname": "numpy.memmap.any"}, {"name": "reference/generated/numpy.memmap.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.argmax.html", "dispname": "numpy.memmap.argmax"}, {"name": "reference/generated/numpy.memmap.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.argmin.html", "dispname": "numpy.memmap.argmin"}, {"name": "reference/generated/numpy.memmap.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.argpartition.html", "dispname": "numpy.memmap.argpartition"}, {"name": "reference/generated/numpy.memmap.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.argsort.html", "dispname": "numpy.memmap.argsort"}, {"name": "reference/generated/numpy.memmap.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.astype.html", "dispname": "numpy.memmap.astype"}, {"name": "reference/generated/numpy.memmap.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.base.html", "dispname": "numpy.memmap.base"}, {"name": "reference/generated/numpy.memmap.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.byteswap.html", "dispname": "numpy.memmap.byteswap"}, {"name": "reference/generated/numpy.memmap.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.choose.html", "dispname": "numpy.memmap.choose"}, {"name": "reference/generated/numpy.memmap.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.clip.html", "dispname": "numpy.memmap.clip"}, {"name": "reference/generated/numpy.memmap.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.compress.html", "dispname": "numpy.memmap.compress"}, {"name": "reference/generated/numpy.memmap.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.conj.html", "dispname": "numpy.memmap.conj"}, {"name": "reference/generated/numpy.memmap.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.conjugate.html", "dispname": "numpy.memmap.conjugate"}, {"name": "reference/generated/numpy.memmap.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.copy.html", "dispname": "numpy.memmap.copy"}, {"name": "reference/generated/numpy.memmap.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.ctypes.html", "dispname": "numpy.memmap.ctypes"}, {"name": "reference/generated/numpy.memmap.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.cumprod.html", "dispname": "numpy.memmap.cumprod"}, {"name": "reference/generated/numpy.memmap.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.cumsum.html", "dispname": "numpy.memmap.cumsum"}, {"name": "reference/generated/numpy.memmap.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.data.html", "dispname": "numpy.memmap.data"}, {"name": "reference/generated/numpy.memmap.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.device.html", "dispname": "numpy.memmap.device"}, {"name": "reference/generated/numpy.memmap.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.diagonal.html", "dispname": "numpy.memmap.diagonal"}, {"name": "reference/generated/numpy.memmap.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.dot.html", "dispname": "numpy.memmap.dot"}, {"name": "reference/generated/numpy.memmap.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.dtype.html", "dispname": "numpy.memmap.dtype"}, {"name": "reference/generated/numpy.memmap.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.dump.html", "dispname": "numpy.memmap.dump"}, {"name": "reference/generated/numpy.memmap.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.dumps.html", "dispname": "numpy.memmap.dumps"}, {"name": "reference/generated/numpy.memmap.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.fill.html", "dispname": "numpy.memmap.fill"}, {"name": "reference/generated/numpy.memmap.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.flags.html", "dispname": "numpy.memmap.flags"}, {"name": "reference/generated/numpy.memmap.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.flat.html", "dispname": "numpy.memmap.flat"}, {"name": "reference/generated/numpy.memmap.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.flatten.html", "dispname": "numpy.memmap.flatten"}, {"name": "reference/generated/numpy.memmap.flush", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.flush.html", "dispname": "numpy.memmap.flush"}, {"name": "reference/generated/numpy.memmap.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.getfield.html", "dispname": "numpy.memmap.getfield"}, {"name": "reference/generated/numpy.memmap.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.imag.html", "dispname": "numpy.memmap.imag"}, {"name": "reference/generated/numpy.memmap.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.item.html", "dispname": "numpy.memmap.item"}, {"name": "reference/generated/numpy.memmap.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.itemset.html", "dispname": "numpy.memmap.itemset"}, {"name": "reference/generated/numpy.memmap.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.itemsize.html", "dispname": "numpy.memmap.itemsize"}, {"name": "reference/generated/numpy.memmap.mT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.mT.html", "dispname": "numpy.memmap.mT"}, {"name": "reference/generated/numpy.memmap.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.max.html", "dispname": "numpy.memmap.max"}, {"name": "reference/generated/numpy.memmap.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.mean.html", "dispname": "numpy.memmap.mean"}, {"name": "reference/generated/numpy.memmap.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.min.html", "dispname": "numpy.memmap.min"}, {"name": "reference/generated/numpy.memmap.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.nbytes.html", "dispname": "numpy.memmap.nbytes"}, {"name": "reference/generated/numpy.memmap.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.ndim.html", "dispname": "numpy.memmap.ndim"}, {"name": "reference/generated/numpy.memmap.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.newbyteorder.html", "dispname": "numpy.memmap.newbyteorder"}, {"name": "reference/generated/numpy.memmap.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.nonzero.html", "dispname": "numpy.memmap.nonzero"}, {"name": "reference/generated/numpy.memmap.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.partition.html", "dispname": "numpy.memmap.partition"}, {"name": "reference/generated/numpy.memmap.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.prod.html", "dispname": "numpy.memmap.prod"}, {"name": "reference/generated/numpy.memmap.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.ptp.html", "dispname": "numpy.memmap.ptp"}, {"name": "reference/generated/numpy.memmap.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.put.html", "dispname": "numpy.memmap.put"}, {"name": "reference/generated/numpy.memmap.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.ravel.html", "dispname": "numpy.memmap.ravel"}, {"name": "reference/generated/numpy.memmap.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.real.html", "dispname": "numpy.memmap.real"}, {"name": "reference/generated/numpy.memmap.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.repeat.html", "dispname": "numpy.memmap.repeat"}, {"name": "reference/generated/numpy.memmap.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.reshape.html", "dispname": "numpy.memmap.reshape"}, {"name": "reference/generated/numpy.memmap.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.resize.html", "dispname": "numpy.memmap.resize"}, {"name": "reference/generated/numpy.memmap.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.round.html", "dispname": "numpy.memmap.round"}, {"name": "reference/generated/numpy.memmap.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.searchsorted.html", "dispname": "numpy.memmap.searchsorted"}, {"name": "reference/generated/numpy.memmap.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.setfield.html", "dispname": "numpy.memmap.setfield"}, {"name": "reference/generated/numpy.memmap.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.setflags.html", "dispname": "numpy.memmap.setflags"}, {"name": "reference/generated/numpy.memmap.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.shape.html", "dispname": "numpy.memmap.shape"}, {"name": "reference/generated/numpy.memmap.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.size.html", "dispname": "numpy.memmap.size"}, {"name": "reference/generated/numpy.memmap.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.sort.html", "dispname": "numpy.memmap.sort"}, {"name": "reference/generated/numpy.memmap.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.squeeze.html", "dispname": "numpy.memmap.squeeze"}, {"name": "reference/generated/numpy.memmap.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.std.html", "dispname": "numpy.memmap.std"}, {"name": "reference/generated/numpy.memmap.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.strides.html", "dispname": "numpy.memmap.strides"}, {"name": "reference/generated/numpy.memmap.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.sum.html", "dispname": "numpy.memmap.sum"}, {"name": "reference/generated/numpy.memmap.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.swapaxes.html", "dispname": "numpy.memmap.swapaxes"}, {"name": "reference/generated/numpy.memmap.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.take.html", "dispname": "numpy.memmap.take"}, {"name": "reference/generated/numpy.memmap.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.to_device.html", "dispname": "numpy.memmap.to_device"}, {"name": "reference/generated/numpy.memmap.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.tobytes.html", "dispname": "numpy.memmap.tobytes"}, {"name": "reference/generated/numpy.memmap.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.tofile.html", "dispname": "numpy.memmap.tofile"}, {"name": "reference/generated/numpy.memmap.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.tolist.html", "dispname": "numpy.memmap.tolist"}, {"name": "reference/generated/numpy.memmap.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.tostring.html", "dispname": "numpy.memmap.tostring"}, {"name": "reference/generated/numpy.memmap.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.trace.html", "dispname": "numpy.memmap.trace"}, {"name": "reference/generated/numpy.memmap.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.transpose.html", "dispname": "numpy.memmap.transpose"}, {"name": "reference/generated/numpy.memmap.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.var.html", "dispname": "numpy.memmap.var"}, {"name": "reference/generated/numpy.memmap.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.memmap.view.html", "dispname": "numpy.memmap.view"}, {"name": "reference/generated/numpy.meshgrid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.meshgrid.html", "dispname": "numpy.meshgrid"}, {"name": "reference/generated/numpy.mgrid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.mgrid.html", "dispname": "numpy.mgrid"}, {"name": "reference/generated/numpy.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.min.html", "dispname": "numpy.min"}, {"name": "reference/generated/numpy.min_scalar_type", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.min_scalar_type.html", "dispname": "numpy.min_scalar_type"}, {"name": "reference/generated/numpy.minimum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.minimum.html", "dispname": "numpy.minimum"}, {"name": "reference/generated/numpy.mintypecode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.mintypecode.html", "dispname": "numpy.mintypecode"}, {"name": "reference/generated/numpy.mod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.mod.html", "dispname": "numpy.mod"}, {"name": "reference/generated/numpy.modf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.modf.html", "dispname": "numpy.modf"}, {"name": "reference/generated/numpy.moveaxis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.moveaxis.html", "dispname": "numpy.moveaxis"}, {"name": "reference/generated/numpy.multiply", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.multiply.html", "dispname": "numpy.multiply"}, {"name": "reference/generated/numpy.nan_to_num", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nan_to_num.html", "dispname": "numpy.nan_to_num"}, {"name": "reference/generated/numpy.nanargmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanargmax.html", "dispname": "numpy.nanargmax"}, {"name": "reference/generated/numpy.nanargmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanargmin.html", "dispname": "numpy.nanargmin"}, {"name": "reference/generated/numpy.nancumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nancumprod.html", "dispname": "numpy.nancumprod"}, {"name": "reference/generated/numpy.nancumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nancumsum.html", "dispname": "numpy.nancumsum"}, {"name": "reference/generated/numpy.nanmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanmax.html", "dispname": "numpy.nanmax"}, {"name": "reference/generated/numpy.nanmean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanmean.html", "dispname": "numpy.nanmean"}, {"name": "reference/generated/numpy.nanmedian", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanmedian.html", "dispname": "numpy.nanmedian"}, {"name": "reference/generated/numpy.nanmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanmin.html", "dispname": "numpy.nanmin"}, {"name": "reference/generated/numpy.nanpercentile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanpercentile.html", "dispname": "numpy.nanpercentile"}, {"name": "reference/generated/numpy.nanprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanprod.html", "dispname": "numpy.nanprod"}, {"name": "reference/generated/numpy.nanquantile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanquantile.html", "dispname": "numpy.nanquantile"}, {"name": "reference/generated/numpy.nanstd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanstd.html", "dispname": "numpy.nanstd"}, {"name": "reference/generated/numpy.nansum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nansum.html", "dispname": "numpy.nansum"}, {"name": "reference/generated/numpy.nanvar", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nanvar.html", "dispname": "numpy.nanvar"}, {"name": "reference/generated/numpy.ndarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.html", "dispname": "numpy.ndarray"}, {"name": "reference/generated/numpy.ndarray.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.T.html", "dispname": "numpy.ndarray.T"}, {"name": "reference/generated/numpy.ndarray.__abs__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__abs__.html", "dispname": "numpy.ndarray.__abs__"}, {"name": "reference/generated/numpy.ndarray.__add__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__add__.html", "dispname": "numpy.ndarray.__add__"}, {"name": "reference/generated/numpy.ndarray.__and__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__and__.html", "dispname": "numpy.ndarray.__and__"}, {"name": "reference/generated/numpy.ndarray.__array__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__array__.html", "dispname": "numpy.ndarray.__array__"}, {"name": "reference/generated/numpy.ndarray.__array_wrap__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__array_wrap__.html", "dispname": "numpy.ndarray.__array_wrap__"}, {"name": "reference/generated/numpy.ndarray.__bool__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__bool__.html", "dispname": "numpy.ndarray.__bool__"}, {"name": "reference/generated/numpy.ndarray.__class_getitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__class_getitem__.html", "dispname": "numpy.ndarray.__class_getitem__"}, {"name": "reference/generated/numpy.ndarray.__complex__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__complex__.html", "dispname": "numpy.ndarray.__complex__"}, {"name": "reference/generated/numpy.ndarray.__contains__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__contains__.html", "dispname": "numpy.ndarray.__contains__"}, {"name": "reference/generated/numpy.ndarray.__copy__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__copy__.html", "dispname": "numpy.ndarray.__copy__"}, {"name": "reference/generated/numpy.ndarray.__deepcopy__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__deepcopy__.html", "dispname": "numpy.ndarray.__deepcopy__"}, {"name": "reference/generated/numpy.ndarray.__divmod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__divmod__.html", "dispname": "numpy.ndarray.__divmod__"}, {"name": "reference/generated/numpy.ndarray.__eq__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__eq__.html", "dispname": "numpy.ndarray.__eq__"}, {"name": "reference/generated/numpy.ndarray.__float__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__float__.html", "dispname": "numpy.ndarray.__float__"}, {"name": "reference/generated/numpy.ndarray.__floordiv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__floordiv__.html", "dispname": "numpy.ndarray.__floordiv__"}, {"name": "reference/generated/numpy.ndarray.__ge__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ge__.html", "dispname": "numpy.ndarray.__ge__"}, {"name": "reference/generated/numpy.ndarray.__getitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__getitem__.html", "dispname": "numpy.ndarray.__getitem__"}, {"name": "reference/generated/numpy.ndarray.__gt__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__gt__.html", "dispname": "numpy.ndarray.__gt__"}, {"name": "reference/generated/numpy.ndarray.__iadd__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__iadd__.html", "dispname": "numpy.ndarray.__iadd__"}, {"name": "reference/generated/numpy.ndarray.__iand__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__iand__.html", "dispname": "numpy.ndarray.__iand__"}, {"name": "reference/generated/numpy.ndarray.__ifloordiv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ifloordiv__.html", "dispname": "numpy.ndarray.__ifloordiv__"}, {"name": "reference/generated/numpy.ndarray.__ilshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ilshift__.html", "dispname": "numpy.ndarray.__ilshift__"}, {"name": "reference/generated/numpy.ndarray.__imod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__imod__.html", "dispname": "numpy.ndarray.__imod__"}, {"name": "reference/generated/numpy.ndarray.__imul__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__imul__.html", "dispname": "numpy.ndarray.__imul__"}, {"name": "reference/generated/numpy.ndarray.__int__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__int__.html", "dispname": "numpy.ndarray.__int__"}, {"name": "reference/generated/numpy.ndarray.__invert__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__invert__.html", "dispname": "numpy.ndarray.__invert__"}, {"name": "reference/generated/numpy.ndarray.__ior__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ior__.html", "dispname": "numpy.ndarray.__ior__"}, {"name": "reference/generated/numpy.ndarray.__ipow__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ipow__.html", "dispname": "numpy.ndarray.__ipow__"}, {"name": "reference/generated/numpy.ndarray.__irshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__irshift__.html", "dispname": "numpy.ndarray.__irshift__"}, {"name": "reference/generated/numpy.ndarray.__isub__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__isub__.html", "dispname": "numpy.ndarray.__isub__"}, {"name": "reference/generated/numpy.ndarray.__itruediv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__itruediv__.html", "dispname": "numpy.ndarray.__itruediv__"}, {"name": "reference/generated/numpy.ndarray.__ixor__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ixor__.html", "dispname": "numpy.ndarray.__ixor__"}, {"name": "reference/generated/numpy.ndarray.__le__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__le__.html", "dispname": "numpy.ndarray.__le__"}, {"name": "reference/generated/numpy.ndarray.__len__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__len__.html", "dispname": "numpy.ndarray.__len__"}, {"name": "reference/generated/numpy.ndarray.__lshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__lshift__.html", "dispname": "numpy.ndarray.__lshift__"}, {"name": "reference/generated/numpy.ndarray.__lt__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__lt__.html", "dispname": "numpy.ndarray.__lt__"}, {"name": "reference/generated/numpy.ndarray.__matmul__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__matmul__.html", "dispname": "numpy.ndarray.__matmul__"}, {"name": "reference/generated/numpy.ndarray.__mod__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__mod__.html", "dispname": "numpy.ndarray.__mod__"}, {"name": "reference/generated/numpy.ndarray.__mul__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__mul__.html", "dispname": "numpy.ndarray.__mul__"}, {"name": "reference/generated/numpy.ndarray.__ne__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__ne__.html", "dispname": "numpy.ndarray.__ne__"}, {"name": "reference/generated/numpy.ndarray.__neg__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__neg__.html", "dispname": "numpy.ndarray.__neg__"}, {"name": "reference/generated/numpy.ndarray.__new__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__new__.html", "dispname": "numpy.ndarray.__new__"}, {"name": "reference/generated/numpy.ndarray.__or__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__or__.html", "dispname": "numpy.ndarray.__or__"}, {"name": "reference/generated/numpy.ndarray.__pos__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__pos__.html", "dispname": "numpy.ndarray.__pos__"}, {"name": "reference/generated/numpy.ndarray.__pow__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__pow__.html", "dispname": "numpy.ndarray.__pow__"}, {"name": "reference/generated/numpy.ndarray.__reduce__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__reduce__.html", "dispname": "numpy.ndarray.__reduce__"}, {"name": "reference/generated/numpy.ndarray.__repr__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__repr__.html", "dispname": "numpy.ndarray.__repr__"}, {"name": "reference/generated/numpy.ndarray.__rshift__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__rshift__.html", "dispname": "numpy.ndarray.__rshift__"}, {"name": "reference/generated/numpy.ndarray.__setitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__setitem__.html", "dispname": "numpy.ndarray.__setitem__"}, {"name": "reference/generated/numpy.ndarray.__setstate__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__setstate__.html", "dispname": "numpy.ndarray.__setstate__"}, {"name": "reference/generated/numpy.ndarray.__str__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__str__.html", "dispname": "numpy.ndarray.__str__"}, {"name": "reference/generated/numpy.ndarray.__sub__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__sub__.html", "dispname": "numpy.ndarray.__sub__"}, {"name": "reference/generated/numpy.ndarray.__truediv__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__truediv__.html", "dispname": "numpy.ndarray.__truediv__"}, {"name": "reference/generated/numpy.ndarray.__xor__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.__xor__.html", "dispname": "numpy.ndarray.__xor__"}, {"name": "reference/generated/numpy.ndarray.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.all.html", "dispname": "numpy.ndarray.all"}, {"name": "reference/generated/numpy.ndarray.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.any.html", "dispname": "numpy.ndarray.any"}, {"name": "reference/generated/numpy.ndarray.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.argmax.html", "dispname": "numpy.ndarray.argmax"}, {"name": "reference/generated/numpy.ndarray.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.argmin.html", "dispname": "numpy.ndarray.argmin"}, {"name": "reference/generated/numpy.ndarray.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.argpartition.html", "dispname": "numpy.ndarray.argpartition"}, {"name": "reference/generated/numpy.ndarray.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.argsort.html", "dispname": "numpy.ndarray.argsort"}, {"name": "reference/generated/numpy.ndarray.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.astype.html", "dispname": "numpy.ndarray.astype"}, {"name": "reference/generated/numpy.ndarray.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.base.html", "dispname": "numpy.ndarray.base"}, {"name": "reference/generated/numpy.ndarray.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.byteswap.html", "dispname": "numpy.ndarray.byteswap"}, {"name": "reference/generated/numpy.ndarray.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.choose.html", "dispname": "numpy.ndarray.choose"}, {"name": "reference/generated/numpy.ndarray.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.clip.html", "dispname": "numpy.ndarray.clip"}, {"name": "reference/generated/numpy.ndarray.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.compress.html", "dispname": "numpy.ndarray.compress"}, {"name": "reference/generated/numpy.ndarray.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.conj.html", "dispname": "numpy.ndarray.conj"}, {"name": "reference/generated/numpy.ndarray.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.conjugate.html", "dispname": "numpy.ndarray.conjugate"}, {"name": "reference/generated/numpy.ndarray.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.copy.html", "dispname": "numpy.ndarray.copy"}, {"name": "reference/generated/numpy.ndarray.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.ctypes.html", "dispname": "numpy.ndarray.ctypes"}, {"name": "reference/generated/numpy.ndarray.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.cumprod.html", "dispname": "numpy.ndarray.cumprod"}, {"name": "reference/generated/numpy.ndarray.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.cumsum.html", "dispname": "numpy.ndarray.cumsum"}, {"name": "reference/generated/numpy.ndarray.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.data.html", "dispname": "numpy.ndarray.data"}, {"name": "reference/generated/numpy.ndarray.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.device.html", "dispname": "numpy.ndarray.device"}, {"name": "reference/generated/numpy.ndarray.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.diagonal.html", "dispname": "numpy.ndarray.diagonal"}, {"name": "reference/generated/numpy.ndarray.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.dot.html", "dispname": "numpy.ndarray.dot"}, {"name": "reference/generated/numpy.ndarray.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.dtype.html", "dispname": "numpy.ndarray.dtype"}, {"name": "reference/generated/numpy.ndarray.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.dump.html", "dispname": "numpy.ndarray.dump"}, {"name": "reference/generated/numpy.ndarray.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.dumps.html", "dispname": "numpy.ndarray.dumps"}, {"name": "reference/generated/numpy.ndarray.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.fill.html", "dispname": "numpy.ndarray.fill"}, {"name": "reference/generated/numpy.ndarray.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.flags.html", "dispname": "numpy.ndarray.flags"}, {"name": "reference/generated/numpy.ndarray.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.flat.html", "dispname": "numpy.ndarray.flat"}, {"name": "reference/generated/numpy.ndarray.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.flatten.html", "dispname": "numpy.ndarray.flatten"}, {"name": "reference/generated/numpy.ndarray.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.getfield.html", "dispname": "numpy.ndarray.getfield"}, {"name": "reference/generated/numpy.ndarray.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.imag.html", "dispname": "numpy.ndarray.imag"}, {"name": "reference/generated/numpy.ndarray.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.item.html", "dispname": "numpy.ndarray.item"}, {"name": "reference/generated/numpy.ndarray.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.itemset.html", "dispname": "numpy.ndarray.itemset"}, {"name": "reference/generated/numpy.ndarray.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.itemsize.html", "dispname": "numpy.ndarray.itemsize"}, {"name": "reference/generated/numpy.ndarray.mT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.mT.html", "dispname": "numpy.ndarray.mT"}, {"name": "reference/generated/numpy.ndarray.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.max.html", "dispname": "numpy.ndarray.max"}, {"name": "reference/generated/numpy.ndarray.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.mean.html", "dispname": "numpy.ndarray.mean"}, {"name": "reference/generated/numpy.ndarray.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.min.html", "dispname": "numpy.ndarray.min"}, {"name": "reference/generated/numpy.ndarray.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.nbytes.html", "dispname": "numpy.ndarray.nbytes"}, {"name": "reference/generated/numpy.ndarray.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.ndim.html", "dispname": "numpy.ndarray.ndim"}, {"name": "reference/generated/numpy.ndarray.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.newbyteorder.html", "dispname": "numpy.ndarray.newbyteorder"}, {"name": "reference/generated/numpy.ndarray.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.nonzero.html", "dispname": "numpy.ndarray.nonzero"}, {"name": "reference/generated/numpy.ndarray.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.partition.html", "dispname": "numpy.ndarray.partition"}, {"name": "reference/generated/numpy.ndarray.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.prod.html", "dispname": "numpy.ndarray.prod"}, {"name": "reference/generated/numpy.ndarray.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.ptp.html", "dispname": "numpy.ndarray.ptp"}, {"name": "reference/generated/numpy.ndarray.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.put.html", "dispname": "numpy.ndarray.put"}, {"name": "reference/generated/numpy.ndarray.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.ravel.html", "dispname": "numpy.ndarray.ravel"}, {"name": "reference/generated/numpy.ndarray.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.real.html", "dispname": "numpy.ndarray.real"}, {"name": "reference/generated/numpy.ndarray.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.repeat.html", "dispname": "numpy.ndarray.repeat"}, {"name": "reference/generated/numpy.ndarray.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.reshape.html", "dispname": "numpy.ndarray.reshape"}, {"name": "reference/generated/numpy.ndarray.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.resize.html", "dispname": "numpy.ndarray.resize"}, {"name": "reference/generated/numpy.ndarray.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.round.html", "dispname": "numpy.ndarray.round"}, {"name": "reference/generated/numpy.ndarray.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.searchsorted.html", "dispname": "numpy.ndarray.searchsorted"}, {"name": "reference/generated/numpy.ndarray.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.setfield.html", "dispname": "numpy.ndarray.setfield"}, {"name": "reference/generated/numpy.ndarray.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.setflags.html", "dispname": "numpy.ndarray.setflags"}, {"name": "reference/generated/numpy.ndarray.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.shape.html", "dispname": "numpy.ndarray.shape"}, {"name": "reference/generated/numpy.ndarray.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.size.html", "dispname": "numpy.ndarray.size"}, {"name": "reference/generated/numpy.ndarray.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.sort.html", "dispname": "numpy.ndarray.sort"}, {"name": "reference/generated/numpy.ndarray.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.squeeze.html", "dispname": "numpy.ndarray.squeeze"}, {"name": "reference/generated/numpy.ndarray.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.std.html", "dispname": "numpy.ndarray.std"}, {"name": "reference/generated/numpy.ndarray.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.strides.html", "dispname": "numpy.ndarray.strides"}, {"name": "reference/generated/numpy.ndarray.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.sum.html", "dispname": "numpy.ndarray.sum"}, {"name": "reference/generated/numpy.ndarray.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.swapaxes.html", "dispname": "numpy.ndarray.swapaxes"}, {"name": "reference/generated/numpy.ndarray.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.take.html", "dispname": "numpy.ndarray.take"}, {"name": "reference/generated/numpy.ndarray.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.to_device.html", "dispname": "numpy.ndarray.to_device"}, {"name": "reference/generated/numpy.ndarray.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.tobytes.html", "dispname": "numpy.ndarray.tobytes"}, {"name": "reference/generated/numpy.ndarray.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.tofile.html", "dispname": "numpy.ndarray.tofile"}, {"name": "reference/generated/numpy.ndarray.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.tolist.html", "dispname": "numpy.ndarray.tolist"}, {"name": "reference/generated/numpy.ndarray.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.tostring.html", "dispname": "numpy.ndarray.tostring"}, {"name": "reference/generated/numpy.ndarray.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.trace.html", "dispname": "numpy.ndarray.trace"}, {"name": "reference/generated/numpy.ndarray.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.transpose.html", "dispname": "numpy.ndarray.transpose"}, {"name": "reference/generated/numpy.ndarray.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.var.html", "dispname": "numpy.ndarray.var"}, {"name": "reference/generated/numpy.ndarray.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndarray.view.html", "dispname": "numpy.ndarray.view"}, {"name": "reference/generated/numpy.ndenumerate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndenumerate.html", "dispname": "numpy.ndenumerate"}, {"name": "reference/generated/numpy.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndim.html", "dispname": "numpy.ndim"}, {"name": "reference/generated/numpy.ndindex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndindex.html", "dispname": "numpy.ndindex"}, {"name": "reference/generated/numpy.ndindex.ndincr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ndindex.ndincr.html", "dispname": "numpy.ndindex.ndincr"}, {"name": "reference/generated/numpy.nditer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.html", "dispname": "numpy.nditer"}, {"name": "reference/generated/numpy.nditer.close", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.close.html", "dispname": "numpy.nditer.close"}, {"name": "reference/generated/numpy.nditer.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.copy.html", "dispname": "numpy.nditer.copy"}, {"name": "reference/generated/numpy.nditer.debug_print", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.debug_print.html", "dispname": "numpy.nditer.debug_print"}, {"name": "reference/generated/numpy.nditer.dtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.dtypes.html", "dispname": "numpy.nditer.dtypes"}, {"name": "reference/generated/numpy.nditer.enable_external_loop", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.enable_external_loop.html", "dispname": "numpy.nditer.enable_external_loop"}, {"name": "reference/generated/numpy.nditer.finished", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.finished.html", "dispname": "numpy.nditer.finished"}, {"name": "reference/generated/numpy.nditer.has_delayed_bufalloc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.has_delayed_bufalloc.html", "dispname": "numpy.nditer.has_delayed_bufalloc"}, {"name": "reference/generated/numpy.nditer.has_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.has_index.html", "dispname": "numpy.nditer.has_index"}, {"name": "reference/generated/numpy.nditer.has_multi_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.has_multi_index.html", "dispname": "numpy.nditer.has_multi_index"}, {"name": "reference/generated/numpy.nditer.index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.index.html", "dispname": "numpy.nditer.index"}, {"name": "reference/generated/numpy.nditer.iterationneedsapi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.iterationneedsapi.html", "dispname": "numpy.nditer.iterationneedsapi"}, {"name": "reference/generated/numpy.nditer.iterindex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.iterindex.html", "dispname": "numpy.nditer.iterindex"}, {"name": "reference/generated/numpy.nditer.iternext", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.iternext.html", "dispname": "numpy.nditer.iternext"}, {"name": "reference/generated/numpy.nditer.iterrange", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.iterrange.html", "dispname": "numpy.nditer.iterrange"}, {"name": "reference/generated/numpy.nditer.itersize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.itersize.html", "dispname": "numpy.nditer.itersize"}, {"name": "reference/generated/numpy.nditer.itviews", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.itviews.html", "dispname": "numpy.nditer.itviews"}, {"name": "reference/generated/numpy.nditer.multi_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.multi_index.html", "dispname": "numpy.nditer.multi_index"}, {"name": "reference/generated/numpy.nditer.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.ndim.html", "dispname": "numpy.nditer.ndim"}, {"name": "reference/generated/numpy.nditer.nop", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.nop.html", "dispname": "numpy.nditer.nop"}, {"name": "reference/generated/numpy.nditer.operands", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.operands.html", "dispname": "numpy.nditer.operands"}, {"name": "reference/generated/numpy.nditer.remove_axis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.remove_axis.html", "dispname": "numpy.nditer.remove_axis"}, {"name": "reference/generated/numpy.nditer.remove_multi_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.remove_multi_index.html", "dispname": "numpy.nditer.remove_multi_index"}, {"name": "reference/generated/numpy.nditer.reset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.reset.html", "dispname": "numpy.nditer.reset"}, {"name": "reference/generated/numpy.nditer.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.shape.html", "dispname": "numpy.nditer.shape"}, {"name": "reference/generated/numpy.nditer.value", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nditer.value.html", "dispname": "numpy.nditer.value"}, {"name": "reference/generated/numpy.negative", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.negative.html", "dispname": "numpy.negative"}, {"name": "reference/generated/numpy.nested_iters", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nested_iters.html", "dispname": "numpy.nested_iters"}, {"name": "reference/generated/numpy.nextafter", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nextafter.html", "dispname": "numpy.nextafter"}, {"name": "reference/generated/numpy.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.nonzero.html", "dispname": "numpy.nonzero"}, {"name": "reference/generated/numpy.not_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.not_equal.html", "dispname": "numpy.not_equal"}, {"name": "reference/generated/numpy.number.__class_getitem__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.number.__class_getitem__.html", "dispname": "numpy.number.__class_getitem__"}, {"name": "reference/generated/numpy.ogrid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ogrid.html", "dispname": "numpy.ogrid"}, {"name": "reference/generated/numpy.ones", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ones.html", "dispname": "numpy.ones"}, {"name": "reference/generated/numpy.ones_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ones_like.html", "dispname": "numpy.ones_like"}, {"name": "reference/generated/numpy.outer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.outer.html", "dispname": "numpy.outer"}, {"name": "reference/generated/numpy.packbits", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.packbits.html", "dispname": "numpy.packbits"}, {"name": "reference/generated/numpy.pad", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.pad.html", "dispname": "numpy.pad"}, {"name": "reference/generated/numpy.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.partition.html", "dispname": "numpy.partition"}, {"name": "reference/generated/numpy.percentile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.percentile.html", "dispname": "numpy.percentile"}, {"name": "reference/generated/numpy.permute_dims", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.permute_dims.html", "dispname": "numpy.permute_dims"}, {"name": "reference/generated/numpy.piecewise", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.piecewise.html", "dispname": "numpy.piecewise"}, {"name": "reference/generated/numpy.place", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.place.html", "dispname": "numpy.place"}, {"name": "reference/generated/numpy.poly", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly.html", "dispname": "numpy.poly"}, {"name": "reference/generated/numpy.poly1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.html", "dispname": "numpy.poly1d"}, {"name": "reference/generated/numpy.poly1d.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.__call__.html", "dispname": "numpy.poly1d.__call__"}, {"name": "reference/generated/numpy.poly1d.c", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.c.html", "dispname": "numpy.poly1d.c"}, {"name": "reference/generated/numpy.poly1d.coef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.coef.html", "dispname": "numpy.poly1d.coef"}, {"name": "reference/generated/numpy.poly1d.coefficients", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.coefficients.html", "dispname": "numpy.poly1d.coefficients"}, {"name": "reference/generated/numpy.poly1d.coeffs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.coeffs.html", "dispname": "numpy.poly1d.coeffs"}, {"name": "reference/generated/numpy.poly1d.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.deriv.html", "dispname": "numpy.poly1d.deriv"}, {"name": "reference/generated/numpy.poly1d.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.integ.html", "dispname": "numpy.poly1d.integ"}, {"name": "reference/generated/numpy.poly1d.o", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.o.html", "dispname": "numpy.poly1d.o"}, {"name": "reference/generated/numpy.poly1d.order", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.order.html", "dispname": "numpy.poly1d.order"}, {"name": "reference/generated/numpy.poly1d.r", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.r.html", "dispname": "numpy.poly1d.r"}, {"name": "reference/generated/numpy.poly1d.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.roots.html", "dispname": "numpy.poly1d.roots"}, {"name": "reference/generated/numpy.poly1d.variable", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.poly1d.variable.html", "dispname": "numpy.poly1d.variable"}, {"name": "reference/generated/numpy.polyadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polyadd.html", "dispname": "numpy.polyadd"}, {"name": "reference/generated/numpy.polyder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polyder.html", "dispname": "numpy.polyder"}, {"name": "reference/generated/numpy.polydiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polydiv.html", "dispname": "numpy.polydiv"}, {"name": "reference/generated/numpy.polyfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polyfit.html", "dispname": "numpy.polyfit"}, {"name": "reference/generated/numpy.polyint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polyint.html", "dispname": "numpy.polyint"}, {"name": "reference/generated/numpy.polymul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polymul.html", "dispname": "numpy.polymul"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.__call__.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.__call__"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.basis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.basis.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.basis"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.basis_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.basis_name.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.basis_name"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.cast.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.cast"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.convert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.convert.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.convert"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.copy.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.copy"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.cutdeg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.cutdeg.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.cutdeg"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.degree", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.degree.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.degree"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.deriv.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.deriv"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.domain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.domain.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.domain"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.fit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.fit.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.fit"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.fromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.fromroots.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.fromroots"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samecoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samecoef.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.has_samecoef"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samedomain.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.has_samedomain"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_sametype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_sametype.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.has_sametype"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samewindow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.has_samewindow.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.has_samewindow"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.identity.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.identity"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.integ.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.integ"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.interpolate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.interpolate.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.interpolate"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.linspace.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.linspace"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.mapparms.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.mapparms"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.maxpower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.maxpower.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.maxpower"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.roots.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.roots"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.symbol", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.symbol.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.symbol"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.trim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.trim.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.trim"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.truncate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.truncate.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.truncate"}, {"name": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.Chebyshev.window.html", "dispname": "numpy.polynomial.chebyshev.Chebyshev.window"}, {"name": "reference/generated/numpy.polynomial.chebyshev.cheb2poly", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.cheb2poly.html", "dispname": "numpy.polynomial.chebyshev.cheb2poly"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebadd.html", "dispname": "numpy.polynomial.chebyshev.chebadd"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebcompanion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebcompanion.html", "dispname": "numpy.polynomial.chebyshev.chebcompanion"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebder.html", "dispname": "numpy.polynomial.chebyshev.chebder"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebdiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebdiv.html", "dispname": "numpy.polynomial.chebyshev.chebdiv"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebdomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebdomain.html", "dispname": "numpy.polynomial.chebyshev.chebdomain"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebfit.html", "dispname": "numpy.polynomial.chebyshev.chebfit"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebfromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebfromroots.html", "dispname": "numpy.polynomial.chebyshev.chebfromroots"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebgauss", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebgauss.html", "dispname": "numpy.polynomial.chebyshev.chebgauss"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebgrid2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebgrid2d.html", "dispname": "numpy.polynomial.chebyshev.chebgrid2d"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebgrid3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebgrid3d.html", "dispname": "numpy.polynomial.chebyshev.chebgrid3d"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebint.html", "dispname": "numpy.polynomial.chebyshev.chebint"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebinterpolate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebinterpolate.html", "dispname": "numpy.polynomial.chebyshev.chebinterpolate"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebline", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebline.html", "dispname": "numpy.polynomial.chebyshev.chebline"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebmul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebmul.html", "dispname": "numpy.polynomial.chebyshev.chebmul"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebmulx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebmulx.html", "dispname": "numpy.polynomial.chebyshev.chebmulx"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebone", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebone.html", "dispname": "numpy.polynomial.chebyshev.chebone"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebpow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebpow.html", "dispname": "numpy.polynomial.chebyshev.chebpow"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebpts1", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebpts1.html", "dispname": "numpy.polynomial.chebyshev.chebpts1"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebpts2", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebpts2.html", "dispname": "numpy.polynomial.chebyshev.chebpts2"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebroots.html", "dispname": "numpy.polynomial.chebyshev.chebroots"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebsub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebsub.html", "dispname": "numpy.polynomial.chebyshev.chebsub"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebtrim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebtrim.html", "dispname": "numpy.polynomial.chebyshev.chebtrim"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebval.html", "dispname": "numpy.polynomial.chebyshev.chebval"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebval2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebval2d.html", "dispname": "numpy.polynomial.chebyshev.chebval2d"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebval3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebval3d.html", "dispname": "numpy.polynomial.chebyshev.chebval3d"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebvander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebvander.html", "dispname": "numpy.polynomial.chebyshev.chebvander"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebvander2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebvander2d.html", "dispname": "numpy.polynomial.chebyshev.chebvander2d"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebvander3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebvander3d.html", "dispname": "numpy.polynomial.chebyshev.chebvander3d"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebweight", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebweight.html", "dispname": "numpy.polynomial.chebyshev.chebweight"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebx.html", "dispname": "numpy.polynomial.chebyshev.chebx"}, {"name": "reference/generated/numpy.polynomial.chebyshev.chebzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.chebzero.html", "dispname": "numpy.polynomial.chebyshev.chebzero"}, {"name": "reference/generated/numpy.polynomial.chebyshev.poly2cheb", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.chebyshev.poly2cheb.html", "dispname": "numpy.polynomial.chebyshev.poly2cheb"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.html", "dispname": "numpy.polynomial.hermite.Hermite"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.__call__.html", "dispname": "numpy.polynomial.hermite.Hermite.__call__"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.basis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.basis.html", "dispname": "numpy.polynomial.hermite.Hermite.basis"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.basis_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.basis_name.html", "dispname": "numpy.polynomial.hermite.Hermite.basis_name"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.cast.html", "dispname": "numpy.polynomial.hermite.Hermite.cast"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.convert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.convert.html", "dispname": "numpy.polynomial.hermite.Hermite.convert"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.copy.html", "dispname": "numpy.polynomial.hermite.Hermite.copy"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.cutdeg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.cutdeg.html", "dispname": "numpy.polynomial.hermite.Hermite.cutdeg"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.degree", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.degree.html", "dispname": "numpy.polynomial.hermite.Hermite.degree"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.deriv.html", "dispname": "numpy.polynomial.hermite.Hermite.deriv"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.domain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.domain.html", "dispname": "numpy.polynomial.hermite.Hermite.domain"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.fit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.fit.html", "dispname": "numpy.polynomial.hermite.Hermite.fit"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.fromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.fromroots.html", "dispname": "numpy.polynomial.hermite.Hermite.fromroots"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.has_samecoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_samecoef.html", "dispname": "numpy.polynomial.hermite.Hermite.has_samecoef"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.has_samedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_samedomain.html", "dispname": "numpy.polynomial.hermite.Hermite.has_samedomain"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.has_sametype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_sametype.html", "dispname": "numpy.polynomial.hermite.Hermite.has_sametype"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.has_samewindow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.has_samewindow.html", "dispname": "numpy.polynomial.hermite.Hermite.has_samewindow"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.identity.html", "dispname": "numpy.polynomial.hermite.Hermite.identity"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.integ.html", "dispname": "numpy.polynomial.hermite.Hermite.integ"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.linspace.html", "dispname": "numpy.polynomial.hermite.Hermite.linspace"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.mapparms.html", "dispname": "numpy.polynomial.hermite.Hermite.mapparms"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.maxpower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.maxpower.html", "dispname": "numpy.polynomial.hermite.Hermite.maxpower"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.roots.html", "dispname": "numpy.polynomial.hermite.Hermite.roots"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.symbol", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.symbol.html", "dispname": "numpy.polynomial.hermite.Hermite.symbol"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.trim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.trim.html", "dispname": "numpy.polynomial.hermite.Hermite.trim"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.truncate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.truncate.html", "dispname": "numpy.polynomial.hermite.Hermite.truncate"}, {"name": "reference/generated/numpy.polynomial.hermite.Hermite.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.Hermite.window.html", "dispname": "numpy.polynomial.hermite.Hermite.window"}, {"name": "reference/generated/numpy.polynomial.hermite.herm2poly", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.herm2poly.html", "dispname": "numpy.polynomial.hermite.herm2poly"}, {"name": "reference/generated/numpy.polynomial.hermite.hermadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermadd.html", "dispname": "numpy.polynomial.hermite.hermadd"}, {"name": "reference/generated/numpy.polynomial.hermite.hermcompanion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermcompanion.html", "dispname": "numpy.polynomial.hermite.hermcompanion"}, {"name": "reference/generated/numpy.polynomial.hermite.hermder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermder.html", "dispname": "numpy.polynomial.hermite.hermder"}, {"name": "reference/generated/numpy.polynomial.hermite.hermdiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermdiv.html", "dispname": "numpy.polynomial.hermite.hermdiv"}, {"name": "reference/generated/numpy.polynomial.hermite.hermdomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermdomain.html", "dispname": "numpy.polynomial.hermite.hermdomain"}, {"name": "reference/generated/numpy.polynomial.hermite.hermfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermfit.html", "dispname": "numpy.polynomial.hermite.hermfit"}, {"name": "reference/generated/numpy.polynomial.hermite.hermfromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermfromroots.html", "dispname": "numpy.polynomial.hermite.hermfromroots"}, {"name": "reference/generated/numpy.polynomial.hermite.hermgauss", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermgauss.html", "dispname": "numpy.polynomial.hermite.hermgauss"}, {"name": "reference/generated/numpy.polynomial.hermite.hermgrid2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermgrid2d.html", "dispname": "numpy.polynomial.hermite.hermgrid2d"}, {"name": "reference/generated/numpy.polynomial.hermite.hermgrid3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermgrid3d.html", "dispname": "numpy.polynomial.hermite.hermgrid3d"}, {"name": "reference/generated/numpy.polynomial.hermite.hermint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermint.html", "dispname": "numpy.polynomial.hermite.hermint"}, {"name": "reference/generated/numpy.polynomial.hermite.hermline", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermline.html", "dispname": "numpy.polynomial.hermite.hermline"}, {"name": "reference/generated/numpy.polynomial.hermite.hermmul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermmul.html", "dispname": "numpy.polynomial.hermite.hermmul"}, {"name": "reference/generated/numpy.polynomial.hermite.hermmulx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermmulx.html", "dispname": "numpy.polynomial.hermite.hermmulx"}, {"name": "reference/generated/numpy.polynomial.hermite.hermone", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermone.html", "dispname": "numpy.polynomial.hermite.hermone"}, {"name": "reference/generated/numpy.polynomial.hermite.hermpow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermpow.html", "dispname": "numpy.polynomial.hermite.hermpow"}, {"name": "reference/generated/numpy.polynomial.hermite.hermroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermroots.html", "dispname": "numpy.polynomial.hermite.hermroots"}, {"name": "reference/generated/numpy.polynomial.hermite.hermsub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermsub.html", "dispname": "numpy.polynomial.hermite.hermsub"}, {"name": "reference/generated/numpy.polynomial.hermite.hermtrim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermtrim.html", "dispname": "numpy.polynomial.hermite.hermtrim"}, {"name": "reference/generated/numpy.polynomial.hermite.hermval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermval.html", "dispname": "numpy.polynomial.hermite.hermval"}, {"name": "reference/generated/numpy.polynomial.hermite.hermval2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermval2d.html", "dispname": "numpy.polynomial.hermite.hermval2d"}, {"name": "reference/generated/numpy.polynomial.hermite.hermval3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermval3d.html", "dispname": "numpy.polynomial.hermite.hermval3d"}, {"name": "reference/generated/numpy.polynomial.hermite.hermvander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermvander.html", "dispname": "numpy.polynomial.hermite.hermvander"}, {"name": "reference/generated/numpy.polynomial.hermite.hermvander2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermvander2d.html", "dispname": "numpy.polynomial.hermite.hermvander2d"}, {"name": "reference/generated/numpy.polynomial.hermite.hermvander3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermvander3d.html", "dispname": "numpy.polynomial.hermite.hermvander3d"}, {"name": "reference/generated/numpy.polynomial.hermite.hermweight", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermweight.html", "dispname": "numpy.polynomial.hermite.hermweight"}, {"name": "reference/generated/numpy.polynomial.hermite.hermx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermx.html", "dispname": "numpy.polynomial.hermite.hermx"}, {"name": "reference/generated/numpy.polynomial.hermite.hermzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.hermzero.html", "dispname": "numpy.polynomial.hermite.hermzero"}, {"name": "reference/generated/numpy.polynomial.hermite.poly2herm", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite.poly2herm.html", "dispname": "numpy.polynomial.hermite.poly2herm"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.html", "dispname": "numpy.polynomial.hermite_e.HermiteE"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.__call__.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.__call__"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.basis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.basis.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.basis"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.basis_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.basis_name.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.basis_name"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.cast.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.cast"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.convert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.convert.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.convert"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.copy.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.copy"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.cutdeg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.cutdeg.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.cutdeg"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.degree", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.degree.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.degree"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.deriv.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.deriv"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.domain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.domain.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.domain"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.fit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.fit.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.fit"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.fromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.fromroots.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.fromroots"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samecoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samecoef.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.has_samecoef"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samedomain.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.has_samedomain"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_sametype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_sametype.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.has_sametype"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samewindow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.has_samewindow.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.has_samewindow"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.identity.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.identity"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.integ.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.integ"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.linspace.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.linspace"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.mapparms.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.mapparms"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.maxpower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.maxpower.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.maxpower"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.roots.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.roots"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.symbol", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.symbol.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.symbol"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.trim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.trim.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.trim"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.truncate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.truncate.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.truncate"}, {"name": "reference/generated/numpy.polynomial.hermite_e.HermiteE.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.HermiteE.window.html", "dispname": "numpy.polynomial.hermite_e.HermiteE.window"}, {"name": "reference/generated/numpy.polynomial.hermite_e.herme2poly", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.herme2poly.html", "dispname": "numpy.polynomial.hermite_e.herme2poly"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeadd.html", "dispname": "numpy.polynomial.hermite_e.hermeadd"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermecompanion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermecompanion.html", "dispname": "numpy.polynomial.hermite_e.hermecompanion"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeder.html", "dispname": "numpy.polynomial.hermite_e.hermeder"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermediv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermediv.html", "dispname": "numpy.polynomial.hermite_e.hermediv"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermedomain.html", "dispname": "numpy.polynomial.hermite_e.hermedomain"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermefit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermefit.html", "dispname": "numpy.polynomial.hermite_e.hermefit"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermefromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermefromroots.html", "dispname": "numpy.polynomial.hermite_e.hermefromroots"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermegauss", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermegauss.html", "dispname": "numpy.polynomial.hermite_e.hermegauss"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermegrid2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermegrid2d.html", "dispname": "numpy.polynomial.hermite_e.hermegrid2d"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermegrid3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermegrid3d.html", "dispname": "numpy.polynomial.hermite_e.hermegrid3d"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeint.html", "dispname": "numpy.polynomial.hermite_e.hermeint"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeline", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeline.html", "dispname": "numpy.polynomial.hermite_e.hermeline"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermemul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermemul.html", "dispname": "numpy.polynomial.hermite_e.hermemul"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermemulx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermemulx.html", "dispname": "numpy.polynomial.hermite_e.hermemulx"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeone", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeone.html", "dispname": "numpy.polynomial.hermite_e.hermeone"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermepow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermepow.html", "dispname": "numpy.polynomial.hermite_e.hermepow"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeroots.html", "dispname": "numpy.polynomial.hermite_e.hermeroots"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermesub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermesub.html", "dispname": "numpy.polynomial.hermite_e.hermesub"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermetrim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermetrim.html", "dispname": "numpy.polynomial.hermite_e.hermetrim"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeval.html", "dispname": "numpy.polynomial.hermite_e.hermeval"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeval2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeval2d.html", "dispname": "numpy.polynomial.hermite_e.hermeval2d"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeval3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeval3d.html", "dispname": "numpy.polynomial.hermite_e.hermeval3d"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermevander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermevander.html", "dispname": "numpy.polynomial.hermite_e.hermevander"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermevander2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermevander2d.html", "dispname": "numpy.polynomial.hermite_e.hermevander2d"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermevander3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermevander3d.html", "dispname": "numpy.polynomial.hermite_e.hermevander3d"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermeweight", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermeweight.html", "dispname": "numpy.polynomial.hermite_e.hermeweight"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermex.html", "dispname": "numpy.polynomial.hermite_e.hermex"}, {"name": "reference/generated/numpy.polynomial.hermite_e.hermezero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermezero.html", "dispname": "numpy.polynomial.hermite_e.hermezero"}, {"name": "reference/generated/numpy.polynomial.hermite_e.poly2herme", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.poly2herme.html", "dispname": "numpy.polynomial.hermite_e.poly2herme"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.html", "dispname": "numpy.polynomial.laguerre.Laguerre"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.__call__.html", "dispname": "numpy.polynomial.laguerre.Laguerre.__call__"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.basis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.basis.html", "dispname": "numpy.polynomial.laguerre.Laguerre.basis"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.basis_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.basis_name.html", "dispname": "numpy.polynomial.laguerre.Laguerre.basis_name"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.cast.html", "dispname": "numpy.polynomial.laguerre.Laguerre.cast"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.convert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.convert.html", "dispname": "numpy.polynomial.laguerre.Laguerre.convert"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.copy.html", "dispname": "numpy.polynomial.laguerre.Laguerre.copy"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.cutdeg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.cutdeg.html", "dispname": "numpy.polynomial.laguerre.Laguerre.cutdeg"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.degree", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.degree.html", "dispname": "numpy.polynomial.laguerre.Laguerre.degree"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.deriv.html", "dispname": "numpy.polynomial.laguerre.Laguerre.deriv"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.domain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.domain.html", "dispname": "numpy.polynomial.laguerre.Laguerre.domain"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.fit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.fit.html", "dispname": "numpy.polynomial.laguerre.Laguerre.fit"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.fromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.fromroots.html", "dispname": "numpy.polynomial.laguerre.Laguerre.fromroots"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samecoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samecoef.html", "dispname": "numpy.polynomial.laguerre.Laguerre.has_samecoef"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samedomain.html", "dispname": "numpy.polynomial.laguerre.Laguerre.has_samedomain"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_sametype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_sametype.html", "dispname": "numpy.polynomial.laguerre.Laguerre.has_sametype"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samewindow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.has_samewindow.html", "dispname": "numpy.polynomial.laguerre.Laguerre.has_samewindow"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.identity.html", "dispname": "numpy.polynomial.laguerre.Laguerre.identity"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.integ.html", "dispname": "numpy.polynomial.laguerre.Laguerre.integ"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.linspace.html", "dispname": "numpy.polynomial.laguerre.Laguerre.linspace"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.mapparms.html", "dispname": "numpy.polynomial.laguerre.Laguerre.mapparms"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.maxpower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.maxpower.html", "dispname": "numpy.polynomial.laguerre.Laguerre.maxpower"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.roots.html", "dispname": "numpy.polynomial.laguerre.Laguerre.roots"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.symbol", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.symbol.html", "dispname": "numpy.polynomial.laguerre.Laguerre.symbol"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.trim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.trim.html", "dispname": "numpy.polynomial.laguerre.Laguerre.trim"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.truncate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.truncate.html", "dispname": "numpy.polynomial.laguerre.Laguerre.truncate"}, {"name": "reference/generated/numpy.polynomial.laguerre.Laguerre.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.Laguerre.window.html", "dispname": "numpy.polynomial.laguerre.Laguerre.window"}, {"name": "reference/generated/numpy.polynomial.laguerre.lag2poly", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lag2poly.html", "dispname": "numpy.polynomial.laguerre.lag2poly"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagadd.html", "dispname": "numpy.polynomial.laguerre.lagadd"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagcompanion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagcompanion.html", "dispname": "numpy.polynomial.laguerre.lagcompanion"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagder.html", "dispname": "numpy.polynomial.laguerre.lagder"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagdiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagdiv.html", "dispname": "numpy.polynomial.laguerre.lagdiv"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagdomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagdomain.html", "dispname": "numpy.polynomial.laguerre.lagdomain"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagfit.html", "dispname": "numpy.polynomial.laguerre.lagfit"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagfromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagfromroots.html", "dispname": "numpy.polynomial.laguerre.lagfromroots"}, {"name": "reference/generated/numpy.polynomial.laguerre.laggauss", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.laggauss.html", "dispname": "numpy.polynomial.laguerre.laggauss"}, {"name": "reference/generated/numpy.polynomial.laguerre.laggrid2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.laggrid2d.html", "dispname": "numpy.polynomial.laguerre.laggrid2d"}, {"name": "reference/generated/numpy.polynomial.laguerre.laggrid3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.laggrid3d.html", "dispname": "numpy.polynomial.laguerre.laggrid3d"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagint.html", "dispname": "numpy.polynomial.laguerre.lagint"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagline", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagline.html", "dispname": "numpy.polynomial.laguerre.lagline"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagmul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagmul.html", "dispname": "numpy.polynomial.laguerre.lagmul"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagmulx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagmulx.html", "dispname": "numpy.polynomial.laguerre.lagmulx"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagone", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagone.html", "dispname": "numpy.polynomial.laguerre.lagone"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagpow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagpow.html", "dispname": "numpy.polynomial.laguerre.lagpow"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagroots.html", "dispname": "numpy.polynomial.laguerre.lagroots"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagsub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagsub.html", "dispname": "numpy.polynomial.laguerre.lagsub"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagtrim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagtrim.html", "dispname": "numpy.polynomial.laguerre.lagtrim"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagval.html", "dispname": "numpy.polynomial.laguerre.lagval"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagval2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagval2d.html", "dispname": "numpy.polynomial.laguerre.lagval2d"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagval3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagval3d.html", "dispname": "numpy.polynomial.laguerre.lagval3d"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagvander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagvander.html", "dispname": "numpy.polynomial.laguerre.lagvander"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagvander2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagvander2d.html", "dispname": "numpy.polynomial.laguerre.lagvander2d"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagvander3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagvander3d.html", "dispname": "numpy.polynomial.laguerre.lagvander3d"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagweight", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagweight.html", "dispname": "numpy.polynomial.laguerre.lagweight"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagx.html", "dispname": "numpy.polynomial.laguerre.lagx"}, {"name": "reference/generated/numpy.polynomial.laguerre.lagzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.lagzero.html", "dispname": "numpy.polynomial.laguerre.lagzero"}, {"name": "reference/generated/numpy.polynomial.laguerre.poly2lag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.laguerre.poly2lag.html", "dispname": "numpy.polynomial.laguerre.poly2lag"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.html", "dispname": "numpy.polynomial.legendre.Legendre"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.__call__.html", "dispname": "numpy.polynomial.legendre.Legendre.__call__"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.basis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.basis.html", "dispname": "numpy.polynomial.legendre.Legendre.basis"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.basis_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.basis_name.html", "dispname": "numpy.polynomial.legendre.Legendre.basis_name"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.cast.html", "dispname": "numpy.polynomial.legendre.Legendre.cast"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.convert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.convert.html", "dispname": "numpy.polynomial.legendre.Legendre.convert"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.copy.html", "dispname": "numpy.polynomial.legendre.Legendre.copy"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.cutdeg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.cutdeg.html", "dispname": "numpy.polynomial.legendre.Legendre.cutdeg"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.degree", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.degree.html", "dispname": "numpy.polynomial.legendre.Legendre.degree"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.deriv.html", "dispname": "numpy.polynomial.legendre.Legendre.deriv"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.domain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.domain.html", "dispname": "numpy.polynomial.legendre.Legendre.domain"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.fit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.fit.html", "dispname": "numpy.polynomial.legendre.Legendre.fit"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.fromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.fromroots.html", "dispname": "numpy.polynomial.legendre.Legendre.fromroots"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.has_samecoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_samecoef.html", "dispname": "numpy.polynomial.legendre.Legendre.has_samecoef"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.has_samedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_samedomain.html", "dispname": "numpy.polynomial.legendre.Legendre.has_samedomain"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.has_sametype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_sametype.html", "dispname": "numpy.polynomial.legendre.Legendre.has_sametype"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.has_samewindow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.has_samewindow.html", "dispname": "numpy.polynomial.legendre.Legendre.has_samewindow"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.identity.html", "dispname": "numpy.polynomial.legendre.Legendre.identity"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.integ.html", "dispname": "numpy.polynomial.legendre.Legendre.integ"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.linspace.html", "dispname": "numpy.polynomial.legendre.Legendre.linspace"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.mapparms.html", "dispname": "numpy.polynomial.legendre.Legendre.mapparms"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.maxpower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.maxpower.html", "dispname": "numpy.polynomial.legendre.Legendre.maxpower"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.roots.html", "dispname": "numpy.polynomial.legendre.Legendre.roots"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.symbol", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.symbol.html", "dispname": "numpy.polynomial.legendre.Legendre.symbol"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.trim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.trim.html", "dispname": "numpy.polynomial.legendre.Legendre.trim"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.truncate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.truncate.html", "dispname": "numpy.polynomial.legendre.Legendre.truncate"}, {"name": "reference/generated/numpy.polynomial.legendre.Legendre.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.Legendre.window.html", "dispname": "numpy.polynomial.legendre.Legendre.window"}, {"name": "reference/generated/numpy.polynomial.legendre.leg2poly", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.leg2poly.html", "dispname": "numpy.polynomial.legendre.leg2poly"}, {"name": "reference/generated/numpy.polynomial.legendre.legadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legadd.html", "dispname": "numpy.polynomial.legendre.legadd"}, {"name": "reference/generated/numpy.polynomial.legendre.legcompanion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legcompanion.html", "dispname": "numpy.polynomial.legendre.legcompanion"}, {"name": "reference/generated/numpy.polynomial.legendre.legder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legder.html", "dispname": "numpy.polynomial.legendre.legder"}, {"name": "reference/generated/numpy.polynomial.legendre.legdiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legdiv.html", "dispname": "numpy.polynomial.legendre.legdiv"}, {"name": "reference/generated/numpy.polynomial.legendre.legdomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legdomain.html", "dispname": "numpy.polynomial.legendre.legdomain"}, {"name": "reference/generated/numpy.polynomial.legendre.legfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legfit.html", "dispname": "numpy.polynomial.legendre.legfit"}, {"name": "reference/generated/numpy.polynomial.legendre.legfromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legfromroots.html", "dispname": "numpy.polynomial.legendre.legfromroots"}, {"name": "reference/generated/numpy.polynomial.legendre.leggauss", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.leggauss.html", "dispname": "numpy.polynomial.legendre.leggauss"}, {"name": "reference/generated/numpy.polynomial.legendre.leggrid2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.leggrid2d.html", "dispname": "numpy.polynomial.legendre.leggrid2d"}, {"name": "reference/generated/numpy.polynomial.legendre.leggrid3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.leggrid3d.html", "dispname": "numpy.polynomial.legendre.leggrid3d"}, {"name": "reference/generated/numpy.polynomial.legendre.legint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legint.html", "dispname": "numpy.polynomial.legendre.legint"}, {"name": "reference/generated/numpy.polynomial.legendre.legline", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legline.html", "dispname": "numpy.polynomial.legendre.legline"}, {"name": "reference/generated/numpy.polynomial.legendre.legmul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legmul.html", "dispname": "numpy.polynomial.legendre.legmul"}, {"name": "reference/generated/numpy.polynomial.legendre.legmulx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legmulx.html", "dispname": "numpy.polynomial.legendre.legmulx"}, {"name": "reference/generated/numpy.polynomial.legendre.legone", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legone.html", "dispname": "numpy.polynomial.legendre.legone"}, {"name": "reference/generated/numpy.polynomial.legendre.legpow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legpow.html", "dispname": "numpy.polynomial.legendre.legpow"}, {"name": "reference/generated/numpy.polynomial.legendre.legroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legroots.html", "dispname": "numpy.polynomial.legendre.legroots"}, {"name": "reference/generated/numpy.polynomial.legendre.legsub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legsub.html", "dispname": "numpy.polynomial.legendre.legsub"}, {"name": "reference/generated/numpy.polynomial.legendre.legtrim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legtrim.html", "dispname": "numpy.polynomial.legendre.legtrim"}, {"name": "reference/generated/numpy.polynomial.legendre.legval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legval.html", "dispname": "numpy.polynomial.legendre.legval"}, {"name": "reference/generated/numpy.polynomial.legendre.legval2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legval2d.html", "dispname": "numpy.polynomial.legendre.legval2d"}, {"name": "reference/generated/numpy.polynomial.legendre.legval3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legval3d.html", "dispname": "numpy.polynomial.legendre.legval3d"}, {"name": "reference/generated/numpy.polynomial.legendre.legvander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legvander.html", "dispname": "numpy.polynomial.legendre.legvander"}, {"name": "reference/generated/numpy.polynomial.legendre.legvander2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legvander2d.html", "dispname": "numpy.polynomial.legendre.legvander2d"}, {"name": "reference/generated/numpy.polynomial.legendre.legvander3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legvander3d.html", "dispname": "numpy.polynomial.legendre.legvander3d"}, {"name": "reference/generated/numpy.polynomial.legendre.legweight", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legweight.html", "dispname": "numpy.polynomial.legendre.legweight"}, {"name": "reference/generated/numpy.polynomial.legendre.legx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legx.html", "dispname": "numpy.polynomial.legendre.legx"}, {"name": "reference/generated/numpy.polynomial.legendre.legzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.legzero.html", "dispname": "numpy.polynomial.legendre.legzero"}, {"name": "reference/generated/numpy.polynomial.legendre.poly2leg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.legendre.poly2leg.html", "dispname": "numpy.polynomial.legendre.poly2leg"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.html", "dispname": "numpy.polynomial.polynomial.Polynomial"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.__call__.html", "dispname": "numpy.polynomial.polynomial.Polynomial.__call__"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.basis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.basis.html", "dispname": "numpy.polynomial.polynomial.Polynomial.basis"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.basis_name", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.basis_name.html", "dispname": "numpy.polynomial.polynomial.Polynomial.basis_name"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.cast", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.cast.html", "dispname": "numpy.polynomial.polynomial.Polynomial.cast"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.convert", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.convert.html", "dispname": "numpy.polynomial.polynomial.Polynomial.convert"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.copy.html", "dispname": "numpy.polynomial.polynomial.Polynomial.copy"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.cutdeg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.cutdeg.html", "dispname": "numpy.polynomial.polynomial.Polynomial.cutdeg"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.degree", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.degree.html", "dispname": "numpy.polynomial.polynomial.Polynomial.degree"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.deriv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.deriv.html", "dispname": "numpy.polynomial.polynomial.Polynomial.deriv"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.domain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.domain.html", "dispname": "numpy.polynomial.polynomial.Polynomial.domain"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.fit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.fit.html", "dispname": "numpy.polynomial.polynomial.Polynomial.fit"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.fromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.fromroots.html", "dispname": "numpy.polynomial.polynomial.Polynomial.fromroots"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samecoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samecoef.html", "dispname": "numpy.polynomial.polynomial.Polynomial.has_samecoef"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samedomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samedomain.html", "dispname": "numpy.polynomial.polynomial.Polynomial.has_samedomain"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_sametype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_sametype.html", "dispname": "numpy.polynomial.polynomial.Polynomial.has_sametype"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samewindow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.has_samewindow.html", "dispname": "numpy.polynomial.polynomial.Polynomial.has_samewindow"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.identity.html", "dispname": "numpy.polynomial.polynomial.Polynomial.identity"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.integ", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.integ.html", "dispname": "numpy.polynomial.polynomial.Polynomial.integ"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.linspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.linspace.html", "dispname": "numpy.polynomial.polynomial.Polynomial.linspace"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.mapparms.html", "dispname": "numpy.polynomial.polynomial.Polynomial.mapparms"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.maxpower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.maxpower.html", "dispname": "numpy.polynomial.polynomial.Polynomial.maxpower"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.roots.html", "dispname": "numpy.polynomial.polynomial.Polynomial.roots"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.symbol", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.symbol.html", "dispname": "numpy.polynomial.polynomial.Polynomial.symbol"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.trim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.trim.html", "dispname": "numpy.polynomial.polynomial.Polynomial.trim"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.truncate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.truncate.html", "dispname": "numpy.polynomial.polynomial.Polynomial.truncate"}, {"name": "reference/generated/numpy.polynomial.polynomial.Polynomial.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.Polynomial.window.html", "dispname": "numpy.polynomial.polynomial.Polynomial.window"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyadd", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyadd.html", "dispname": "numpy.polynomial.polynomial.polyadd"}, {"name": "reference/generated/numpy.polynomial.polynomial.polycompanion", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polycompanion.html", "dispname": "numpy.polynomial.polynomial.polycompanion"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyder.html", "dispname": "numpy.polynomial.polynomial.polyder"}, {"name": "reference/generated/numpy.polynomial.polynomial.polydiv", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polydiv.html", "dispname": "numpy.polynomial.polynomial.polydiv"}, {"name": "reference/generated/numpy.polynomial.polynomial.polydomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polydomain.html", "dispname": "numpy.polynomial.polynomial.polydomain"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyfit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyfit.html", "dispname": "numpy.polynomial.polynomial.polyfit"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyfromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyfromroots.html", "dispname": "numpy.polynomial.polynomial.polyfromroots"}, {"name": "reference/generated/numpy.polynomial.polynomial.polygrid2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polygrid2d.html", "dispname": "numpy.polynomial.polynomial.polygrid2d"}, {"name": "reference/generated/numpy.polynomial.polynomial.polygrid3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polygrid3d.html", "dispname": "numpy.polynomial.polynomial.polygrid3d"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyint.html", "dispname": "numpy.polynomial.polynomial.polyint"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyline", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyline.html", "dispname": "numpy.polynomial.polynomial.polyline"}, {"name": "reference/generated/numpy.polynomial.polynomial.polymul", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polymul.html", "dispname": "numpy.polynomial.polynomial.polymul"}, {"name": "reference/generated/numpy.polynomial.polynomial.polymulx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polymulx.html", "dispname": "numpy.polynomial.polynomial.polymulx"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyone", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyone.html", "dispname": "numpy.polynomial.polynomial.polyone"}, {"name": "reference/generated/numpy.polynomial.polynomial.polypow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polypow.html", "dispname": "numpy.polynomial.polynomial.polypow"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyroots.html", "dispname": "numpy.polynomial.polynomial.polyroots"}, {"name": "reference/generated/numpy.polynomial.polynomial.polysub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polysub.html", "dispname": "numpy.polynomial.polynomial.polysub"}, {"name": "reference/generated/numpy.polynomial.polynomial.polytrim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polytrim.html", "dispname": "numpy.polynomial.polynomial.polytrim"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyval.html", "dispname": "numpy.polynomial.polynomial.polyval"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyval2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyval2d.html", "dispname": "numpy.polynomial.polynomial.polyval2d"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyval3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyval3d.html", "dispname": "numpy.polynomial.polynomial.polyval3d"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyvalfromroots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvalfromroots.html", "dispname": "numpy.polynomial.polynomial.polyvalfromroots"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyvander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvander.html", "dispname": "numpy.polynomial.polynomial.polyvander"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyvander2d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvander2d.html", "dispname": "numpy.polynomial.polynomial.polyvander2d"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyvander3d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyvander3d.html", "dispname": "numpy.polynomial.polynomial.polyvander3d"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyx.html", "dispname": "numpy.polynomial.polynomial.polyx"}, {"name": "reference/generated/numpy.polynomial.polynomial.polyzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polynomial.polyzero.html", "dispname": "numpy.polynomial.polynomial.polyzero"}, {"name": "reference/generated/numpy.polynomial.polyutils.as_series", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polyutils.as_series.html", "dispname": "numpy.polynomial.polyutils.as_series"}, {"name": "reference/generated/numpy.polynomial.polyutils.getdomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polyutils.getdomain.html", "dispname": "numpy.polynomial.polyutils.getdomain"}, {"name": "reference/generated/numpy.polynomial.polyutils.mapdomain", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polyutils.mapdomain.html", "dispname": "numpy.polynomial.polyutils.mapdomain"}, {"name": "reference/generated/numpy.polynomial.polyutils.mapparms", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polyutils.mapparms.html", "dispname": "numpy.polynomial.polyutils.mapparms"}, {"name": "reference/generated/numpy.polynomial.polyutils.trimcoef", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polyutils.trimcoef.html", "dispname": "numpy.polynomial.polyutils.trimcoef"}, {"name": "reference/generated/numpy.polynomial.polyutils.trimseq", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.polyutils.trimseq.html", "dispname": "numpy.polynomial.polyutils.trimseq"}, {"name": "reference/generated/numpy.polynomial.set_default_printstyle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polynomial.set_default_printstyle.html", "dispname": "numpy.polynomial.set_default_printstyle"}, {"name": "reference/generated/numpy.polysub", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polysub.html", "dispname": "numpy.polysub"}, {"name": "reference/generated/numpy.polyval", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.polyval.html", "dispname": "numpy.polyval"}, {"name": "reference/generated/numpy.positive", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.positive.html", "dispname": "numpy.positive"}, {"name": "reference/generated/numpy.pow", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.pow.html", "dispname": "numpy.pow"}, {"name": "reference/generated/numpy.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.power.html", "dispname": "numpy.power"}, {"name": "reference/generated/numpy.printoptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.printoptions.html", "dispname": "numpy.printoptions"}, {"name": "reference/generated/numpy.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.prod.html", "dispname": "numpy.prod"}, {"name": "reference/generated/numpy.promote_types", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.promote_types.html", "dispname": "numpy.promote_types"}, {"name": "reference/generated/numpy.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ptp.html", "dispname": "numpy.ptp"}, {"name": "reference/generated/numpy.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.put.html", "dispname": "numpy.put"}, {"name": "reference/generated/numpy.put_along_axis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.put_along_axis.html", "dispname": "numpy.put_along_axis"}, {"name": "reference/generated/numpy.putmask", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.putmask.html", "dispname": "numpy.putmask"}, {"name": "reference/generated/numpy.quantile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.quantile.html", "dispname": "numpy.quantile"}, {"name": "reference/generated/numpy.r_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.r_.html", "dispname": "numpy.r_"}, {"name": "reference/generated/numpy.rad2deg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rad2deg.html", "dispname": "numpy.rad2deg"}, {"name": "reference/generated/numpy.radians", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.radians.html", "dispname": "numpy.radians"}, {"name": "reference/generated/numpy.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ravel.html", "dispname": "numpy.ravel"}, {"name": "reference/generated/numpy.ravel_multi_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ravel_multi_index.html", "dispname": "numpy.ravel_multi_index"}, {"name": "reference/generated/numpy.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.real.html", "dispname": "numpy.real"}, {"name": "reference/generated/numpy.real_if_close", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.real_if_close.html", "dispname": "numpy.real_if_close"}, {"name": "reference/generated/numpy.rec.array", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.array.html", "dispname": "numpy.rec.array"}, {"name": "reference/generated/numpy.rec.find_duplicate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.find_duplicate.html", "dispname": "numpy.rec.find_duplicate"}, {"name": "reference/generated/numpy.rec.format_parser", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.format_parser.html", "dispname": "numpy.rec.format_parser"}, {"name": "reference/generated/numpy.rec.fromarrays", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.fromarrays.html", "dispname": "numpy.rec.fromarrays"}, {"name": "reference/generated/numpy.rec.fromfile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.fromfile.html", "dispname": "numpy.rec.fromfile"}, {"name": "reference/generated/numpy.rec.fromrecords", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.fromrecords.html", "dispname": "numpy.rec.fromrecords"}, {"name": "reference/generated/numpy.rec.fromstring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rec.fromstring.html", "dispname": "numpy.rec.fromstring"}, {"name": "reference/generated/numpy.recarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.html", "dispname": "numpy.recarray"}, {"name": "reference/generated/numpy.recarray.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.T.html", "dispname": "numpy.recarray.T"}, {"name": "reference/generated/numpy.recarray.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.all.html", "dispname": "numpy.recarray.all"}, {"name": "reference/generated/numpy.recarray.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.any.html", "dispname": "numpy.recarray.any"}, {"name": "reference/generated/numpy.recarray.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.argmax.html", "dispname": "numpy.recarray.argmax"}, {"name": "reference/generated/numpy.recarray.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.argmin.html", "dispname": "numpy.recarray.argmin"}, {"name": "reference/generated/numpy.recarray.argpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.argpartition.html", "dispname": "numpy.recarray.argpartition"}, {"name": "reference/generated/numpy.recarray.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.argsort.html", "dispname": "numpy.recarray.argsort"}, {"name": "reference/generated/numpy.recarray.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.astype.html", "dispname": "numpy.recarray.astype"}, {"name": "reference/generated/numpy.recarray.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.base.html", "dispname": "numpy.recarray.base"}, {"name": "reference/generated/numpy.recarray.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.byteswap.html", "dispname": "numpy.recarray.byteswap"}, {"name": "reference/generated/numpy.recarray.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.choose.html", "dispname": "numpy.recarray.choose"}, {"name": "reference/generated/numpy.recarray.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.clip.html", "dispname": "numpy.recarray.clip"}, {"name": "reference/generated/numpy.recarray.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.compress.html", "dispname": "numpy.recarray.compress"}, {"name": "reference/generated/numpy.recarray.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.conj.html", "dispname": "numpy.recarray.conj"}, {"name": "reference/generated/numpy.recarray.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.conjugate.html", "dispname": "numpy.recarray.conjugate"}, {"name": "reference/generated/numpy.recarray.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.copy.html", "dispname": "numpy.recarray.copy"}, {"name": "reference/generated/numpy.recarray.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.ctypes.html", "dispname": "numpy.recarray.ctypes"}, {"name": "reference/generated/numpy.recarray.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.cumprod.html", "dispname": "numpy.recarray.cumprod"}, {"name": "reference/generated/numpy.recarray.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.cumsum.html", "dispname": "numpy.recarray.cumsum"}, {"name": "reference/generated/numpy.recarray.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.data.html", "dispname": "numpy.recarray.data"}, {"name": "reference/generated/numpy.recarray.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.device.html", "dispname": "numpy.recarray.device"}, {"name": "reference/generated/numpy.recarray.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.diagonal.html", "dispname": "numpy.recarray.diagonal"}, {"name": "reference/generated/numpy.recarray.dot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.dot.html", "dispname": "numpy.recarray.dot"}, {"name": "reference/generated/numpy.recarray.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.dtype.html", "dispname": "numpy.recarray.dtype"}, {"name": "reference/generated/numpy.recarray.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.dump.html", "dispname": "numpy.recarray.dump"}, {"name": "reference/generated/numpy.recarray.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.dumps.html", "dispname": "numpy.recarray.dumps"}, {"name": "reference/generated/numpy.recarray.field", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.field.html", "dispname": "numpy.recarray.field"}, {"name": "reference/generated/numpy.recarray.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.fill.html", "dispname": "numpy.recarray.fill"}, {"name": "reference/generated/numpy.recarray.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.flags.html", "dispname": "numpy.recarray.flags"}, {"name": "reference/generated/numpy.recarray.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.flat.html", "dispname": "numpy.recarray.flat"}, {"name": "reference/generated/numpy.recarray.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.flatten.html", "dispname": "numpy.recarray.flatten"}, {"name": "reference/generated/numpy.recarray.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.getfield.html", "dispname": "numpy.recarray.getfield"}, {"name": "reference/generated/numpy.recarray.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.imag.html", "dispname": "numpy.recarray.imag"}, {"name": "reference/generated/numpy.recarray.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.item.html", "dispname": "numpy.recarray.item"}, {"name": "reference/generated/numpy.recarray.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.itemset.html", "dispname": "numpy.recarray.itemset"}, {"name": "reference/generated/numpy.recarray.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.itemsize.html", "dispname": "numpy.recarray.itemsize"}, {"name": "reference/generated/numpy.recarray.mT", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.mT.html", "dispname": "numpy.recarray.mT"}, {"name": "reference/generated/numpy.recarray.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.max.html", "dispname": "numpy.recarray.max"}, {"name": "reference/generated/numpy.recarray.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.mean.html", "dispname": "numpy.recarray.mean"}, {"name": "reference/generated/numpy.recarray.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.min.html", "dispname": "numpy.recarray.min"}, {"name": "reference/generated/numpy.recarray.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.nbytes.html", "dispname": "numpy.recarray.nbytes"}, {"name": "reference/generated/numpy.recarray.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.ndim.html", "dispname": "numpy.recarray.ndim"}, {"name": "reference/generated/numpy.recarray.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.newbyteorder.html", "dispname": "numpy.recarray.newbyteorder"}, {"name": "reference/generated/numpy.recarray.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.nonzero.html", "dispname": "numpy.recarray.nonzero"}, {"name": "reference/generated/numpy.recarray.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.partition.html", "dispname": "numpy.recarray.partition"}, {"name": "reference/generated/numpy.recarray.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.prod.html", "dispname": "numpy.recarray.prod"}, {"name": "reference/generated/numpy.recarray.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.ptp.html", "dispname": "numpy.recarray.ptp"}, {"name": "reference/generated/numpy.recarray.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.put.html", "dispname": "numpy.recarray.put"}, {"name": "reference/generated/numpy.recarray.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.ravel.html", "dispname": "numpy.recarray.ravel"}, {"name": "reference/generated/numpy.recarray.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.real.html", "dispname": "numpy.recarray.real"}, {"name": "reference/generated/numpy.recarray.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.repeat.html", "dispname": "numpy.recarray.repeat"}, {"name": "reference/generated/numpy.recarray.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.reshape.html", "dispname": "numpy.recarray.reshape"}, {"name": "reference/generated/numpy.recarray.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.resize.html", "dispname": "numpy.recarray.resize"}, {"name": "reference/generated/numpy.recarray.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.round.html", "dispname": "numpy.recarray.round"}, {"name": "reference/generated/numpy.recarray.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.searchsorted.html", "dispname": "numpy.recarray.searchsorted"}, {"name": "reference/generated/numpy.recarray.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.setfield.html", "dispname": "numpy.recarray.setfield"}, {"name": "reference/generated/numpy.recarray.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.setflags.html", "dispname": "numpy.recarray.setflags"}, {"name": "reference/generated/numpy.recarray.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.shape.html", "dispname": "numpy.recarray.shape"}, {"name": "reference/generated/numpy.recarray.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.size.html", "dispname": "numpy.recarray.size"}, {"name": "reference/generated/numpy.recarray.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.sort.html", "dispname": "numpy.recarray.sort"}, {"name": "reference/generated/numpy.recarray.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.squeeze.html", "dispname": "numpy.recarray.squeeze"}, {"name": "reference/generated/numpy.recarray.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.std.html", "dispname": "numpy.recarray.std"}, {"name": "reference/generated/numpy.recarray.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.strides.html", "dispname": "numpy.recarray.strides"}, {"name": "reference/generated/numpy.recarray.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.sum.html", "dispname": "numpy.recarray.sum"}, {"name": "reference/generated/numpy.recarray.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.swapaxes.html", "dispname": "numpy.recarray.swapaxes"}, {"name": "reference/generated/numpy.recarray.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.take.html", "dispname": "numpy.recarray.take"}, {"name": "reference/generated/numpy.recarray.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.to_device.html", "dispname": "numpy.recarray.to_device"}, {"name": "reference/generated/numpy.recarray.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.tobytes.html", "dispname": "numpy.recarray.tobytes"}, {"name": "reference/generated/numpy.recarray.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.tofile.html", "dispname": "numpy.recarray.tofile"}, {"name": "reference/generated/numpy.recarray.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.tolist.html", "dispname": "numpy.recarray.tolist"}, {"name": "reference/generated/numpy.recarray.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.tostring.html", "dispname": "numpy.recarray.tostring"}, {"name": "reference/generated/numpy.recarray.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.trace.html", "dispname": "numpy.recarray.trace"}, {"name": "reference/generated/numpy.recarray.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.transpose.html", "dispname": "numpy.recarray.transpose"}, {"name": "reference/generated/numpy.recarray.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.var.html", "dispname": "numpy.recarray.var"}, {"name": "reference/generated/numpy.recarray.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.recarray.view.html", "dispname": "numpy.recarray.view"}, {"name": "reference/generated/numpy.reciprocal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.reciprocal.html", "dispname": "numpy.reciprocal"}, {"name": "reference/generated/numpy.record", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.html", "dispname": "numpy.record"}, {"name": "reference/generated/numpy.record.T", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.T.html", "dispname": "numpy.record.T"}, {"name": "reference/generated/numpy.record.all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.all.html", "dispname": "numpy.record.all"}, {"name": "reference/generated/numpy.record.any", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.any.html", "dispname": "numpy.record.any"}, {"name": "reference/generated/numpy.record.argmax", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.argmax.html", "dispname": "numpy.record.argmax"}, {"name": "reference/generated/numpy.record.argmin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.argmin.html", "dispname": "numpy.record.argmin"}, {"name": "reference/generated/numpy.record.argsort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.argsort.html", "dispname": "numpy.record.argsort"}, {"name": "reference/generated/numpy.record.astype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.astype.html", "dispname": "numpy.record.astype"}, {"name": "reference/generated/numpy.record.base", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.base.html", "dispname": "numpy.record.base"}, {"name": "reference/generated/numpy.record.byteswap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.byteswap.html", "dispname": "numpy.record.byteswap"}, {"name": "reference/generated/numpy.record.choose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.choose.html", "dispname": "numpy.record.choose"}, {"name": "reference/generated/numpy.record.clip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.clip.html", "dispname": "numpy.record.clip"}, {"name": "reference/generated/numpy.record.compress", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.compress.html", "dispname": "numpy.record.compress"}, {"name": "reference/generated/numpy.record.conj", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.conj.html", "dispname": "numpy.record.conj"}, {"name": "reference/generated/numpy.record.conjugate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.conjugate.html", "dispname": "numpy.record.conjugate"}, {"name": "reference/generated/numpy.record.copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.copy.html", "dispname": "numpy.record.copy"}, {"name": "reference/generated/numpy.record.cumprod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.cumprod.html", "dispname": "numpy.record.cumprod"}, {"name": "reference/generated/numpy.record.cumsum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.cumsum.html", "dispname": "numpy.record.cumsum"}, {"name": "reference/generated/numpy.record.data", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.data.html", "dispname": "numpy.record.data"}, {"name": "reference/generated/numpy.record.device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.device.html", "dispname": "numpy.record.device"}, {"name": "reference/generated/numpy.record.diagonal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.diagonal.html", "dispname": "numpy.record.diagonal"}, {"name": "reference/generated/numpy.record.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.dtype.html", "dispname": "numpy.record.dtype"}, {"name": "reference/generated/numpy.record.dump", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.dump.html", "dispname": "numpy.record.dump"}, {"name": "reference/generated/numpy.record.dumps", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.dumps.html", "dispname": "numpy.record.dumps"}, {"name": "reference/generated/numpy.record.fill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.fill.html", "dispname": "numpy.record.fill"}, {"name": "reference/generated/numpy.record.flags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.flags.html", "dispname": "numpy.record.flags"}, {"name": "reference/generated/numpy.record.flat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.flat.html", "dispname": "numpy.record.flat"}, {"name": "reference/generated/numpy.record.flatten", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.flatten.html", "dispname": "numpy.record.flatten"}, {"name": "reference/generated/numpy.record.getfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.getfield.html", "dispname": "numpy.record.getfield"}, {"name": "reference/generated/numpy.record.imag", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.imag.html", "dispname": "numpy.record.imag"}, {"name": "reference/generated/numpy.record.item", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.item.html", "dispname": "numpy.record.item"}, {"name": "reference/generated/numpy.record.itemset", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.itemset.html", "dispname": "numpy.record.itemset"}, {"name": "reference/generated/numpy.record.itemsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.itemsize.html", "dispname": "numpy.record.itemsize"}, {"name": "reference/generated/numpy.record.max", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.max.html", "dispname": "numpy.record.max"}, {"name": "reference/generated/numpy.record.mean", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.mean.html", "dispname": "numpy.record.mean"}, {"name": "reference/generated/numpy.record.min", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.min.html", "dispname": "numpy.record.min"}, {"name": "reference/generated/numpy.record.nbytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.nbytes.html", "dispname": "numpy.record.nbytes"}, {"name": "reference/generated/numpy.record.ndim", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.ndim.html", "dispname": "numpy.record.ndim"}, {"name": "reference/generated/numpy.record.newbyteorder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.newbyteorder.html", "dispname": "numpy.record.newbyteorder"}, {"name": "reference/generated/numpy.record.nonzero", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.nonzero.html", "dispname": "numpy.record.nonzero"}, {"name": "reference/generated/numpy.record.pprint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.pprint.html", "dispname": "numpy.record.pprint"}, {"name": "reference/generated/numpy.record.prod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.prod.html", "dispname": "numpy.record.prod"}, {"name": "reference/generated/numpy.record.ptp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.ptp.html", "dispname": "numpy.record.ptp"}, {"name": "reference/generated/numpy.record.put", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.put.html", "dispname": "numpy.record.put"}, {"name": "reference/generated/numpy.record.ravel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.ravel.html", "dispname": "numpy.record.ravel"}, {"name": "reference/generated/numpy.record.real", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.real.html", "dispname": "numpy.record.real"}, {"name": "reference/generated/numpy.record.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.repeat.html", "dispname": "numpy.record.repeat"}, {"name": "reference/generated/numpy.record.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.reshape.html", "dispname": "numpy.record.reshape"}, {"name": "reference/generated/numpy.record.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.resize.html", "dispname": "numpy.record.resize"}, {"name": "reference/generated/numpy.record.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.round.html", "dispname": "numpy.record.round"}, {"name": "reference/generated/numpy.record.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.searchsorted.html", "dispname": "numpy.record.searchsorted"}, {"name": "reference/generated/numpy.record.setfield", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.setfield.html", "dispname": "numpy.record.setfield"}, {"name": "reference/generated/numpy.record.setflags", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.setflags.html", "dispname": "numpy.record.setflags"}, {"name": "reference/generated/numpy.record.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.shape.html", "dispname": "numpy.record.shape"}, {"name": "reference/generated/numpy.record.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.size.html", "dispname": "numpy.record.size"}, {"name": "reference/generated/numpy.record.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.sort.html", "dispname": "numpy.record.sort"}, {"name": "reference/generated/numpy.record.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.squeeze.html", "dispname": "numpy.record.squeeze"}, {"name": "reference/generated/numpy.record.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.std.html", "dispname": "numpy.record.std"}, {"name": "reference/generated/numpy.record.strides", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.strides.html", "dispname": "numpy.record.strides"}, {"name": "reference/generated/numpy.record.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.sum.html", "dispname": "numpy.record.sum"}, {"name": "reference/generated/numpy.record.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.swapaxes.html", "dispname": "numpy.record.swapaxes"}, {"name": "reference/generated/numpy.record.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.take.html", "dispname": "numpy.record.take"}, {"name": "reference/generated/numpy.record.to_device", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.to_device.html", "dispname": "numpy.record.to_device"}, {"name": "reference/generated/numpy.record.tobytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.tobytes.html", "dispname": "numpy.record.tobytes"}, {"name": "reference/generated/numpy.record.tofile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.tofile.html", "dispname": "numpy.record.tofile"}, {"name": "reference/generated/numpy.record.tolist", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.tolist.html", "dispname": "numpy.record.tolist"}, {"name": "reference/generated/numpy.record.tostring", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.tostring.html", "dispname": "numpy.record.tostring"}, {"name": "reference/generated/numpy.record.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.trace.html", "dispname": "numpy.record.trace"}, {"name": "reference/generated/numpy.record.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.transpose.html", "dispname": "numpy.record.transpose"}, {"name": "reference/generated/numpy.record.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.var.html", "dispname": "numpy.record.var"}, {"name": "reference/generated/numpy.record.view", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.record.view.html", "dispname": "numpy.record.view"}, {"name": "reference/generated/numpy.remainder", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.remainder.html", "dispname": "numpy.remainder"}, {"name": "reference/generated/numpy.repeat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.repeat.html", "dispname": "numpy.repeat"}, {"name": "reference/generated/numpy.require", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.require.html", "dispname": "numpy.require"}, {"name": "reference/generated/numpy.reshape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.reshape.html", "dispname": "numpy.reshape"}, {"name": "reference/generated/numpy.resize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.resize.html", "dispname": "numpy.resize"}, {"name": "reference/generated/numpy.result_type", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.result_type.html", "dispname": "numpy.result_type"}, {"name": "reference/generated/numpy.right_shift", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.right_shift.html", "dispname": "numpy.right_shift"}, {"name": "reference/generated/numpy.rint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rint.html", "dispname": "numpy.rint"}, {"name": "reference/generated/numpy.roll", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.roll.html", "dispname": "numpy.roll"}, {"name": "reference/generated/numpy.rollaxis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rollaxis.html", "dispname": "numpy.rollaxis"}, {"name": "reference/generated/numpy.roots", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.roots.html", "dispname": "numpy.roots"}, {"name": "reference/generated/numpy.rot90", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.rot90.html", "dispname": "numpy.rot90"}, {"name": "reference/generated/numpy.round", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.round.html", "dispname": "numpy.round"}, {"name": "reference/generated/numpy.s_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.s_.html", "dispname": "numpy.s_"}, {"name": "reference/generated/numpy.save", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.save.html", "dispname": "numpy.save"}, {"name": "reference/generated/numpy.savetxt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.savetxt.html", "dispname": "numpy.savetxt"}, {"name": "reference/generated/numpy.savez", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.savez.html", "dispname": "numpy.savez"}, {"name": "reference/generated/numpy.savez_compressed", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.savez_compressed.html", "dispname": "numpy.savez_compressed"}, {"name": "reference/generated/numpy.searchsorted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.searchsorted.html", "dispname": "numpy.searchsorted"}, {"name": "reference/generated/numpy.select", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.select.html", "dispname": "numpy.select"}, {"name": "reference/generated/numpy.set_printoptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.set_printoptions.html", "dispname": "numpy.set_printoptions"}, {"name": "reference/generated/numpy.setbufsize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.setbufsize.html", "dispname": "numpy.setbufsize"}, {"name": "reference/generated/numpy.setdiff1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.setdiff1d.html", "dispname": "numpy.setdiff1d"}, {"name": "reference/generated/numpy.seterr", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.seterr.html", "dispname": "numpy.seterr"}, {"name": "reference/generated/numpy.seterrcall", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.seterrcall.html", "dispname": "numpy.seterrcall"}, {"name": "reference/generated/numpy.setxor1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.setxor1d.html", "dispname": "numpy.setxor1d"}, {"name": "reference/generated/numpy.shape", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.shape.html", "dispname": "numpy.shape"}, {"name": "reference/generated/numpy.shares_memory", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.shares_memory.html", "dispname": "numpy.shares_memory"}, {"name": "reference/generated/numpy.show_config", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.show_config.html", "dispname": "numpy.show_config"}, {"name": "reference/generated/numpy.show_runtime", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.show_runtime.html", "dispname": "numpy.show_runtime"}, {"name": "reference/generated/numpy.sign", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sign.html", "dispname": "numpy.sign"}, {"name": "reference/generated/numpy.signbit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.signbit.html", "dispname": "numpy.signbit"}, {"name": "reference/generated/numpy.sin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sin.html", "dispname": "numpy.sin"}, {"name": "reference/generated/numpy.sinc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sinc.html", "dispname": "numpy.sinc"}, {"name": "reference/generated/numpy.sinh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sinh.html", "dispname": "numpy.sinh"}, {"name": "reference/generated/numpy.size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.size.html", "dispname": "numpy.size"}, {"name": "reference/generated/numpy.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sort.html", "dispname": "numpy.sort"}, {"name": "reference/generated/numpy.sort_complex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sort_complex.html", "dispname": "numpy.sort_complex"}, {"name": "reference/generated/numpy.spacing", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.spacing.html", "dispname": "numpy.spacing"}, {"name": "reference/generated/numpy.split", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.split.html", "dispname": "numpy.split"}, {"name": "reference/generated/numpy.sqrt", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sqrt.html", "dispname": "numpy.sqrt"}, {"name": "reference/generated/numpy.square", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.square.html", "dispname": "numpy.square"}, {"name": "reference/generated/numpy.squeeze", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.squeeze.html", "dispname": "numpy.squeeze"}, {"name": "reference/generated/numpy.stack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.stack.html", "dispname": "numpy.stack"}, {"name": "reference/generated/numpy.std", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.std.html", "dispname": "numpy.std"}, {"name": "reference/generated/numpy.strings.add", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.add.html", "dispname": "numpy.strings.add"}, {"name": "reference/generated/numpy.strings.capitalize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.capitalize.html", "dispname": "numpy.strings.capitalize"}, {"name": "reference/generated/numpy.strings.center", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.center.html", "dispname": "numpy.strings.center"}, {"name": "reference/generated/numpy.strings.count", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.count.html", "dispname": "numpy.strings.count"}, {"name": "reference/generated/numpy.strings.decode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.decode.html", "dispname": "numpy.strings.decode"}, {"name": "reference/generated/numpy.strings.encode", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.encode.html", "dispname": "numpy.strings.encode"}, {"name": "reference/generated/numpy.strings.endswith", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.endswith.html", "dispname": "numpy.strings.endswith"}, {"name": "reference/generated/numpy.strings.equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.equal.html", "dispname": "numpy.strings.equal"}, {"name": "reference/generated/numpy.strings.expandtabs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.expandtabs.html", "dispname": "numpy.strings.expandtabs"}, {"name": "reference/generated/numpy.strings.find", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.find.html", "dispname": "numpy.strings.find"}, {"name": "reference/generated/numpy.strings.greater", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.greater.html", "dispname": "numpy.strings.greater"}, {"name": "reference/generated/numpy.strings.greater_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.greater_equal.html", "dispname": "numpy.strings.greater_equal"}, {"name": "reference/generated/numpy.strings.index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.index.html", "dispname": "numpy.strings.index"}, {"name": "reference/generated/numpy.strings.isalnum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isalnum.html", "dispname": "numpy.strings.isalnum"}, {"name": "reference/generated/numpy.strings.isalpha", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isalpha.html", "dispname": "numpy.strings.isalpha"}, {"name": "reference/generated/numpy.strings.isdecimal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isdecimal.html", "dispname": "numpy.strings.isdecimal"}, {"name": "reference/generated/numpy.strings.isdigit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isdigit.html", "dispname": "numpy.strings.isdigit"}, {"name": "reference/generated/numpy.strings.islower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.islower.html", "dispname": "numpy.strings.islower"}, {"name": "reference/generated/numpy.strings.isnumeric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isnumeric.html", "dispname": "numpy.strings.isnumeric"}, {"name": "reference/generated/numpy.strings.isspace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isspace.html", "dispname": "numpy.strings.isspace"}, {"name": "reference/generated/numpy.strings.istitle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.istitle.html", "dispname": "numpy.strings.istitle"}, {"name": "reference/generated/numpy.strings.isupper", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.isupper.html", "dispname": "numpy.strings.isupper"}, {"name": "reference/generated/numpy.strings.less", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.less.html", "dispname": "numpy.strings.less"}, {"name": "reference/generated/numpy.strings.less_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.less_equal.html", "dispname": "numpy.strings.less_equal"}, {"name": "reference/generated/numpy.strings.ljust", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.ljust.html", "dispname": "numpy.strings.ljust"}, {"name": "reference/generated/numpy.strings.lower", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.lower.html", "dispname": "numpy.strings.lower"}, {"name": "reference/generated/numpy.strings.lstrip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.lstrip.html", "dispname": "numpy.strings.lstrip"}, {"name": "reference/generated/numpy.strings.mod", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.mod.html", "dispname": "numpy.strings.mod"}, {"name": "reference/generated/numpy.strings.multiply", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.multiply.html", "dispname": "numpy.strings.multiply"}, {"name": "reference/generated/numpy.strings.not_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.not_equal.html", "dispname": "numpy.strings.not_equal"}, {"name": "reference/generated/numpy.strings.partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.partition.html", "dispname": "numpy.strings.partition"}, {"name": "reference/generated/numpy.strings.replace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.replace.html", "dispname": "numpy.strings.replace"}, {"name": "reference/generated/numpy.strings.rfind", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.rfind.html", "dispname": "numpy.strings.rfind"}, {"name": "reference/generated/numpy.strings.rindex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.rindex.html", "dispname": "numpy.strings.rindex"}, {"name": "reference/generated/numpy.strings.rjust", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.rjust.html", "dispname": "numpy.strings.rjust"}, {"name": "reference/generated/numpy.strings.rpartition", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.rpartition.html", "dispname": "numpy.strings.rpartition"}, {"name": "reference/generated/numpy.strings.rstrip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.rstrip.html", "dispname": "numpy.strings.rstrip"}, {"name": "reference/generated/numpy.strings.startswith", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.startswith.html", "dispname": "numpy.strings.startswith"}, {"name": "reference/generated/numpy.strings.str_len", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.str_len.html", "dispname": "numpy.strings.str_len"}, {"name": "reference/generated/numpy.strings.strip", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.strip.html", "dispname": "numpy.strings.strip"}, {"name": "reference/generated/numpy.strings.swapcase", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.swapcase.html", "dispname": "numpy.strings.swapcase"}, {"name": "reference/generated/numpy.strings.title", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.title.html", "dispname": "numpy.strings.title"}, {"name": "reference/generated/numpy.strings.translate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.translate.html", "dispname": "numpy.strings.translate"}, {"name": "reference/generated/numpy.strings.upper", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.upper.html", "dispname": "numpy.strings.upper"}, {"name": "reference/generated/numpy.strings.zfill", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.strings.zfill.html", "dispname": "numpy.strings.zfill"}, {"name": "reference/generated/numpy.subtract", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.subtract.html", "dispname": "numpy.subtract"}, {"name": "reference/generated/numpy.sum", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.sum.html", "dispname": "numpy.sum"}, {"name": "reference/generated/numpy.swapaxes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.swapaxes.html", "dispname": "numpy.swapaxes"}, {"name": "reference/generated/numpy.take", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.take.html", "dispname": "numpy.take"}, {"name": "reference/generated/numpy.take_along_axis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.take_along_axis.html", "dispname": "numpy.take_along_axis"}, {"name": "reference/generated/numpy.tan", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tan.html", "dispname": "numpy.tan"}, {"name": "reference/generated/numpy.tanh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tanh.html", "dispname": "numpy.tanh"}, {"name": "reference/generated/numpy.tensordot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tensordot.html", "dispname": "numpy.tensordot"}, {"name": "reference/generated/numpy.testing.assert_", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_.html", "dispname": "numpy.testing.assert_"}, {"name": "reference/generated/numpy.testing.assert_allclose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_allclose.html", "dispname": "numpy.testing.assert_allclose"}, {"name": "reference/generated/numpy.testing.assert_almost_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_almost_equal.html", "dispname": "numpy.testing.assert_almost_equal"}, {"name": "reference/generated/numpy.testing.assert_approx_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_approx_equal.html", "dispname": "numpy.testing.assert_approx_equal"}, {"name": "reference/generated/numpy.testing.assert_array_almost_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_array_almost_equal.html", "dispname": "numpy.testing.assert_array_almost_equal"}, {"name": "reference/generated/numpy.testing.assert_array_almost_equal_nulp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_array_almost_equal_nulp.html", "dispname": "numpy.testing.assert_array_almost_equal_nulp"}, {"name": "reference/generated/numpy.testing.assert_array_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_array_equal.html", "dispname": "numpy.testing.assert_array_equal"}, {"name": "reference/generated/numpy.testing.assert_array_less", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_array_less.html", "dispname": "numpy.testing.assert_array_less"}, {"name": "reference/generated/numpy.testing.assert_array_max_ulp", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_array_max_ulp.html", "dispname": "numpy.testing.assert_array_max_ulp"}, {"name": "reference/generated/numpy.testing.assert_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_equal.html", "dispname": "numpy.testing.assert_equal"}, {"name": "reference/generated/numpy.testing.assert_no_gc_cycles", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_no_gc_cycles.html", "dispname": "numpy.testing.assert_no_gc_cycles"}, {"name": "reference/generated/numpy.testing.assert_no_warnings", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_no_warnings.html", "dispname": "numpy.testing.assert_no_warnings"}, {"name": "reference/generated/numpy.testing.assert_raises", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_raises.html", "dispname": "numpy.testing.assert_raises"}, {"name": "reference/generated/numpy.testing.assert_raises_regex", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_raises_regex.html", "dispname": "numpy.testing.assert_raises_regex"}, {"name": "reference/generated/numpy.testing.assert_string_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_string_equal.html", "dispname": "numpy.testing.assert_string_equal"}, {"name": "reference/generated/numpy.testing.assert_warns", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.assert_warns.html", "dispname": "numpy.testing.assert_warns"}, {"name": "reference/generated/numpy.testing.clear_and_catch_warnings", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.clear_and_catch_warnings.html", "dispname": "numpy.testing.clear_and_catch_warnings"}, {"name": "reference/generated/numpy.testing.clear_and_catch_warnings.class_modules", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.clear_and_catch_warnings.class_modules.html", "dispname": "numpy.testing.clear_and_catch_warnings.class_modules"}, {"name": "reference/generated/numpy.testing.decorate_methods", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.decorate_methods.html", "dispname": "numpy.testing.decorate_methods"}, {"name": "reference/generated/numpy.testing.measure", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.measure.html", "dispname": "numpy.testing.measure"}, {"name": "reference/generated/numpy.testing.overrides.allows_array_function_override", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.overrides.allows_array_function_override.html", "dispname": "numpy.testing.overrides.allows_array_function_override"}, {"name": "reference/generated/numpy.testing.overrides.allows_array_ufunc_override", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.overrides.allows_array_ufunc_override.html", "dispname": "numpy.testing.overrides.allows_array_ufunc_override"}, {"name": "reference/generated/numpy.testing.overrides.get_overridable_numpy_array_functions", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.overrides.get_overridable_numpy_array_functions.html", "dispname": "numpy.testing.overrides.get_overridable_numpy_array_functions"}, {"name": "reference/generated/numpy.testing.overrides.get_overridable_numpy_ufuncs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.overrides.get_overridable_numpy_ufuncs.html", "dispname": "numpy.testing.overrides.get_overridable_numpy_ufuncs"}, {"name": "reference/generated/numpy.testing.print_assert_equal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.print_assert_equal.html", "dispname": "numpy.testing.print_assert_equal"}, {"name": "reference/generated/numpy.testing.rundocs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.rundocs.html", "dispname": "numpy.testing.rundocs"}, {"name": "reference/generated/numpy.testing.suppress_warnings", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.suppress_warnings.html", "dispname": "numpy.testing.suppress_warnings"}, {"name": "reference/generated/numpy.testing.suppress_warnings.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.suppress_warnings.__call__.html", "dispname": "numpy.testing.suppress_warnings.__call__"}, {"name": "reference/generated/numpy.testing.suppress_warnings.filter", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.suppress_warnings.filter.html", "dispname": "numpy.testing.suppress_warnings.filter"}, {"name": "reference/generated/numpy.testing.suppress_warnings.record", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.testing.suppress_warnings.record.html", "dispname": "numpy.testing.suppress_warnings.record"}, {"name": "reference/generated/numpy.tile", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tile.html", "dispname": "numpy.tile"}, {"name": "reference/generated/numpy.trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.trace.html", "dispname": "numpy.trace"}, {"name": "reference/generated/numpy.transpose", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.transpose.html", "dispname": "numpy.transpose"}, {"name": "reference/generated/numpy.trapezoid", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.trapezoid.html", "dispname": "numpy.trapezoid"}, {"name": "reference/generated/numpy.tri", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tri.html", "dispname": "numpy.tri"}, {"name": "reference/generated/numpy.tril", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tril.html", "dispname": "numpy.tril"}, {"name": "reference/generated/numpy.tril_indices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tril_indices.html", "dispname": "numpy.tril_indices"}, {"name": "reference/generated/numpy.tril_indices_from", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.tril_indices_from.html", "dispname": "numpy.tril_indices_from"}, {"name": "reference/generated/numpy.trim_zeros", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.trim_zeros.html", "dispname": "numpy.trim_zeros"}, {"name": "reference/generated/numpy.triu", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.triu.html", "dispname": "numpy.triu"}, {"name": "reference/generated/numpy.triu_indices", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.triu_indices.html", "dispname": "numpy.triu_indices"}, {"name": "reference/generated/numpy.triu_indices_from", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.triu_indices_from.html", "dispname": "numpy.triu_indices_from"}, {"name": "reference/generated/numpy.true_divide", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.true_divide.html", "dispname": "numpy.true_divide"}, {"name": "reference/generated/numpy.trunc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.trunc.html", "dispname": "numpy.trunc"}, {"name": "reference/generated/numpy.typename", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.typename.html", "dispname": "numpy.typename"}, {"name": "reference/generated/numpy.ufunc", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.html", "dispname": "numpy.ufunc"}, {"name": "reference/generated/numpy.ufunc.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.__call__.html", "dispname": "numpy.ufunc.__call__"}, {"name": "reference/generated/numpy.ufunc.accumulate", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.accumulate.html", "dispname": "numpy.ufunc.accumulate"}, {"name": "reference/generated/numpy.ufunc.at", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.at.html", "dispname": "numpy.ufunc.at"}, {"name": "reference/generated/numpy.ufunc.identity", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.identity.html", "dispname": "numpy.ufunc.identity"}, {"name": "reference/generated/numpy.ufunc.nargs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.nargs.html", "dispname": "numpy.ufunc.nargs"}, {"name": "reference/generated/numpy.ufunc.nin", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.nin.html", "dispname": "numpy.ufunc.nin"}, {"name": "reference/generated/numpy.ufunc.nout", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.nout.html", "dispname": "numpy.ufunc.nout"}, {"name": "reference/generated/numpy.ufunc.ntypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.ntypes.html", "dispname": "numpy.ufunc.ntypes"}, {"name": "reference/generated/numpy.ufunc.outer", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.outer.html", "dispname": "numpy.ufunc.outer"}, {"name": "reference/generated/numpy.ufunc.reduce", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.reduce.html", "dispname": "numpy.ufunc.reduce"}, {"name": "reference/generated/numpy.ufunc.reduceat", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.reduceat.html", "dispname": "numpy.ufunc.reduceat"}, {"name": "reference/generated/numpy.ufunc.resolve_dtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.resolve_dtypes.html", "dispname": "numpy.ufunc.resolve_dtypes"}, {"name": "reference/generated/numpy.ufunc.signature", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.signature.html", "dispname": "numpy.ufunc.signature"}, {"name": "reference/generated/numpy.ufunc.types", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.ufunc.types.html", "dispname": "numpy.ufunc.types"}, {"name": "reference/generated/numpy.union1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.union1d.html", "dispname": "numpy.union1d"}, {"name": "reference/generated/numpy.unique", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unique.html", "dispname": "numpy.unique"}, {"name": "reference/generated/numpy.unique_all", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unique_all.html", "dispname": "numpy.unique_all"}, {"name": "reference/generated/numpy.unique_counts", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unique_counts.html", "dispname": "numpy.unique_counts"}, {"name": "reference/generated/numpy.unique_inverse", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unique_inverse.html", "dispname": "numpy.unique_inverse"}, {"name": "reference/generated/numpy.unique_values", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unique_values.html", "dispname": "numpy.unique_values"}, {"name": "reference/generated/numpy.unpackbits", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unpackbits.html", "dispname": "numpy.unpackbits"}, {"name": "reference/generated/numpy.unravel_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unravel_index.html", "dispname": "numpy.unravel_index"}, {"name": "reference/generated/numpy.unstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unstack.html", "dispname": "numpy.unstack"}, {"name": "reference/generated/numpy.unwrap", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.unwrap.html", "dispname": "numpy.unwrap"}, {"name": "reference/generated/numpy.vander", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vander.html", "dispname": "numpy.vander"}, {"name": "reference/generated/numpy.var", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.var.html", "dispname": "numpy.var"}, {"name": "reference/generated/numpy.vdot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vdot.html", "dispname": "numpy.vdot"}, {"name": "reference/generated/numpy.vecdot", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vecdot.html", "dispname": "numpy.vecdot"}, {"name": "reference/generated/numpy.vectorize", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vectorize.html", "dispname": "numpy.vectorize"}, {"name": "reference/generated/numpy.vectorize.__call__", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vectorize.__call__.html", "dispname": "numpy.vectorize.__call__"}, {"name": "reference/generated/numpy.vsplit", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vsplit.html", "dispname": "numpy.vsplit"}, {"name": "reference/generated/numpy.vstack", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.vstack.html", "dispname": "numpy.vstack"}, {"name": "reference/generated/numpy.where", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.where.html", "dispname": "numpy.where"}, {"name": "reference/generated/numpy.zeros", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.zeros.html", "dispname": "numpy.zeros"}, {"name": "reference/generated/numpy.zeros_like", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/generated/numpy.zeros_like.html", "dispname": "numpy.zeros_like"}, {"name": "reference/global_state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/global_state.html", "dispname": "Global Configuration Options"}, {"name": "reference/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/index.html", "dispname": "NumPy reference"}, {"name": "reference/internals", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/internals.html", "dispname": "NumPy internals"}, {"name": "reference/internals.code-explanations", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/internals.code-explanations.html", "dispname": "NumPy C code explanations"}, {"name": "reference/maskedarray", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/maskedarray.html", "dispname": "Masked arrays"}, {"name": "reference/maskedarray.baseclass", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/maskedarray.baseclass.html", "dispname": "Constants of the numpy.ma module"}, {"name": "reference/maskedarray.generic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/maskedarray.generic.html", "dispname": "The numpy.ma module"}, {"name": "reference/module_structure", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/module_structure.html", "dispname": "NumPy\u2019s module structure"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.html", "dispname": "numpy.random.BitGenerator"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.capsule", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.capsule.html", "dispname": "numpy.random.BitGenerator.capsule"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.cffi.html", "dispname": "numpy.random.BitGenerator.cffi"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.ctypes.html", "dispname": "numpy.random.BitGenerator.ctypes"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.lock", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.lock.html", "dispname": "numpy.random.BitGenerator.lock"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.random_raw", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.random_raw.html", "dispname": "numpy.random.BitGenerator.random_raw"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.seed_seq", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.seed_seq.html", "dispname": "numpy.random.BitGenerator.seed_seq"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.spawn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.spawn.html", "dispname": "numpy.random.BitGenerator.spawn"}, {"name": "reference/random/bit_generators/generated/numpy.random.BitGenerator.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.BitGenerator.state.html", "dispname": "numpy.random.BitGenerator.state"}, {"name": "reference/random/bit_generators/generated/numpy.random.MT19937.cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.cffi.html", "dispname": "numpy.random.MT19937.cffi"}, {"name": "reference/random/bit_generators/generated/numpy.random.MT19937.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.ctypes.html", "dispname": "numpy.random.MT19937.ctypes"}, {"name": "reference/random/bit_generators/generated/numpy.random.MT19937.jumped", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.jumped.html", "dispname": "numpy.random.MT19937.jumped"}, {"name": "reference/random/bit_generators/generated/numpy.random.MT19937.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.MT19937.state.html", "dispname": "numpy.random.MT19937.state"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64.advance", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.advance.html", "dispname": "numpy.random.PCG64.advance"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64.cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.cffi.html", "dispname": "numpy.random.PCG64.cffi"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.ctypes.html", "dispname": "numpy.random.PCG64.ctypes"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64.jumped", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.jumped.html", "dispname": "numpy.random.PCG64.jumped"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64.state.html", "dispname": "numpy.random.PCG64.state"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.advance", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.advance.html", "dispname": "numpy.random.PCG64DXSM.advance"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.cffi.html", "dispname": "numpy.random.PCG64DXSM.cffi"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.ctypes.html", "dispname": "numpy.random.PCG64DXSM.ctypes"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.jumped", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.jumped.html", "dispname": "numpy.random.PCG64DXSM.jumped"}, {"name": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.PCG64DXSM.state.html", "dispname": "numpy.random.PCG64DXSM.state"}, {"name": "reference/random/bit_generators/generated/numpy.random.Philox.advance", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.advance.html", "dispname": "numpy.random.Philox.advance"}, {"name": "reference/random/bit_generators/generated/numpy.random.Philox.cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.cffi.html", "dispname": "numpy.random.Philox.cffi"}, {"name": "reference/random/bit_generators/generated/numpy.random.Philox.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.ctypes.html", "dispname": "numpy.random.Philox.ctypes"}, {"name": "reference/random/bit_generators/generated/numpy.random.Philox.jumped", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.jumped.html", "dispname": "numpy.random.Philox.jumped"}, {"name": "reference/random/bit_generators/generated/numpy.random.Philox.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.Philox.state.html", "dispname": "numpy.random.Philox.state"}, {"name": "reference/random/bit_generators/generated/numpy.random.SFC64.cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SFC64.cffi.html", "dispname": "numpy.random.SFC64.cffi"}, {"name": "reference/random/bit_generators/generated/numpy.random.SFC64.ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SFC64.ctypes.html", "dispname": "numpy.random.SFC64.ctypes"}, {"name": "reference/random/bit_generators/generated/numpy.random.SFC64.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SFC64.state.html", "dispname": "numpy.random.SFC64.state"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.html", "dispname": "numpy.random.SeedSequence"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.entropy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.entropy.html", "dispname": "numpy.random.SeedSequence.entropy"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.generate_state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.generate_state.html", "dispname": "numpy.random.SeedSequence.generate_state"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.n_children_spawned", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.n_children_spawned.html", "dispname": "numpy.random.SeedSequence.n_children_spawned"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.pool", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.pool.html", "dispname": "numpy.random.SeedSequence.pool"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.pool_size", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.pool_size.html", "dispname": "numpy.random.SeedSequence.pool_size"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.spawn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.spawn.html", "dispname": "numpy.random.SeedSequence.spawn"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.spawn_key", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.spawn_key.html", "dispname": "numpy.random.SeedSequence.spawn_key"}, {"name": "reference/random/bit_generators/generated/numpy.random.SeedSequence.state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/generated/numpy.random.SeedSequence.state.html", "dispname": "numpy.random.SeedSequence.state"}, {"name": "reference/random/bit_generators/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/index.html", "dispname": "Bit generators"}, {"name": "reference/random/bit_generators/mt19937", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/mt19937.html", "dispname": "Mersenne Twister (MT19937)"}, {"name": "reference/random/bit_generators/pcg64", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/pcg64.html", "dispname": "Permuted congruential generator (64-bit, PCG64)"}, {"name": "reference/random/bit_generators/pcg64dxsm", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/pcg64dxsm.html", "dispname": "Permuted congruential generator (64-bit, PCG64 DXSM)"}, {"name": "reference/random/bit_generators/philox", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/philox.html", "dispname": "Philox counter-based RNG"}, {"name": "reference/random/bit_generators/sfc64", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/bit_generators/sfc64.html", "dispname": "SFC64 Small Fast Chaotic PRNG"}, {"name": "reference/random/c-api", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/c-api.html", "dispname": "C API for random"}, {"name": "reference/random/compatibility", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/compatibility.html", "dispname": "Compatibility policy"}, {"name": "reference/random/examples/cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/cffi.html", "dispname": "Extending via CFFI"}, {"name": "reference/random/examples/cython/extending.pyx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/cython/extending.pyx.html", "dispname": "extending.pyx"}, {"name": "reference/random/examples/cython/extending_distributions.pyx", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/cython/extending_distributions.pyx.html", "dispname": "extending_distributions.pyx"}, {"name": "reference/random/examples/cython/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/cython/index.html", "dispname": "Extending numpy.random via Cython"}, {"name": "reference/random/examples/cython/meson.build", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/cython/meson.build.html", "dispname": "meson.build"}, {"name": "reference/random/examples/numba", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/numba.html", "dispname": "Extending via Numba"}, {"name": "reference/random/examples/numba_cffi", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/examples/numba_cffi.html", "dispname": "Extending via Numba and CFFI"}, {"name": "reference/random/extending", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/extending.html", "dispname": "Extending"}, {"name": "reference/random/generated/numpy.random.Generator.beta", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.beta.html", "dispname": "numpy.random.Generator.beta"}, {"name": "reference/random/generated/numpy.random.Generator.binomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.binomial.html", "dispname": "numpy.random.Generator.binomial"}, {"name": "reference/random/generated/numpy.random.Generator.bit_generator", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.bit_generator.html", "dispname": "numpy.random.Generator.bit_generator"}, {"name": "reference/random/generated/numpy.random.Generator.bytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.bytes.html", "dispname": "numpy.random.Generator.bytes"}, {"name": "reference/random/generated/numpy.random.Generator.chisquare", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.chisquare.html", "dispname": "numpy.random.Generator.chisquare"}, {"name": "reference/random/generated/numpy.random.Generator.choice", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.choice.html", "dispname": "numpy.random.Generator.choice"}, {"name": "reference/random/generated/numpy.random.Generator.dirichlet", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.dirichlet.html", "dispname": "numpy.random.Generator.dirichlet"}, {"name": "reference/random/generated/numpy.random.Generator.exponential", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.exponential.html", "dispname": "numpy.random.Generator.exponential"}, {"name": "reference/random/generated/numpy.random.Generator.f", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.f.html", "dispname": "numpy.random.Generator.f"}, {"name": "reference/random/generated/numpy.random.Generator.gamma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.gamma.html", "dispname": "numpy.random.Generator.gamma"}, {"name": "reference/random/generated/numpy.random.Generator.geometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.geometric.html", "dispname": "numpy.random.Generator.geometric"}, {"name": "reference/random/generated/numpy.random.Generator.gumbel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.gumbel.html", "dispname": "numpy.random.Generator.gumbel"}, {"name": "reference/random/generated/numpy.random.Generator.hypergeometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.hypergeometric.html", "dispname": "numpy.random.Generator.hypergeometric"}, {"name": "reference/random/generated/numpy.random.Generator.integers", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.integers.html", "dispname": "numpy.random.Generator.integers"}, {"name": "reference/random/generated/numpy.random.Generator.laplace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.laplace.html", "dispname": "numpy.random.Generator.laplace"}, {"name": "reference/random/generated/numpy.random.Generator.logistic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logistic.html", "dispname": "numpy.random.Generator.logistic"}, {"name": "reference/random/generated/numpy.random.Generator.lognormal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.lognormal.html", "dispname": "numpy.random.Generator.lognormal"}, {"name": "reference/random/generated/numpy.random.Generator.logseries", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.logseries.html", "dispname": "numpy.random.Generator.logseries"}, {"name": "reference/random/generated/numpy.random.Generator.multinomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.multinomial.html", "dispname": "numpy.random.Generator.multinomial"}, {"name": "reference/random/generated/numpy.random.Generator.multivariate_hypergeometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.multivariate_hypergeometric.html", "dispname": "numpy.random.Generator.multivariate_hypergeometric"}, {"name": "reference/random/generated/numpy.random.Generator.multivariate_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.multivariate_normal.html", "dispname": "numpy.random.Generator.multivariate_normal"}, {"name": "reference/random/generated/numpy.random.Generator.negative_binomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.negative_binomial.html", "dispname": "numpy.random.Generator.negative_binomial"}, {"name": "reference/random/generated/numpy.random.Generator.noncentral_chisquare", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_chisquare.html", "dispname": "numpy.random.Generator.noncentral_chisquare"}, {"name": "reference/random/generated/numpy.random.Generator.noncentral_f", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.noncentral_f.html", "dispname": "numpy.random.Generator.noncentral_f"}, {"name": "reference/random/generated/numpy.random.Generator.normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.normal.html", "dispname": "numpy.random.Generator.normal"}, {"name": "reference/random/generated/numpy.random.Generator.pareto", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.pareto.html", "dispname": "numpy.random.Generator.pareto"}, {"name": "reference/random/generated/numpy.random.Generator.permutation", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.permutation.html", "dispname": "numpy.random.Generator.permutation"}, {"name": "reference/random/generated/numpy.random.Generator.permuted", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.permuted.html", "dispname": "numpy.random.Generator.permuted"}, {"name": "reference/random/generated/numpy.random.Generator.poisson", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.poisson.html", "dispname": "numpy.random.Generator.poisson"}, {"name": "reference/random/generated/numpy.random.Generator.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.power.html", "dispname": "numpy.random.Generator.power"}, {"name": "reference/random/generated/numpy.random.Generator.random", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.random.html", "dispname": "numpy.random.Generator.random"}, {"name": "reference/random/generated/numpy.random.Generator.rayleigh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.rayleigh.html", "dispname": "numpy.random.Generator.rayleigh"}, {"name": "reference/random/generated/numpy.random.Generator.shuffle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.shuffle.html", "dispname": "numpy.random.Generator.shuffle"}, {"name": "reference/random/generated/numpy.random.Generator.spawn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.spawn.html", "dispname": "numpy.random.Generator.spawn"}, {"name": "reference/random/generated/numpy.random.Generator.standard_cauchy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_cauchy.html", "dispname": "numpy.random.Generator.standard_cauchy"}, {"name": "reference/random/generated/numpy.random.Generator.standard_exponential", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_exponential.html", "dispname": "numpy.random.Generator.standard_exponential"}, {"name": "reference/random/generated/numpy.random.Generator.standard_gamma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_gamma.html", "dispname": "numpy.random.Generator.standard_gamma"}, {"name": "reference/random/generated/numpy.random.Generator.standard_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_normal.html", "dispname": "numpy.random.Generator.standard_normal"}, {"name": "reference/random/generated/numpy.random.Generator.standard_t", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.standard_t.html", "dispname": "numpy.random.Generator.standard_t"}, {"name": "reference/random/generated/numpy.random.Generator.triangular", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.triangular.html", "dispname": "numpy.random.Generator.triangular"}, {"name": "reference/random/generated/numpy.random.Generator.uniform", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.uniform.html", "dispname": "numpy.random.Generator.uniform"}, {"name": "reference/random/generated/numpy.random.Generator.vonmises", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.vonmises.html", "dispname": "numpy.random.Generator.vonmises"}, {"name": "reference/random/generated/numpy.random.Generator.wald", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.wald.html", "dispname": "numpy.random.Generator.wald"}, {"name": "reference/random/generated/numpy.random.Generator.weibull", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.weibull.html", "dispname": "numpy.random.Generator.weibull"}, {"name": "reference/random/generated/numpy.random.Generator.zipf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.zipf.html", "dispname": "numpy.random.Generator.zipf"}, {"name": "reference/random/generated/numpy.random.RandomState.beta", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.beta.html", "dispname": "numpy.random.RandomState.beta"}, {"name": "reference/random/generated/numpy.random.RandomState.binomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.binomial.html", "dispname": "numpy.random.RandomState.binomial"}, {"name": "reference/random/generated/numpy.random.RandomState.bytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.bytes.html", "dispname": "numpy.random.RandomState.bytes"}, {"name": "reference/random/generated/numpy.random.RandomState.chisquare", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.chisquare.html", "dispname": "numpy.random.RandomState.chisquare"}, {"name": "reference/random/generated/numpy.random.RandomState.choice", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.choice.html", "dispname": "numpy.random.RandomState.choice"}, {"name": "reference/random/generated/numpy.random.RandomState.dirichlet", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.dirichlet.html", "dispname": "numpy.random.RandomState.dirichlet"}, {"name": "reference/random/generated/numpy.random.RandomState.exponential", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.exponential.html", "dispname": "numpy.random.RandomState.exponential"}, {"name": "reference/random/generated/numpy.random.RandomState.f", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.f.html", "dispname": "numpy.random.RandomState.f"}, {"name": "reference/random/generated/numpy.random.RandomState.gamma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.gamma.html", "dispname": "numpy.random.RandomState.gamma"}, {"name": "reference/random/generated/numpy.random.RandomState.geometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.geometric.html", "dispname": "numpy.random.RandomState.geometric"}, {"name": "reference/random/generated/numpy.random.RandomState.get_state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.get_state.html", "dispname": "numpy.random.RandomState.get_state"}, {"name": "reference/random/generated/numpy.random.RandomState.gumbel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.gumbel.html", "dispname": "numpy.random.RandomState.gumbel"}, {"name": "reference/random/generated/numpy.random.RandomState.hypergeometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.hypergeometric.html", "dispname": "numpy.random.RandomState.hypergeometric"}, {"name": "reference/random/generated/numpy.random.RandomState.laplace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.laplace.html", "dispname": "numpy.random.RandomState.laplace"}, {"name": "reference/random/generated/numpy.random.RandomState.logistic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logistic.html", "dispname": "numpy.random.RandomState.logistic"}, {"name": "reference/random/generated/numpy.random.RandomState.lognormal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.lognormal.html", "dispname": "numpy.random.RandomState.lognormal"}, {"name": "reference/random/generated/numpy.random.RandomState.logseries", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.logseries.html", "dispname": "numpy.random.RandomState.logseries"}, {"name": "reference/random/generated/numpy.random.RandomState.multinomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.multinomial.html", "dispname": "numpy.random.RandomState.multinomial"}, {"name": "reference/random/generated/numpy.random.RandomState.multivariate_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.multivariate_normal.html", "dispname": "numpy.random.RandomState.multivariate_normal"}, {"name": "reference/random/generated/numpy.random.RandomState.negative_binomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.negative_binomial.html", "dispname": "numpy.random.RandomState.negative_binomial"}, {"name": "reference/random/generated/numpy.random.RandomState.noncentral_chisquare", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_chisquare.html", "dispname": "numpy.random.RandomState.noncentral_chisquare"}, {"name": "reference/random/generated/numpy.random.RandomState.noncentral_f", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.noncentral_f.html", "dispname": "numpy.random.RandomState.noncentral_f"}, {"name": "reference/random/generated/numpy.random.RandomState.normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.normal.html", "dispname": "numpy.random.RandomState.normal"}, {"name": "reference/random/generated/numpy.random.RandomState.pareto", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.pareto.html", "dispname": "numpy.random.RandomState.pareto"}, {"name": "reference/random/generated/numpy.random.RandomState.permutation", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.permutation.html", "dispname": "numpy.random.RandomState.permutation"}, {"name": "reference/random/generated/numpy.random.RandomState.poisson", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.poisson.html", "dispname": "numpy.random.RandomState.poisson"}, {"name": "reference/random/generated/numpy.random.RandomState.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.power.html", "dispname": "numpy.random.RandomState.power"}, {"name": "reference/random/generated/numpy.random.RandomState.rand", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.rand.html", "dispname": "numpy.random.RandomState.rand"}, {"name": "reference/random/generated/numpy.random.RandomState.randint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.randint.html", "dispname": "numpy.random.RandomState.randint"}, {"name": "reference/random/generated/numpy.random.RandomState.randn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.randn.html", "dispname": "numpy.random.RandomState.randn"}, {"name": "reference/random/generated/numpy.random.RandomState.random_integers", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.random_integers.html", "dispname": "numpy.random.RandomState.random_integers"}, {"name": "reference/random/generated/numpy.random.RandomState.random_sample", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.random_sample.html", "dispname": "numpy.random.RandomState.random_sample"}, {"name": "reference/random/generated/numpy.random.RandomState.rayleigh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.rayleigh.html", "dispname": "numpy.random.RandomState.rayleigh"}, {"name": "reference/random/generated/numpy.random.RandomState.seed", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.seed.html", "dispname": "numpy.random.RandomState.seed"}, {"name": "reference/random/generated/numpy.random.RandomState.set_state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.set_state.html", "dispname": "numpy.random.RandomState.set_state"}, {"name": "reference/random/generated/numpy.random.RandomState.shuffle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.shuffle.html", "dispname": "numpy.random.RandomState.shuffle"}, {"name": "reference/random/generated/numpy.random.RandomState.standard_cauchy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_cauchy.html", "dispname": "numpy.random.RandomState.standard_cauchy"}, {"name": "reference/random/generated/numpy.random.RandomState.standard_exponential", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_exponential.html", "dispname": "numpy.random.RandomState.standard_exponential"}, {"name": "reference/random/generated/numpy.random.RandomState.standard_gamma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_gamma.html", "dispname": "numpy.random.RandomState.standard_gamma"}, {"name": "reference/random/generated/numpy.random.RandomState.standard_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_normal.html", "dispname": "numpy.random.RandomState.standard_normal"}, {"name": "reference/random/generated/numpy.random.RandomState.standard_t", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.standard_t.html", "dispname": "numpy.random.RandomState.standard_t"}, {"name": "reference/random/generated/numpy.random.RandomState.triangular", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.triangular.html", "dispname": "numpy.random.RandomState.triangular"}, {"name": "reference/random/generated/numpy.random.RandomState.uniform", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.uniform.html", "dispname": "numpy.random.RandomState.uniform"}, {"name": "reference/random/generated/numpy.random.RandomState.vonmises", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.vonmises.html", "dispname": "numpy.random.RandomState.vonmises"}, {"name": "reference/random/generated/numpy.random.RandomState.wald", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.wald.html", "dispname": "numpy.random.RandomState.wald"}, {"name": "reference/random/generated/numpy.random.RandomState.weibull", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.weibull.html", "dispname": "numpy.random.RandomState.weibull"}, {"name": "reference/random/generated/numpy.random.RandomState.zipf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.RandomState.zipf.html", "dispname": "numpy.random.RandomState.zipf"}, {"name": "reference/random/generated/numpy.random.beta", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.beta.html", "dispname": "numpy.random.beta"}, {"name": "reference/random/generated/numpy.random.binomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.binomial.html", "dispname": "numpy.random.binomial"}, {"name": "reference/random/generated/numpy.random.bytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.bytes.html", "dispname": "numpy.random.bytes"}, {"name": "reference/random/generated/numpy.random.chisquare", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.chisquare.html", "dispname": "numpy.random.chisquare"}, {"name": "reference/random/generated/numpy.random.choice", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.choice.html", "dispname": "numpy.random.choice"}, {"name": "reference/random/generated/numpy.random.dirichlet", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.dirichlet.html", "dispname": "numpy.random.dirichlet"}, {"name": "reference/random/generated/numpy.random.exponential", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.exponential.html", "dispname": "numpy.random.exponential"}, {"name": "reference/random/generated/numpy.random.f", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.f.html", "dispname": "numpy.random.f"}, {"name": "reference/random/generated/numpy.random.gamma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.gamma.html", "dispname": "numpy.random.gamma"}, {"name": "reference/random/generated/numpy.random.geometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.geometric.html", "dispname": "numpy.random.geometric"}, {"name": "reference/random/generated/numpy.random.get_state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.get_state.html", "dispname": "numpy.random.get_state"}, {"name": "reference/random/generated/numpy.random.gumbel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.gumbel.html", "dispname": "numpy.random.gumbel"}, {"name": "reference/random/generated/numpy.random.hypergeometric", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.hypergeometric.html", "dispname": "numpy.random.hypergeometric"}, {"name": "reference/random/generated/numpy.random.laplace", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.laplace.html", "dispname": "numpy.random.laplace"}, {"name": "reference/random/generated/numpy.random.logistic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.logistic.html", "dispname": "numpy.random.logistic"}, {"name": "reference/random/generated/numpy.random.lognormal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.lognormal.html", "dispname": "numpy.random.lognormal"}, {"name": "reference/random/generated/numpy.random.logseries", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.logseries.html", "dispname": "numpy.random.logseries"}, {"name": "reference/random/generated/numpy.random.multinomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.multinomial.html", "dispname": "numpy.random.multinomial"}, {"name": "reference/random/generated/numpy.random.multivariate_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.multivariate_normal.html", "dispname": "numpy.random.multivariate_normal"}, {"name": "reference/random/generated/numpy.random.negative_binomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.negative_binomial.html", "dispname": "numpy.random.negative_binomial"}, {"name": "reference/random/generated/numpy.random.noncentral_chisquare", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.noncentral_chisquare.html", "dispname": "numpy.random.noncentral_chisquare"}, {"name": "reference/random/generated/numpy.random.noncentral_f", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.noncentral_f.html", "dispname": "numpy.random.noncentral_f"}, {"name": "reference/random/generated/numpy.random.normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.normal.html", "dispname": "numpy.random.normal"}, {"name": "reference/random/generated/numpy.random.pareto", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.pareto.html", "dispname": "numpy.random.pareto"}, {"name": "reference/random/generated/numpy.random.permutation", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.permutation.html", "dispname": "numpy.random.permutation"}, {"name": "reference/random/generated/numpy.random.poisson", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.poisson.html", "dispname": "numpy.random.poisson"}, {"name": "reference/random/generated/numpy.random.power", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.power.html", "dispname": "numpy.random.power"}, {"name": "reference/random/generated/numpy.random.rand", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.rand.html", "dispname": "numpy.random.rand"}, {"name": "reference/random/generated/numpy.random.randint", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.randint.html", "dispname": "numpy.random.randint"}, {"name": "reference/random/generated/numpy.random.randn", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.randn.html", "dispname": "numpy.random.randn"}, {"name": "reference/random/generated/numpy.random.random", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.random.html", "dispname": "numpy.random.random"}, {"name": "reference/random/generated/numpy.random.random_integers", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.random_integers.html", "dispname": "numpy.random.random_integers"}, {"name": "reference/random/generated/numpy.random.random_sample", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.random_sample.html", "dispname": "numpy.random.random_sample"}, {"name": "reference/random/generated/numpy.random.ranf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.ranf.html", "dispname": "numpy.random.ranf"}, {"name": "reference/random/generated/numpy.random.rayleigh", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.rayleigh.html", "dispname": "numpy.random.rayleigh"}, {"name": "reference/random/generated/numpy.random.sample", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.sample.html", "dispname": "numpy.random.sample"}, {"name": "reference/random/generated/numpy.random.seed", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.seed.html", "dispname": "numpy.random.seed"}, {"name": "reference/random/generated/numpy.random.set_state", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.set_state.html", "dispname": "numpy.random.set_state"}, {"name": "reference/random/generated/numpy.random.shuffle", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.shuffle.html", "dispname": "numpy.random.shuffle"}, {"name": "reference/random/generated/numpy.random.standard_cauchy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_cauchy.html", "dispname": "numpy.random.standard_cauchy"}, {"name": "reference/random/generated/numpy.random.standard_exponential", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_exponential.html", "dispname": "numpy.random.standard_exponential"}, {"name": "reference/random/generated/numpy.random.standard_gamma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_gamma.html", "dispname": "numpy.random.standard_gamma"}, {"name": "reference/random/generated/numpy.random.standard_normal", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_normal.html", "dispname": "numpy.random.standard_normal"}, {"name": "reference/random/generated/numpy.random.standard_t", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.standard_t.html", "dispname": "numpy.random.standard_t"}, {"name": "reference/random/generated/numpy.random.triangular", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.triangular.html", "dispname": "numpy.random.triangular"}, {"name": "reference/random/generated/numpy.random.uniform", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.uniform.html", "dispname": "numpy.random.uniform"}, {"name": "reference/random/generated/numpy.random.vonmises", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.vonmises.html", "dispname": "numpy.random.vonmises"}, {"name": "reference/random/generated/numpy.random.wald", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.wald.html", "dispname": "numpy.random.wald"}, {"name": "reference/random/generated/numpy.random.weibull", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.weibull.html", "dispname": "numpy.random.weibull"}, {"name": "reference/random/generated/numpy.random.zipf", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generated/numpy.random.zipf.html", "dispname": "numpy.random.zipf"}, {"name": "reference/random/generator", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/generator.html", "dispname": "Random Generator"}, {"name": "reference/random/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/index.html", "dispname": "Random sampling (numpy.random)"}, {"name": "reference/random/legacy", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/legacy.html", "dispname": "Legacy random generation"}, {"name": "reference/random/multithreading", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/multithreading.html", "dispname": "Multithreaded generation"}, {"name": "reference/random/new-or-different", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/new-or-different.html", "dispname": "What\u2019s new or different"}, {"name": "reference/random/parallel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/parallel.html", "dispname": "Parallel random number generation"}, {"name": "reference/random/performance", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/performance.html", "dispname": "Performance"}, {"name": "reference/random/upgrading-pcg64", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/random/upgrading-pcg64.html", "dispname": "Upgrading PCG64 with PCG64DXSM"}, {"name": "reference/routines", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.html", "dispname": "Routines and objects by topic"}, {"name": "reference/routines.array-creation", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.array-creation.html", "dispname": "Array creation routines"}, {"name": "reference/routines.array-manipulation", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.array-manipulation.html", "dispname": "Array manipulation routines"}, {"name": "reference/routines.bitwise", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.bitwise.html", "dispname": "Bit-wise operations"}, {"name": "reference/routines.char", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.char.html", "dispname": "Legacy fixed-width string functionality"}, {"name": "reference/routines.ctypeslib", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.ctypeslib.html", "dispname": "ctypes foreign function interface (numpy.ctypeslib)"}, {"name": "reference/routines.datetime", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.datetime.html", "dispname": "Datetime support functions"}, {"name": "reference/routines.dtype", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.dtype.html", "dispname": "Data type routines"}, {"name": "reference/routines.dtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.dtypes.html", "dispname": "Data type classes (numpy.dtypes)"}, {"name": "reference/routines.emath", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.emath.html", "dispname": "Mathematical functions with automatic domain"}, {"name": "reference/routines.err", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.err.html", "dispname": "Floating point error handling"}, {"name": "reference/routines.exceptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.exceptions.html", "dispname": "Exceptions and Warnings (numpy.exceptions)"}, {"name": "reference/routines.fft", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.fft.html", "dispname": "Discrete Fourier Transform (numpy.fft)"}, {"name": "reference/routines.functional", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.functional.html", "dispname": "Functional programming"}, {"name": "reference/routines.indexing", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.indexing.html", "dispname": "Indexing routines"}, {"name": "reference/routines.io", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.io.html", "dispname": "Input and output"}, {"name": "reference/routines.lib", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.lib.html", "dispname": "Lib module (numpy.lib)"}, {"name": "reference/routines.linalg", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.linalg.html", "dispname": "Linear algebra (numpy.linalg)"}, {"name": "reference/routines.logic", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.logic.html", "dispname": "Logic functions"}, {"name": "reference/routines.ma", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.ma.html", "dispname": "Masked array operations"}, {"name": "reference/routines.math", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.math.html", "dispname": "Mathematical functions"}, {"name": "reference/routines.matlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.matlib.html", "dispname": "Matrix library (numpy.matlib)"}, {"name": "reference/routines.other", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.other.html", "dispname": "Miscellaneous routines"}, {"name": "reference/routines.polynomials", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.html", "dispname": "Polynomials"}, {"name": "reference/routines.polynomials-package", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials-package.html", "dispname": "numpy.polynomial"}, {"name": "reference/routines.polynomials.chebyshev", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.chebyshev.html", "dispname": "Chebyshev Series (numpy.polynomial.chebyshev)"}, {"name": "reference/routines.polynomials.classes", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.classes.html", "dispname": "Using the convenience classes"}, {"name": "reference/routines.polynomials.hermite", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.hermite.html", "dispname": "Hermite Series, \u201cPhysicists\u201d (numpy.polynomial.hermite)"}, {"name": "reference/routines.polynomials.hermite_e", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.hermite_e.html", "dispname": "HermiteE Series, \u201cProbabilists\u201d (numpy.polynomial.hermite_e)"}, {"name": "reference/routines.polynomials.laguerre", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.laguerre.html", "dispname": "Laguerre Series (numpy.polynomial.laguerre)"}, {"name": "reference/routines.polynomials.legendre", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.legendre.html", "dispname": "Legendre Series (numpy.polynomial.legendre)"}, {"name": "reference/routines.polynomials.poly1d", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.poly1d.html", "dispname": "Poly1d"}, {"name": "reference/routines.polynomials.polynomial", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.polynomial.html", "dispname": "Power Series (numpy.polynomial.polynomial)"}, {"name": "reference/routines.polynomials.polyutils", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.polynomials.polyutils.html", "dispname": "Polyutils"}, {"name": "reference/routines.rec", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.rec.html", "dispname": "Record Arrays (numpy.rec)"}, {"name": "reference/routines.set", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.set.html", "dispname": "Set routines"}, {"name": "reference/routines.sort", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.sort.html", "dispname": "Sorting, searching, and counting"}, {"name": "reference/routines.statistics", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.statistics.html", "dispname": "Statistics"}, {"name": "reference/routines.strings", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.strings.html", "dispname": "String functionality"}, {"name": "reference/routines.testing", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.testing.html", "dispname": "Test support (numpy.testing)"}, {"name": "reference/routines.version", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.version.html", "dispname": "Version information"}, {"name": "reference/routines.window", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/routines.window.html", "dispname": "Window functions"}, {"name": "reference/security", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/security.html", "dispname": "NumPy security"}, {"name": "reference/simd/build-options", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/simd/build-options.html", "dispname": "CPU build options"}, {"name": "reference/simd/how-it-works", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/simd/how-it-works.html", "dispname": "How does the CPU dispatcher work?"}, {"name": "reference/simd/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/simd/index.html", "dispname": "CPU/SIMD optimizations"}, {"name": "reference/simd/simd-optimizations", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/simd/simd-optimizations.html", "dispname": ""}, {"name": "reference/swig", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/swig.html", "dispname": "NumPy and SWIG"}, {"name": "reference/swig.interface-file", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/swig.interface-file.html", "dispname": "numpy.i: a SWIG interface file for NumPy"}, {"name": "reference/swig.testing", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/swig.testing.html", "dispname": "Testing the numpy.i typemaps"}, {"name": "reference/testing", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/testing.html", "dispname": "Testing guidelines"}, {"name": "reference/thread_safety", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/thread_safety.html", "dispname": "Thread Safety"}, {"name": "reference/typing", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/typing.html", "dispname": "Typing (numpy.typing)"}, {"name": "reference/ufuncs", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/ufuncs.html", "dispname": "Universal functions (ufunc)"}, {"name": "release", "domain": "std", "role": "doc", "priority": "-1", "uri": "release.html", "dispname": "Release notes"}, {"name": "release/1.10.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.10.0-notes.html", "dispname": "NumPy 1.10.0 Release Notes"}, {"name": "release/1.10.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.10.1-notes.html", "dispname": "NumPy 1.10.1 Release Notes"}, {"name": "release/1.10.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.10.2-notes.html", "dispname": "NumPy 1.10.2 Release Notes"}, {"name": "release/1.10.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.10.3-notes.html", "dispname": "NumPy 1.10.3 Release Notes"}, {"name": "release/1.10.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.10.4-notes.html", "dispname": "NumPy 1.10.4 Release Notes"}, {"name": "release/1.11.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.11.0-notes.html", "dispname": "NumPy 1.11.0 Release Notes"}, {"name": "release/1.11.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.11.1-notes.html", "dispname": "NumPy 1.11.1 Release Notes"}, {"name": "release/1.11.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.11.2-notes.html", "dispname": "NumPy 1.11.2 Release Notes"}, {"name": "release/1.11.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.11.3-notes.html", "dispname": "NumPy 1.11.3 Release Notes"}, {"name": "release/1.12.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.12.0-notes.html", "dispname": "NumPy 1.12.0 Release Notes"}, {"name": "release/1.12.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.12.1-notes.html", "dispname": "NumPy 1.12.1 Release Notes"}, {"name": "release/1.13.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.13.0-notes.html", "dispname": "NumPy 1.13.0 Release Notes"}, {"name": "release/1.13.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.13.1-notes.html", "dispname": "NumPy 1.13.1 Release Notes"}, {"name": "release/1.13.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.13.2-notes.html", "dispname": "NumPy 1.13.2 Release Notes"}, {"name": "release/1.13.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.13.3-notes.html", "dispname": "NumPy 1.13.3 Release Notes"}, {"name": "release/1.14.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.0-notes.html", "dispname": "NumPy 1.14.0 Release Notes"}, {"name": "release/1.14.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.1-notes.html", "dispname": "NumPy 1.14.1 Release Notes"}, {"name": "release/1.14.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.2-notes.html", "dispname": "NumPy 1.14.2 Release Notes"}, {"name": "release/1.14.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.3-notes.html", "dispname": "NumPy 1.14.3 Release Notes"}, {"name": "release/1.14.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.4-notes.html", "dispname": "NumPy 1.14.4 Release Notes"}, {"name": "release/1.14.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.5-notes.html", "dispname": "NumPy 1.14.5 Release Notes"}, {"name": "release/1.14.6-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.14.6-notes.html", "dispname": "NumPy 1.14.6 Release Notes"}, {"name": "release/1.15.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.15.0-notes.html", "dispname": "NumPy 1.15.0 Release Notes"}, {"name": "release/1.15.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.15.1-notes.html", "dispname": "NumPy 1.15.1 Release Notes"}, {"name": "release/1.15.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.15.2-notes.html", "dispname": "NumPy 1.15.2 Release Notes"}, {"name": "release/1.15.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.15.3-notes.html", "dispname": "NumPy 1.15.3 Release Notes"}, {"name": "release/1.15.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.15.4-notes.html", "dispname": "NumPy 1.15.4 Release Notes"}, {"name": "release/1.16.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.0-notes.html", "dispname": "NumPy 1.16.0 Release Notes"}, {"name": "release/1.16.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.1-notes.html", "dispname": "NumPy 1.16.1 Release Notes"}, {"name": "release/1.16.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.2-notes.html", "dispname": "NumPy 1.16.2 Release Notes"}, {"name": "release/1.16.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.3-notes.html", "dispname": "NumPy 1.16.3 Release Notes"}, {"name": "release/1.16.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.4-notes.html", "dispname": "NumPy 1.16.4 Release Notes"}, {"name": "release/1.16.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.5-notes.html", "dispname": "NumPy 1.16.5 Release Notes"}, {"name": "release/1.16.6-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.16.6-notes.html", "dispname": "NumPy 1.16.6 Release Notes"}, {"name": "release/1.17.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.17.0-notes.html", "dispname": "NumPy 1.17.0 Release Notes"}, {"name": "release/1.17.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.17.1-notes.html", "dispname": "NumPy 1.17.1 Release Notes"}, {"name": "release/1.17.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.17.2-notes.html", "dispname": "NumPy 1.17.2 Release Notes"}, {"name": "release/1.17.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.17.3-notes.html", "dispname": "NumPy 1.17.3 Release Notes"}, {"name": "release/1.17.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.17.4-notes.html", "dispname": "NumPy 1.17.4 Release Notes"}, {"name": "release/1.17.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.17.5-notes.html", "dispname": "NumPy 1.17.5 Release Notes"}, {"name": "release/1.18.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.18.0-notes.html", "dispname": "NumPy 1.18.0 Release Notes"}, {"name": "release/1.18.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.18.1-notes.html", "dispname": "NumPy 1.18.1 Release Notes"}, {"name": "release/1.18.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.18.2-notes.html", "dispname": "NumPy 1.18.2 Release Notes"}, {"name": "release/1.18.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.18.3-notes.html", "dispname": "NumPy 1.18.3 Release Notes"}, {"name": "release/1.18.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.18.4-notes.html", "dispname": "NumPy 1.18.4 Release Notes"}, {"name": "release/1.18.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.18.5-notes.html", "dispname": "NumPy 1.18.5 Release Notes"}, {"name": "release/1.19.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.19.0-notes.html", "dispname": "NumPy 1.19.0 Release Notes"}, {"name": "release/1.19.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.19.1-notes.html", "dispname": "NumPy 1.19.1 Release Notes"}, {"name": "release/1.19.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.19.2-notes.html", "dispname": "NumPy 1.19.2 Release Notes"}, {"name": "release/1.19.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.19.3-notes.html", "dispname": "NumPy 1.19.3 Release Notes"}, {"name": "release/1.19.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.19.4-notes.html", "dispname": "NumPy 1.19.4 Release Notes"}, {"name": "release/1.19.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.19.5-notes.html", "dispname": "NumPy 1.19.5 Release Notes"}, {"name": "release/1.20.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.20.0-notes.html", "dispname": "NumPy 1.20.0 Release Notes"}, {"name": "release/1.20.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.20.1-notes.html", "dispname": "NumPy 1.20.1 Release Notes"}, {"name": "release/1.20.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.20.2-notes.html", "dispname": "NumPy 1.20.2 Release Notes"}, {"name": "release/1.20.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.20.3-notes.html", "dispname": "NumPy 1.20.3 Release Notes"}, {"name": "release/1.21.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.0-notes.html", "dispname": "NumPy 1.21.0 Release Notes"}, {"name": "release/1.21.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.1-notes.html", "dispname": "NumPy 1.21.1 Release Notes"}, {"name": "release/1.21.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.2-notes.html", "dispname": "NumPy 1.21.2 Release Notes"}, {"name": "release/1.21.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.3-notes.html", "dispname": "NumPy 1.21.3 Release Notes"}, {"name": "release/1.21.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.4-notes.html", "dispname": "NumPy 1.21.4 Release Notes"}, {"name": "release/1.21.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.5-notes.html", "dispname": "NumPy 1.21.5 Release Notes"}, {"name": "release/1.21.6-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.21.6-notes.html", "dispname": "NumPy 1.21.6 Release Notes"}, {"name": "release/1.22.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.22.0-notes.html", "dispname": "NumPy 1.22.0 Release Notes"}, {"name": "release/1.22.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.22.1-notes.html", "dispname": "NumPy 1.22.1 Release Notes"}, {"name": "release/1.22.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.22.2-notes.html", "dispname": "NumPy 1.22.2 Release Notes"}, {"name": "release/1.22.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.22.3-notes.html", "dispname": "NumPy 1.22.3 Release Notes"}, {"name": "release/1.22.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.22.4-notes.html", "dispname": "NumPy 1.22.4 Release Notes"}, {"name": "release/1.23.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.23.0-notes.html", "dispname": "NumPy 1.23.0 Release Notes"}, {"name": "release/1.23.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.23.1-notes.html", "dispname": "NumPy 1.23.1 Release Notes"}, {"name": "release/1.23.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.23.2-notes.html", "dispname": "NumPy 1.23.2 Release Notes"}, {"name": "release/1.23.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.23.3-notes.html", "dispname": "NumPy 1.23.3 Release Notes"}, {"name": "release/1.23.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.23.4-notes.html", "dispname": "NumPy 1.23.4 Release Notes"}, {"name": "release/1.23.5-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.23.5-notes.html", "dispname": "NumPy 1.23.5 Release Notes"}, {"name": "release/1.24.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.24.0-notes.html", "dispname": "NumPy 1.24 Release Notes"}, {"name": "release/1.24.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.24.1-notes.html", "dispname": "NumPy 1.24.1 Release Notes"}, {"name": "release/1.24.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.24.2-notes.html", "dispname": "NumPy 1.24.2 Release Notes"}, {"name": "release/1.24.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.24.3-notes.html", "dispname": "NumPy 1.24.3 Release Notes"}, {"name": "release/1.24.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.24.4-notes.html", "dispname": "NumPy 1.24.4 Release Notes"}, {"name": "release/1.25.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.25.0-notes.html", "dispname": "NumPy 1.25.0 Release Notes"}, {"name": "release/1.25.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.25.1-notes.html", "dispname": "NumPy 1.25.1 Release Notes"}, {"name": "release/1.25.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.25.2-notes.html", "dispname": "NumPy 1.25.2 Release Notes"}, {"name": "release/1.26.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.26.0-notes.html", "dispname": "NumPy 1.26.0 Release Notes"}, {"name": "release/1.26.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.26.1-notes.html", "dispname": "NumPy 1.26.1 Release Notes"}, {"name": "release/1.26.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.26.2-notes.html", "dispname": "NumPy 1.26.2 Release Notes"}, {"name": "release/1.26.3-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.26.3-notes.html", "dispname": "NumPy 1.26.3 Release Notes"}, {"name": "release/1.26.4-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.26.4-notes.html", "dispname": "NumPy 1.26.4 Release Notes"}, {"name": "release/1.3.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.3.0-notes.html", "dispname": "NumPy 1.3.0 Release Notes"}, {"name": "release/1.4.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.4.0-notes.html", "dispname": "NumPy 1.4.0 Release Notes"}, {"name": "release/1.5.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.5.0-notes.html", "dispname": "NumPy 1.5.0 Release Notes"}, {"name": "release/1.6.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.6.0-notes.html", "dispname": "NumPy 1.6.0 Release Notes"}, {"name": "release/1.6.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.6.1-notes.html", "dispname": "NumPy 1.6.1 Release Notes"}, {"name": "release/1.6.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.6.2-notes.html", "dispname": "NumPy 1.6.2 Release Notes"}, {"name": "release/1.7.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.7.0-notes.html", "dispname": "NumPy 1.7.0 Release Notes"}, {"name": "release/1.7.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.7.1-notes.html", "dispname": "NumPy 1.7.1 Release Notes"}, {"name": "release/1.7.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.7.2-notes.html", "dispname": "NumPy 1.7.2 Release Notes"}, {"name": "release/1.8.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.8.0-notes.html", "dispname": "NumPy 1.8.0 Release Notes"}, {"name": "release/1.8.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.8.1-notes.html", "dispname": "NumPy 1.8.1 Release Notes"}, {"name": "release/1.8.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.8.2-notes.html", "dispname": "NumPy 1.8.2 Release Notes"}, {"name": "release/1.9.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.9.0-notes.html", "dispname": "NumPy 1.9.0 Release Notes"}, {"name": "release/1.9.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.9.1-notes.html", "dispname": "NumPy 1.9.1 Release Notes"}, {"name": "release/1.9.2-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/1.9.2-notes.html", "dispname": "NumPy 1.9.2 Release Notes"}, {"name": "release/2.0.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/2.0.0-notes.html", "dispname": "NumPy 2.0.0 Release Notes"}, {"name": "release/2.0.1-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/2.0.1-notes.html", "dispname": "NumPy 2.0.1 Release Notes"}, {"name": "release/2.1.0-notes", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/2.1.0-notes.html", "dispname": "NumPy 2.1.0 Release Notes"}, {"name": "release/notes-towncrier", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/notes-towncrier.html", "dispname": ""}, {"name": "release/template", "domain": "std", "role": "doc", "priority": "-1", "uri": "release/template.html", "dispname": "NumPy 2.xx.x Release Notes"}, {"name": "reviewer-guidelines", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/reviewer_guidelines.html#$", "dispname": "Reviewer guidelines"}, {"name": "rewriting-commit-history", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Rewriting commit history"}, {"name": "rf09e3aaadee4-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.gamma.html#$", "dispname": "-"}, {"name": "rf09e3aaadee4-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.gamma.html#$", "dispname": "-"}, {"name": "rf09f5b2ade58-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.polynomial.hermite_e.hermefit.html#$", "dispname": "-"}, {"name": "rf0d57dd5badd-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.ma.outerproduct.html#$", "dispname": "-"}, {"name": "rf0f3f75f485b-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.set_state.html#$", "dispname": "-"}, {"name": "rf4969234dab6-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.Generator.beta.html#$", "dispname": "-"}, {"name": "rf578abb8fba2-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.normal.html#$", "dispname": "-"}, {"name": "rf578abb8fba2-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.normal.html#$", "dispname": "-"}, {"name": "rf5e3e797e6cd-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.atanh.html#$", "dispname": "-"}, {"name": "rf5e3e797e6cd-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.atanh.html#$", "dispname": "-"}, {"name": "rf6950a812c0f-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arcsinh.html#$", "dispname": "-"}, {"name": "rf6950a812c0f-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.arcsinh.html#$", "dispname": "-"}, {"name": "rf7c16f9eb786-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.laplace.html#$", "dispname": "-"}, {"name": "rf7c16f9eb786-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.laplace.html#$", "dispname": "-"}, {"name": "rf7c16f9eb786-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.laplace.html#$", "dispname": "-"}, {"name": "rf7c16f9eb786-4", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.laplace.html#$", "dispname": "-"}, {"name": "rfa081449b327-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.lognormal.html#$", "dispname": "-"}, {"name": "rfa081449b327-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/generated/numpy.random.lognormal.html#$", "dispname": "-"}, {"name": "rfb1dc64dd6a5-ct", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.fft.html#$", "dispname": "-"}, {"name": "rfb1dc64dd6a5-nr", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.fft.html#$", "dispname": "-"}, {"name": "rfd38a370b188-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.i0.html#$", "dispname": "-"}, {"name": "rfd38a370b188-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.i0.html#$", "dispname": "-"}, {"name": "rfd38a370b188-3", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.i0.html#$", "dispname": "-"}, {"name": "rfecb7f1c5ef1-1", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.log1p.html#$", "dispname": "-"}, {"name": "rfecb7f1c5ef1-2", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/generated/numpy.log1p.html#$", "dispname": "-"}, {"name": "routines", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.html#$", "dispname": "Routines and objects by topic"}, {"name": "routines.array-creation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.array-creation.html#routines-array-creation", "dispname": "Array creation routines"}, {"name": "routines.array-creation.char", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.array-creation.html#routines-array-creation-char", "dispname": "Creating character arrays (numpy.char)"}, {"name": "routines.array-creation.rec", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.array-creation.html#routines-array-creation-rec", "dispname": "Creating record arrays"}, {"name": "routines.char", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.char.html#routines-char", "dispname": "Legacy fixed-width string functionality"}, {"name": "routines.ctypeslib", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.ctypeslib.html#routines-ctypeslib", "dispname": "ctypes foreign function interface (numpy.ctypeslib)"}, {"name": "routines.datetime", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.datetime.html#routines-datetime", "dispname": "Datetime support functions"}, {"name": "routines.dtype", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.dtype.html#routines-dtype", "dispname": "Data type routines"}, {"name": "routines.dtypes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.dtypes.html#routines-dtypes", "dispname": "Data type classes (numpy.dtypes)"}, {"name": "routines.emath", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.emath.html#routines-emath", "dispname": "Mathematical functions with automatic domain"}, {"name": "routines.exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.exceptions.html#routines-exceptions", "dispname": "Exceptions and Warnings (numpy.exceptions)"}, {"name": "routines.fft", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.fft.html#routines-fft", "dispname": "Discrete Fourier Transform (numpy.fft)"}, {"name": "routines.indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.indexing.html#routines-indexing", "dispname": "Indexing routines"}, {"name": "routines.io", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.io.html#routines-io", "dispname": "Input and output"}, {"name": "routines.lib", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.lib.html#routines-lib", "dispname": "Lib module (numpy.lib)"}, {"name": "routines.linalg", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.linalg.html#routines-linalg", "dispname": "Linear algebra (numpy.linalg)"}, {"name": "routines.linalg-broadcasting", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.linalg.html#routines-linalg-broadcasting", "dispname": "Linear algebra on several matrices at once"}, {"name": "routines.ma", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.ma.html#routines-ma", "dispname": "Masked array operations"}, {"name": "routines.matlib", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.matlib.html#routines-matlib", "dispname": "Matrix library (numpy.matlib)"}, {"name": "routines.polynomial", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.polynomials.html#routines-polynomial", "dispname": "Polynomials"}, {"name": "routines.rec", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.rec.html#routines-rec", "dispname": "Record Arrays (numpy.rec)"}, {"name": "routines.strings", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.strings.html#routines-strings", "dispname": "String functionality"}, {"name": "routines.testing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.testing.html#routines-testing", "dispname": "Test support (numpy.testing)"}, {"name": "routines.version", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/routines.version.html#routines-version", "dispname": "Version information"}, {"name": "row-major", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "runtime-simd-dispatch", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simd/build-options.html#$", "dispname": "Runtime dispatch"}, {"name": "saved-replies", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/reviewer_guidelines.html#$", "dispname": "Standard replies for reviewing"}, {"name": "scalar", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "search", "domain": "std", "role": "label", "priority": "-1", "uri": "search.html", "dispname": "Search Page"}, {"name": "sec:array_iterator", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.beyond-basics.html#sec-array-iterator", "dispname": "Basic iteration"}, {"name": "sec:creating-a-new", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html#sec-creating-a-new", "dispname": "Creating a new universal function"}, {"name": "sec:non-numpy-example", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html#sec-non-numpy-example", "dispname": "Example non-ufunc extension"}, {"name": "sec:numpy-many-arg", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html#sec-numpy-many-arg", "dispname": "Example NumPy ufunc with multiple arguments/return values"}, {"name": "sec:numpy-many-loop", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html#sec-numpy-many-loop", "dispname": "Example NumPy ufunc with multiple dtypes"}, {"name": "sec:numpy-one-loop", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html#sec-numpy-one-loop", "dispname": "Example NumPy ufunc for one dtype"}, {"name": "sec:numpy-struct-dtype", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html#sec-numpy-struct-dtype", "dispname": "Example NumPy ufunc with structured array dtype arguments"}, {"name": "seeding_and_entropy", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/bit_generators/index.html#seeding-and-entropy", "dispname": "Seeding and entropy"}, {"name": "seedsequence-spawn", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/parallel.html#$", "dispname": "SeedSequence spawning"}, {"name": "sequence-of-seeds", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/parallel.html#$", "dispname": "Sequence of integer seeds"}, {"name": "shape", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "shortcomings", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.datetime.html#$", "dispname": "Datetime64 shortcomings"}, {"name": "single-element-indexing", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Single element indexing"}, {"name": "sized-aliases", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.scalars.html#$", "dispname": "Sized aliases"}, {"name": "slicing-and-striding", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.indexing.html#$", "dispname": "Slicing and striding"}, {"name": "special-attributes-and-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.classes.html#$", "dispname": "Special attributes and methods"}, {"name": "specific-array-subtyping", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.beyond-basics.html#$", "dispname": "Specific features of ndarray sub-typing"}, {"name": "stride", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "string-dtype-note", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/arrays.dtypes.html#$", "dispname": "-"}, {"name": "stringdtype", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.strings.html#$", "dispname": "Variable-width strings"}, {"name": "structured array", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-structured-array", "dispname": "-"}, {"name": "structured data type", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-structured-data-type", "dispname": "-"}, {"name": "structured_arrays", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.rec.html#structured-arrays", "dispname": "Structured arrays"}, {"name": "structured_dtype_comparison_and_promotion", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.rec.html#structured-dtype-comparison-and-promotion", "dispname": "Structure comparison and promotion"}, {"name": "stylistic-guidelines", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/index.html#$", "dispname": "Stylistic guidelines"}, {"name": "subarray", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "subarray data type", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-subarray-data-type", "dispname": "-"}, {"name": "system-level", "domain": "std", "role": "label", "priority": "-1", "uri": "building/index.html#$", "dispname": "System-level dependencies"}, {"name": "table-f2py-winsup-mat", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/windows/index.html#$", "dispname": "Support matrix, exe implies a Windows installer"}, {"name": "templating", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/distutils_guide.html#$", "dispname": "Conversion of .src files using templates"}, {"name": "testing-builds", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_environment.html#$", "dispname": "Testing builds"}, {"name": "testing-guidelines", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/testing.html#$", "dispname": "Testing guidelines"}, {"name": "testing-prereleases", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/depending_on_numpy.html#$", "dispname": "Testing against the NumPy main branch or pre-releases"}, {"name": "the-spin-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "building/index.html#$", "dispname": "Building from source for NumPy development"}, {"name": "thread_safety", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/thread_safety.html#thread-safety", "dispname": "Thread Safety"}, {"name": "title", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "titles", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.rec.html#$", "dispname": "Field titles"}, {"name": "tutorials_howtos_explanations", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#tutorials-howtos-explanations", "dispname": "Documentation framework"}, {"name": "type", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "type-declarations", "domain": "std", "role": "label", "priority": "-1", "uri": "f2py/signature-file.html#$", "dispname": "Type declarations"}, {"name": "typing", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/typing.html#$", "dispname": "Typing (numpy.typing)"}, {"name": "ufunc", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "ufuncs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/ufuncs.html#$", "dispname": "Universal functions (ufunc)"}, {"name": "ufuncs-basics", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.ufuncs.html#$", "dispname": "Universal functions (ufunc) basics"}, {"name": "ufuncs-internals", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/internals.code-explanations.html#$", "dispname": "Universal functions"}, {"name": "ufuncs-output-type", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.ufuncs.html#$", "dispname": "Output type determination"}, {"name": "ufuncs.broadcasting", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.ufuncs.html#ufuncs-broadcasting", "dispname": "Broadcasting"}, {"name": "ufuncs.casting", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.ufuncs.html#ufuncs-casting", "dispname": "Type casting rules"}, {"name": "ufuncs.kwargs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/ufuncs.html#ufuncs-kwargs", "dispname": "Optional keyword arguments"}, {"name": "ufuncs.methods", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/ufuncs.html#ufuncs-methods", "dispname": "Methods"}, {"name": "ufuncs.overrides", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.ufuncs.html#ufuncs-overrides", "dispname": "Overriding ufunc behavior"}, {"name": "underthehood", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/underthehood.html#$", "dispname": "Under-the-hood documentation for developers"}, {"name": "upgrading-pcg64", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/upgrading-pcg64.html#$", "dispname": "Upgrading PCG64 with PCG64DXSM"}, {"name": "upgrading-pcg64-details", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/random/upgrading-pcg64.html#$", "dispname": "Technical details"}, {"name": "use-of-internal-buffers", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.ufuncs.html#$", "dispname": "Use of internal buffers"}, {"name": "user", "domain": "std", "role": "label", "priority": "-1", "uri": "user/index.html#$", "dispname": "NumPy user guide"}, {"name": "user.user-defined-data-types", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.beyond-basics.html#user-user-defined-data-types", "dispname": "User-defined data-types"}, {"name": "user/absolute_beginners", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/absolute_beginners.html", "dispname": "NumPy: the absolute basics for beginners"}, {"name": "user/basics", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.html", "dispname": "NumPy fundamentals"}, {"name": "user/basics.broadcasting", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.broadcasting.html", "dispname": "Broadcasting"}, {"name": "user/basics.copies", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.copies.html", "dispname": "Copies and views"}, {"name": "user/basics.creation", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.creation.html", "dispname": "Array creation"}, {"name": "user/basics.dispatch", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.dispatch.html", "dispname": "Writing custom array containers"}, {"name": "user/basics.indexing", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.indexing.html", "dispname": "Indexing on ndarrays"}, {"name": "user/basics.interoperability", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.interoperability.html", "dispname": "Interoperability with NumPy"}, {"name": "user/basics.io", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.io.html", "dispname": "I/O with NumPy"}, {"name": "user/basics.io.genfromtxt", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.io.genfromtxt.html", "dispname": "Importing data with genfromtxt"}, {"name": "user/basics.rec", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.rec.html", "dispname": "Structured arrays"}, {"name": "user/basics.strings", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.strings.html", "dispname": "Working with Arrays of Strings And Bytes"}, {"name": "user/basics.subclassing", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.subclassing.html", "dispname": "Subclassing ndarray"}, {"name": "user/basics.types", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.types.html", "dispname": "Data types"}, {"name": "user/basics.ufuncs", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/basics.ufuncs.html", "dispname": "Universal functions (ufunc) basics"}, {"name": "user/byteswapping", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/byteswapping.html", "dispname": "Byte-swapping"}, {"name": "user/c-info", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/c-info.html", "dispname": "Using NumPy C-API"}, {"name": "user/c-info.beyond-basics", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/c-info.beyond-basics.html", "dispname": "Beyond the basics"}, {"name": "user/c-info.how-to-extend", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/c-info.how-to-extend.html", "dispname": "How to extend NumPy"}, {"name": "user/c-info.python-as-glue", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/c-info.python-as-glue.html", "dispname": "Using Python as glue"}, {"name": "user/c-info.ufunc-tutorial", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/c-info.ufunc-tutorial.html", "dispname": "Writing your own ufunc"}, {"name": "user/how-to-how-to", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/how-to-how-to.html", "dispname": "How to write a NumPy how-to"}, {"name": "user/how-to-index", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/how-to-index.html", "dispname": "How to index ndarrays"}, {"name": "user/how-to-io", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/how-to-io.html", "dispname": "Reading and writing files"}, {"name": "user/how-to-partition", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/how-to-partition.html", "dispname": "How to create arrays with regularly-spaced values"}, {"name": "user/how-to-verify-bug", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/how-to-verify-bug.html", "dispname": "Verifying bugs and bug fixes in NumPy"}, {"name": "user/howtos_index", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/howtos_index.html", "dispname": "NumPy how-tos"}, {"name": "user/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/index.html", "dispname": "NumPy user guide"}, {"name": "user/install", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/install.html", "dispname": "Installing NumPy"}, {"name": "user/misc", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/misc.html", "dispname": "Miscellaneous"}, {"name": "user/numpy-for-matlab-users", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/numpy-for-matlab-users.html", "dispname": "NumPy for MATLAB users"}, {"name": "user/quickstart", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/quickstart.html", "dispname": "NumPy quickstart"}, {"name": "user/theory.broadcasting", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/theory.broadcasting.html", "dispname": "Array broadcasting in Numpy"}, {"name": "user/troubleshooting-importerror", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/troubleshooting-importerror.html", "dispname": "Troubleshooting"}, {"name": "user/whatisnumpy", "domain": "std", "role": "doc", "priority": "-1", "uri": "user/whatisnumpy.html", "dispname": "What is NumPy?"}, {"name": "userdoc_guide", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/howto-docs.html#userdoc-guide", "dispname": "User documentation"}, {"name": "vectorization", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "view", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.copies.html#$", "dispname": "View"}, {"name": "view", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "view-casting", "domain": "std", "role": "label", "priority": "-1", "uri": "user/basics.subclassing.html#$", "dispname": "View casting"}, {"name": "whatis-vectorization", "domain": "std", "role": "label", "priority": "-1", "uri": "user/whatisnumpy.html#$", "dispname": "Why is NumPy fast?"}, {"name": "whatisnumpy", "domain": "std", "role": "label", "priority": "-1", "uri": "user/whatisnumpy.html#$", "dispname": "What is NumPy?"}, {"name": "workflow_mailing_list", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#workflow-mailing-list", "dispname": "Get the mailing list\u2019s opinion"}, {"name": "workflow_pr_timeline", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#workflow-pr-timeline", "dispname": "Getting your PR reviewed"}, {"name": "writing-an-extension", "domain": "std", "role": "label", "priority": "-1", "uri": "user/c-info.how-to-extend.html#$", "dispname": "Writing an extension module"}, {"name": "writing-the-commit-message", "domain": "std", "role": "label", "priority": "-1", "uri": "dev/development_workflow.html#$", "dispname": "Writing the commit message"}]} \ No newline at end of file diff --git a/_inv/python_objects.json b/_inv/python_objects.json new file mode 100644 index 0000000..acea5dc --- /dev/null +++ b/_inv/python_objects.json @@ -0,0 +1 @@ +{"project": "Python", "version": "3.10", "count": 15292, "items": [{"name": "CO_FUTURE_DIVISION", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PY_MAJOR_VERSION", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/apiabiversion.html#c.$", "dispname": "-"}, {"name": "PY_MICRO_VERSION", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/apiabiversion.html#c.$", "dispname": "-"}, {"name": "PY_MINOR_VERSION", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/apiabiversion.html#c.$", "dispname": "-"}, {"name": "PY_RELEASE_LEVEL", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/apiabiversion.html#c.$", "dispname": "-"}, {"name": "PY_RELEASE_SERIAL", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/apiabiversion.html#c.$", "dispname": "-"}, {"name": "PY_VECTORCALL_ARGUMENTS_OFFSET", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PY_VERSION_HEX", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/apiabiversion.html#c.$", "dispname": "-"}, {"name": "PyAIter_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iter.html#c.$", "dispname": "-"}, {"name": "PyAIter_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iter.html#c.PyAIter_Check", "dispname": "-"}, {"name": "PyASCIIObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyAnySet_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PyAnySet_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PyAnySet_Check", "dispname": "-"}, {"name": "PyAnySet_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PyAnySet_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PyAnySet_CheckExact", "dispname": "-"}, {"name": "PyArg_Parse", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyArg_Parse.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_Parse", "dispname": "-"}, {"name": "PyArg_Parse.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_Parse", "dispname": "-"}, {"name": "PyArg_ParseTuple", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyArg_ParseTuple.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_ParseTuple", "dispname": "-"}, {"name": "PyArg_ParseTuple.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_ParseTuple", "dispname": "-"}, {"name": "PyArg_ParseTupleAndKeywords", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyArg_ParseTupleAndKeywords.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_ParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_ParseTupleAndKeywords.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_ParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_ParseTupleAndKeywords.keywords", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_ParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_ParseTupleAndKeywords.kw", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_ParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_UnpackTuple", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyArg_UnpackTuple.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_UnpackTuple", "dispname": "-"}, {"name": "PyArg_UnpackTuple.max", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_UnpackTuple", "dispname": "-"}, {"name": "PyArg_UnpackTuple.min", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_UnpackTuple", "dispname": "-"}, {"name": "PyArg_UnpackTuple.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_UnpackTuple", "dispname": "-"}, {"name": "PyArg_VaParse", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyArg_VaParse.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParse", "dispname": "-"}, {"name": "PyArg_VaParse.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParse", "dispname": "-"}, {"name": "PyArg_VaParse.vargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParse", "dispname": "-"}, {"name": "PyArg_VaParseTupleAndKeywords", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyArg_VaParseTupleAndKeywords.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_VaParseTupleAndKeywords.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_VaParseTupleAndKeywords.keywords", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_VaParseTupleAndKeywords.kw", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_VaParseTupleAndKeywords.vargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.PyArg_VaParseTupleAndKeywords", "dispname": "-"}, {"name": "PyArg_ValidateKeywordArguments", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "PyAsyncMethods", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyAsyncMethods.am_aiter", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyAsyncMethods.am_anext", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyAsyncMethods.am_await", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyAsyncMethods.am_send", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyBUF_ANY_CONTIGUOUS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_CONTIG", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_CONTIG_RO", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_C_CONTIGUOUS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_FORMAT", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_FULL", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_FULL_RO", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_F_CONTIGUOUS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_INDIRECT", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_ND", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_RECORDS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_RECORDS_RO", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_SIMPLE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_STRIDED", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_STRIDED_RO", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_STRIDES", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBUF_WRITABLE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBool_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bool.html#c.$", "dispname": "-"}, {"name": "PyBool_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bool.html#c.PyBool_Check", "dispname": "-"}, {"name": "PyBool_FromLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bool.html#c.$", "dispname": "-"}, {"name": "PyBool_FromLong.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bool.html#c.PyBool_FromLong", "dispname": "-"}, {"name": "PyBufferProcs", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyBufferProcs.bf_getbuffer", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyBufferProcs.bf_releasebuffer", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyBuffer_FillContiguousStrides", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_FillContiguousStrides.itemsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillContiguousStrides", "dispname": "-"}, {"name": "PyBuffer_FillContiguousStrides.ndims", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillContiguousStrides", "dispname": "-"}, {"name": "PyBuffer_FillContiguousStrides.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillContiguousStrides", "dispname": "-"}, {"name": "PyBuffer_FillContiguousStrides.shape", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillContiguousStrides", "dispname": "-"}, {"name": "PyBuffer_FillContiguousStrides.strides", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillContiguousStrides", "dispname": "-"}, {"name": "PyBuffer_FillInfo", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_FillInfo.buf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillInfo", "dispname": "-"}, {"name": "PyBuffer_FillInfo.exporter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillInfo", "dispname": "-"}, {"name": "PyBuffer_FillInfo.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillInfo", "dispname": "-"}, {"name": "PyBuffer_FillInfo.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillInfo", "dispname": "-"}, {"name": "PyBuffer_FillInfo.readonly", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillInfo", "dispname": "-"}, {"name": "PyBuffer_FillInfo.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FillInfo", "dispname": "-"}, {"name": "PyBuffer_FromContiguous", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_FromContiguous.buf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FromContiguous", "dispname": "-"}, {"name": "PyBuffer_FromContiguous.fort", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FromContiguous", "dispname": "-"}, {"name": "PyBuffer_FromContiguous.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FromContiguous", "dispname": "-"}, {"name": "PyBuffer_FromContiguous.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_FromContiguous", "dispname": "-"}, {"name": "PyBuffer_GetPointer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_GetPointer.indices", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_GetPointer", "dispname": "-"}, {"name": "PyBuffer_GetPointer.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_GetPointer", "dispname": "-"}, {"name": "PyBuffer_IsContiguous", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_IsContiguous.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_IsContiguous", "dispname": "-"}, {"name": "PyBuffer_IsContiguous.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_IsContiguous", "dispname": "-"}, {"name": "PyBuffer_Release", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_Release.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_Release", "dispname": "-"}, {"name": "PyBuffer_SizeFromFormat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_SizeFromFormat.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_SizeFromFormat", "dispname": "-"}, {"name": "PyBuffer_ToContiguous", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyBuffer_ToContiguous.buf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_ToContiguous", "dispname": "-"}, {"name": "PyBuffer_ToContiguous.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_ToContiguous", "dispname": "-"}, {"name": "PyBuffer_ToContiguous.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_ToContiguous", "dispname": "-"}, {"name": "PyBuffer_ToContiguous.src", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyBuffer_ToContiguous", "dispname": "-"}, {"name": "PyByteArrayObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_AS_STRING", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_AS_STRING.bytearray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_AS_STRING", "dispname": "-"}, {"name": "PyByteArray_AsString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_AsString.bytearray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_AsString", "dispname": "-"}, {"name": "PyByteArray_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_Check", "dispname": "-"}, {"name": "PyByteArray_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_CheckExact", "dispname": "-"}, {"name": "PyByteArray_Concat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_Concat.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_Concat", "dispname": "-"}, {"name": "PyByteArray_Concat.b", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_Concat", "dispname": "-"}, {"name": "PyByteArray_FromObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_FromObject.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_FromObject", "dispname": "-"}, {"name": "PyByteArray_FromStringAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_FromStringAndSize.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_FromStringAndSize", "dispname": "-"}, {"name": "PyByteArray_FromStringAndSize.string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_FromStringAndSize", "dispname": "-"}, {"name": "PyByteArray_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_GET_SIZE.bytearray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_GET_SIZE", "dispname": "-"}, {"name": "PyByteArray_Resize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_Resize.bytearray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_Resize", "dispname": "-"}, {"name": "PyByteArray_Resize.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_Resize", "dispname": "-"}, {"name": "PyByteArray_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyByteArray_Size.bytearray", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytearray.html#c.PyByteArray_Size", "dispname": "-"}, {"name": "PyByteArray_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/bytearray.html#c.$", "dispname": "-"}, {"name": "PyBytesObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_AS_STRING", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_AS_STRING.string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_AS_STRING", "dispname": "-"}, {"name": "PyBytes_AsString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_AsString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_AsString", "dispname": "-"}, {"name": "PyBytes_AsStringAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_AsStringAndSize.buffer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_AsStringAndSize", "dispname": "-"}, {"name": "PyBytes_AsStringAndSize.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_AsStringAndSize", "dispname": "-"}, {"name": "PyBytes_AsStringAndSize.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_AsStringAndSize", "dispname": "-"}, {"name": "PyBytes_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_Check", "dispname": "-"}, {"name": "PyBytes_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_CheckExact", "dispname": "-"}, {"name": "PyBytes_Concat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_Concat.bytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_Concat", "dispname": "-"}, {"name": "PyBytes_Concat.newpart", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_Concat", "dispname": "-"}, {"name": "PyBytes_ConcatAndDel", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_ConcatAndDel.bytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_ConcatAndDel", "dispname": "-"}, {"name": "PyBytes_ConcatAndDel.newpart", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_ConcatAndDel", "dispname": "-"}, {"name": "PyBytes_FromFormat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_FromFormat.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromFormat", "dispname": "-"}, {"name": "PyBytes_FromFormatV", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_FromFormatV.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromFormatV", "dispname": "-"}, {"name": "PyBytes_FromFormatV.vargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromFormatV", "dispname": "-"}, {"name": "PyBytes_FromObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_FromObject.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromObject", "dispname": "-"}, {"name": "PyBytes_FromString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_FromString.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromString", "dispname": "-"}, {"name": "PyBytes_FromStringAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_FromStringAndSize.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromStringAndSize", "dispname": "-"}, {"name": "PyBytes_FromStringAndSize.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_FromStringAndSize", "dispname": "-"}, {"name": "PyBytes_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_GET_SIZE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_GET_SIZE", "dispname": "-"}, {"name": "PyBytes_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyBytes_Size.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c.PyBytes_Size", "dispname": "-"}, {"name": "PyBytes_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "PyCFunction", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyCFunctionWithKeywords", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyCMethod", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyCallIter_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iterator.html#c.$", "dispname": "-"}, {"name": "PyCallIter_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iterator.html#c.$", "dispname": "-"}, {"name": "PyCallIter_New.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iterator.html#c.PyCallIter_New", "dispname": "-"}, {"name": "PyCallIter_New.sentinel", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iterator.html#c.PyCallIter_New", "dispname": "-"}, {"name": "PyCallIter_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/iterator.html#c.$", "dispname": "-"}, {"name": "PyCallable_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyCallable_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyCallable_Check", "dispname": "-"}, {"name": "PyCapsule", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_CheckExact", "dispname": "-"}, {"name": "PyCapsule_Destructor", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_GetContext", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_GetContext.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_GetContext", "dispname": "-"}, {"name": "PyCapsule_GetDestructor", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_GetDestructor.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_GetDestructor", "dispname": "-"}, {"name": "PyCapsule_GetName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_GetName.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_GetName", "dispname": "-"}, {"name": "PyCapsule_GetPointer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_GetPointer.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_GetPointer", "dispname": "-"}, {"name": "PyCapsule_GetPointer.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_GetPointer", "dispname": "-"}, {"name": "PyCapsule_Import", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_Import.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_Import", "dispname": "-"}, {"name": "PyCapsule_Import.no_block", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_Import", "dispname": "-"}, {"name": "PyCapsule_IsValid", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_IsValid.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_IsValid", "dispname": "-"}, {"name": "PyCapsule_IsValid.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_IsValid", "dispname": "-"}, {"name": "PyCapsule_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_New.destructor", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_New", "dispname": "-"}, {"name": "PyCapsule_New.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_New", "dispname": "-"}, {"name": "PyCapsule_New.pointer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_New", "dispname": "-"}, {"name": "PyCapsule_SetContext", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_SetContext.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetContext", "dispname": "-"}, {"name": "PyCapsule_SetContext.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetContext", "dispname": "-"}, {"name": "PyCapsule_SetDestructor", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_SetDestructor.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetDestructor", "dispname": "-"}, {"name": "PyCapsule_SetDestructor.destructor", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetDestructor", "dispname": "-"}, {"name": "PyCapsule_SetName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_SetName.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetName", "dispname": "-"}, {"name": "PyCapsule_SetName.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetName", "dispname": "-"}, {"name": "PyCapsule_SetPointer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/capsule.html#c.$", "dispname": "-"}, {"name": "PyCapsule_SetPointer.capsule", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetPointer", "dispname": "-"}, {"name": "PyCapsule_SetPointer.pointer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/capsule.html#c.PyCapsule_SetPointer", "dispname": "-"}, {"name": "PyCellObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_GET", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_GET.cell", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_GET", "dispname": "-"}, {"name": "PyCell_Get", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_Get.cell", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_Get", "dispname": "-"}, {"name": "PyCell_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_New.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_New", "dispname": "-"}, {"name": "PyCell_SET", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_SET.cell", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_SET", "dispname": "-"}, {"name": "PyCell_SET.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_SET", "dispname": "-"}, {"name": "PyCell_Set", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCell_Set.cell", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_Set", "dispname": "-"}, {"name": "PyCell_Set.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/cell.html#c.PyCell_Set", "dispname": "-"}, {"name": "PyCell_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/cell.html#c.$", "dispname": "-"}, {"name": "PyCodeObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_Addr2Line", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_Addr2Line.byte_offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_Addr2Line", "dispname": "-"}, {"name": "PyCode_Addr2Line.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_Addr2Line", "dispname": "-"}, {"name": "PyCode_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_Check.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_Check", "dispname": "-"}, {"name": "PyCode_GetNumFree", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_GetNumFree.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_GetNumFree", "dispname": "-"}, {"name": "PyCode_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_New.argcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.cellvars", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.code", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.consts", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.firstlineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.freevars", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.kwonlyargcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.lnotab", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.names", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.nlocals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.stacksize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_New.varnames", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_New", "dispname": "-"}, {"name": "PyCode_NewEmpty", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_NewEmpty.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewEmpty", "dispname": "-"}, {"name": "PyCode_NewEmpty.firstlineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewEmpty", "dispname": "-"}, {"name": "PyCode_NewEmpty.funcname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewEmpty", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.argcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.cellvars", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.code", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.consts", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.firstlineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.freevars", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.kwonlyargcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.lnotab", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.names", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.nlocals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.posonlyargcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.stacksize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_NewWithPosOnlyArgs.varnames", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/code.html#c.PyCode_NewWithPosOnlyArgs", "dispname": "-"}, {"name": "PyCode_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/code.html#c.$", "dispname": "-"}, {"name": "PyCodec_BackslashReplaceErrors", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_BackslashReplaceErrors.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_BackslashReplaceErrors", "dispname": "-"}, {"name": "PyCodec_Decode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_Decode.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Decode", "dispname": "-"}, {"name": "PyCodec_Decode.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Decode", "dispname": "-"}, {"name": "PyCodec_Decode.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Decode", "dispname": "-"}, {"name": "PyCodec_Decoder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_Decoder.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Decoder", "dispname": "-"}, {"name": "PyCodec_Encode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_Encode.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Encode", "dispname": "-"}, {"name": "PyCodec_Encode.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Encode", "dispname": "-"}, {"name": "PyCodec_Encode.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Encode", "dispname": "-"}, {"name": "PyCodec_Encoder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_Encoder.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Encoder", "dispname": "-"}, {"name": "PyCodec_IgnoreErrors", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_IgnoreErrors.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_IgnoreErrors", "dispname": "-"}, {"name": "PyCodec_IncrementalDecoder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_IncrementalDecoder.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_IncrementalDecoder", "dispname": "-"}, {"name": "PyCodec_IncrementalDecoder.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_IncrementalDecoder", "dispname": "-"}, {"name": "PyCodec_IncrementalEncoder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_IncrementalEncoder.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_IncrementalEncoder", "dispname": "-"}, {"name": "PyCodec_IncrementalEncoder.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_IncrementalEncoder", "dispname": "-"}, {"name": "PyCodec_KnownEncoding", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_KnownEncoding.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_KnownEncoding", "dispname": "-"}, {"name": "PyCodec_LookupError", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_LookupError.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_LookupError", "dispname": "-"}, {"name": "PyCodec_NameReplaceErrors", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_NameReplaceErrors.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_NameReplaceErrors", "dispname": "-"}, {"name": "PyCodec_Register", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_Register.search_function", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Register", "dispname": "-"}, {"name": "PyCodec_RegisterError", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_RegisterError.error", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_RegisterError", "dispname": "-"}, {"name": "PyCodec_RegisterError.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_RegisterError", "dispname": "-"}, {"name": "PyCodec_ReplaceErrors", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_ReplaceErrors.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_ReplaceErrors", "dispname": "-"}, {"name": "PyCodec_StreamReader", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_StreamReader.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StreamReader", "dispname": "-"}, {"name": "PyCodec_StreamReader.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StreamReader", "dispname": "-"}, {"name": "PyCodec_StreamReader.stream", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StreamReader", "dispname": "-"}, {"name": "PyCodec_StreamWriter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_StreamWriter.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StreamWriter", "dispname": "-"}, {"name": "PyCodec_StreamWriter.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StreamWriter", "dispname": "-"}, {"name": "PyCodec_StreamWriter.stream", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StreamWriter", "dispname": "-"}, {"name": "PyCodec_StrictErrors", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_StrictErrors.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_StrictErrors", "dispname": "-"}, {"name": "PyCodec_Unregister", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_Unregister.search_function", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_Unregister", "dispname": "-"}, {"name": "PyCodec_XMLCharRefReplaceErrors", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/codec.html#c.$", "dispname": "-"}, {"name": "PyCodec_XMLCharRefReplaceErrors.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/codec.html#c.PyCodec_XMLCharRefReplaceErrors", "dispname": "-"}, {"name": "PyCompactUnicodeObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyCompilerFlags", "domain": "c", "role": "struct", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyCompilerFlags.cf_feature_version", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyCompilerFlags.cf_flags", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyComplexObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_AsCComplex", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_AsCComplex.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_AsCComplex", "dispname": "-"}, {"name": "PyComplex_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_Check", "dispname": "-"}, {"name": "PyComplex_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_CheckExact", "dispname": "-"}, {"name": "PyComplex_FromCComplex", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_FromCComplex.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_FromCComplex", "dispname": "-"}, {"name": "PyComplex_FromDoubles", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_FromDoubles.imag", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_FromDoubles", "dispname": "-"}, {"name": "PyComplex_FromDoubles.real", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_FromDoubles", "dispname": "-"}, {"name": "PyComplex_ImagAsDouble", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_ImagAsDouble.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_ImagAsDouble", "dispname": "-"}, {"name": "PyComplex_RealAsDouble", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyComplex_RealAsDouble.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c.PyComplex_RealAsDouble", "dispname": "-"}, {"name": "PyComplex_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "PyConfig", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_Clear", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_Clear.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_Clear", "dispname": "-"}, {"name": "PyConfig.PyConfig_InitIsolatedConfig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_InitIsolatedConfig.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_InitIsolatedConfig", "dispname": "-"}, {"name": "PyConfig.PyConfig_InitPythonConfig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_InitPythonConfig.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_InitPythonConfig", "dispname": "-"}, {"name": "PyConfig.PyConfig_Read", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_Read.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_Read", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetArgv", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetArgv.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetArgv", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetArgv.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetArgv", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetArgv.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetArgv", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesArgv", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesArgv.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetBytesArgv", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesArgv.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetBytesArgv", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesArgv.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetBytesArgv", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesString.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetBytesString", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesString.config_str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetBytesString", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetBytesString.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetBytesString", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetString.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetString", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetString.config_str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetString", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetString.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetString", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetWideStringList", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetWideStringList.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetWideStringList", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetWideStringList.items", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetWideStringList", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetWideStringList.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetWideStringList", "dispname": "-"}, {"name": "PyConfig.PyConfig_SetWideStringList.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyConfig.PyConfig_SetWideStringList", "dispname": "-"}, {"name": "PyConfig.argv", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.base_exec_prefix", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.base_executable", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.base_prefix", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.buffered_stdio", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.bytes_warning", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.check_hash_pycs_mode", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.configure_c_stdio", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.dev_mode", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.dump_refs", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.exec_prefix", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.executable", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.faulthandler", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.filesystem_encoding", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.filesystem_errors", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.hash_seed", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.home", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.import_time", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.inspect", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.install_signal_handlers", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.interactive", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.isolated", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.legacy_windows_stdio", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.malloc_stats", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.module_search_paths", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.module_search_paths_set", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.optimization_level", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.orig_argv", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.parse_argv", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.parser_debug", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.pathconfig_warnings", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.platlibdir", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.prefix", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.program_name", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.pycache_prefix", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.pythonpath_env", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.quiet", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.run_command", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.run_filename", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.run_module", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.show_ref_count", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.site_import", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.skip_source_first_line", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.stdio_encoding", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.stdio_errors", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.tracemalloc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.use_environment", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.use_hash_seed", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.user_site_directory", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.verbose", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.warn_default_encoding", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.warnoptions", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.write_bytecode", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyConfig.xoptions", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyContext", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextToken", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextToken_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextToken_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextToken_CheckExact", "dispname": "-"}, {"name": "PyContextToken_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_CheckExact", "dispname": "-"}, {"name": "PyContextVar_Get", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar_Get.default_value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Get", "dispname": "-"}, {"name": "PyContextVar_Get.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Get", "dispname": "-"}, {"name": "PyContextVar_Get.var", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Get", "dispname": "-"}, {"name": "PyContextVar_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar_New.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_New", "dispname": "-"}, {"name": "PyContextVar_New.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_New", "dispname": "-"}, {"name": "PyContextVar_Reset", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar_Reset.token", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Reset", "dispname": "-"}, {"name": "PyContextVar_Reset.var", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Reset", "dispname": "-"}, {"name": "PyContextVar_Set", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContextVar_Set.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Set", "dispname": "-"}, {"name": "PyContextVar_Set.var", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContextVar_Set", "dispname": "-"}, {"name": "PyContextVar_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContext_CheckExact", "dispname": "-"}, {"name": "PyContext_Copy", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_Copy.ctx", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContext_Copy", "dispname": "-"}, {"name": "PyContext_CopyCurrent", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_Enter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_Enter.ctx", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContext_Enter", "dispname": "-"}, {"name": "PyContext_Exit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_Exit.ctx", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/contextvars.html#c.PyContext_Exit", "dispname": "-"}, {"name": "PyContext_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyContext_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/contextvars.html#c.$", "dispname": "-"}, {"name": "PyCoroObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/coro.html#c.$", "dispname": "-"}, {"name": "PyCoro_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/coro.html#c.$", "dispname": "-"}, {"name": "PyCoro_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/coro.html#c.PyCoro_CheckExact", "dispname": "-"}, {"name": "PyCoro_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/coro.html#c.$", "dispname": "-"}, {"name": "PyCoro_New.frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/coro.html#c.PyCoro_New", "dispname": "-"}, {"name": "PyCoro_New.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/coro.html#c.PyCoro_New", "dispname": "-"}, {"name": "PyCoro_New.qualname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/coro.html#c.PyCoro_New", "dispname": "-"}, {"name": "PyCoro_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/coro.html#c.$", "dispname": "-"}, {"name": "PyDateTime_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_Check", "dispname": "-"}, {"name": "PyDateTime_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_CheckExact", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_FOLD", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_FOLD.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DATE_GET_FOLD", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_HOUR", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_HOUR.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DATE_GET_HOUR", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_MICROSECOND", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_MICROSECOND.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DATE_GET_MICROSECOND", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_MINUTE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_MINUTE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DATE_GET_MINUTE", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_SECOND", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_SECOND.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DATE_GET_SECOND", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_TZINFO", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DATE_GET_TZINFO.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DATE_GET_TZINFO", "dispname": "-"}, {"name": "PyDateTime_DELTA_GET_DAYS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DELTA_GET_DAYS.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DELTA_GET_DAYS", "dispname": "-"}, {"name": "PyDateTime_DELTA_GET_MICROSECONDS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DELTA_GET_MICROSECONDS.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DELTA_GET_MICROSECONDS", "dispname": "-"}, {"name": "PyDateTime_DELTA_GET_SECONDS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_DELTA_GET_SECONDS.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_DELTA_GET_SECONDS", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.day", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.hour", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.minute", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.month", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.second", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.usecond", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTime.year", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTime", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.day", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.fold", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.hour", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.minute", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.month", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.second", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.usecond", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromDateAndTimeAndFold.year", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromDateAndTimeAndFold", "dispname": "-"}, {"name": "PyDateTime_FromTimestamp", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_FromTimestamp.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_FromTimestamp", "dispname": "-"}, {"name": "PyDateTime_GET_DAY", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_GET_DAY.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_GET_DAY", "dispname": "-"}, {"name": "PyDateTime_GET_MONTH", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_GET_MONTH.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_GET_MONTH", "dispname": "-"}, {"name": "PyDateTime_GET_YEAR", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_GET_YEAR.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_GET_YEAR", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_FOLD", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_FOLD.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_TIME_GET_FOLD", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_HOUR", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_HOUR.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_TIME_GET_HOUR", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_MICROSECOND", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_MICROSECOND.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_TIME_GET_MICROSECOND", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_MINUTE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_MINUTE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_TIME_GET_MINUTE", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_SECOND", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_SECOND.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_TIME_GET_SECOND", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_TZINFO", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDateTime_TIME_GET_TZINFO.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDateTime_TIME_GET_TZINFO", "dispname": "-"}, {"name": "PyDateTime_TimeZone_UTC", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDate_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDate_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDate_Check", "dispname": "-"}, {"name": "PyDate_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDate_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDate_CheckExact", "dispname": "-"}, {"name": "PyDate_FromDate", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDate_FromDate.day", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDate_FromDate", "dispname": "-"}, {"name": "PyDate_FromDate.month", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDate_FromDate", "dispname": "-"}, {"name": "PyDate_FromDate.year", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDate_FromDate", "dispname": "-"}, {"name": "PyDate_FromTimestamp", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDate_FromTimestamp.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDate_FromTimestamp", "dispname": "-"}, {"name": "PyDelta_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDelta_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDelta_Check", "dispname": "-"}, {"name": "PyDelta_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDelta_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDelta_CheckExact", "dispname": "-"}, {"name": "PyDelta_FromDSU", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyDelta_FromDSU.days", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDelta_FromDSU", "dispname": "-"}, {"name": "PyDelta_FromDSU.seconds", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDelta_FromDSU", "dispname": "-"}, {"name": "PyDelta_FromDSU.useconds", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyDelta_FromDSU", "dispname": "-"}, {"name": "PyDescr_IsData", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyDescr_IsData.descr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_IsData", "dispname": "-"}, {"name": "PyDescr_NewClassMethod", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyDescr_NewClassMethod.method", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewClassMethod", "dispname": "-"}, {"name": "PyDescr_NewClassMethod.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewClassMethod", "dispname": "-"}, {"name": "PyDescr_NewGetSet", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyDescr_NewGetSet.getset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewGetSet", "dispname": "-"}, {"name": "PyDescr_NewGetSet.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewGetSet", "dispname": "-"}, {"name": "PyDescr_NewMember", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyDescr_NewMember.meth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewMember", "dispname": "-"}, {"name": "PyDescr_NewMember.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewMember", "dispname": "-"}, {"name": "PyDescr_NewMethod", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyDescr_NewMethod.meth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewMethod", "dispname": "-"}, {"name": "PyDescr_NewMethod.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewMethod", "dispname": "-"}, {"name": "PyDescr_NewWrapper", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyDescr_NewWrapper.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewWrapper", "dispname": "-"}, {"name": "PyDescr_NewWrapper.wrapped", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewWrapper", "dispname": "-"}, {"name": "PyDescr_NewWrapper.wrapper", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/descriptor.html#c.PyDescr_NewWrapper", "dispname": "-"}, {"name": "PyDictObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDictProxy_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDictProxy_New.mapping", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDictProxy_New", "dispname": "-"}, {"name": "PyDict_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Check", "dispname": "-"}, {"name": "PyDict_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_CheckExact", "dispname": "-"}, {"name": "PyDict_Clear", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Clear.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Clear", "dispname": "-"}, {"name": "PyDict_Contains", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Contains.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Contains", "dispname": "-"}, {"name": "PyDict_Contains.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Contains", "dispname": "-"}, {"name": "PyDict_Copy", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Copy.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Copy", "dispname": "-"}, {"name": "PyDict_DelItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_DelItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_DelItem", "dispname": "-"}, {"name": "PyDict_DelItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_DelItem", "dispname": "-"}, {"name": "PyDict_DelItemString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_DelItemString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_DelItemString", "dispname": "-"}, {"name": "PyDict_DelItemString.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_DelItemString", "dispname": "-"}, {"name": "PyDict_GetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_GetItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_GetItem", "dispname": "-"}, {"name": "PyDict_GetItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_GetItem", "dispname": "-"}, {"name": "PyDict_GetItemString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_GetItemString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_GetItemString", "dispname": "-"}, {"name": "PyDict_GetItemString.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_GetItemString", "dispname": "-"}, {"name": "PyDict_GetItemWithError", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_GetItemWithError.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_GetItemWithError", "dispname": "-"}, {"name": "PyDict_GetItemWithError.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_GetItemWithError", "dispname": "-"}, {"name": "PyDict_Items", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Items.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Items", "dispname": "-"}, {"name": "PyDict_Keys", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Keys.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Keys", "dispname": "-"}, {"name": "PyDict_Merge", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Merge.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Merge", "dispname": "-"}, {"name": "PyDict_Merge.b", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Merge", "dispname": "-"}, {"name": "PyDict_Merge.override", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Merge", "dispname": "-"}, {"name": "PyDict_MergeFromSeq2", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_MergeFromSeq2.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_MergeFromSeq2", "dispname": "-"}, {"name": "PyDict_MergeFromSeq2.override", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_MergeFromSeq2", "dispname": "-"}, {"name": "PyDict_MergeFromSeq2.seq2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_MergeFromSeq2", "dispname": "-"}, {"name": "PyDict_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Next", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Next.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Next", "dispname": "-"}, {"name": "PyDict_Next.pkey", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Next", "dispname": "-"}, {"name": "PyDict_Next.ppos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Next", "dispname": "-"}, {"name": "PyDict_Next.pvalue", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Next", "dispname": "-"}, {"name": "PyDict_SetDefault", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_SetDefault.defaultobj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetDefault", "dispname": "-"}, {"name": "PyDict_SetDefault.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetDefault", "dispname": "-"}, {"name": "PyDict_SetDefault.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetDefault", "dispname": "-"}, {"name": "PyDict_SetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_SetItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetItem", "dispname": "-"}, {"name": "PyDict_SetItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetItem", "dispname": "-"}, {"name": "PyDict_SetItem.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetItem", "dispname": "-"}, {"name": "PyDict_SetItemString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_SetItemString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetItemString", "dispname": "-"}, {"name": "PyDict_SetItemString.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetItemString", "dispname": "-"}, {"name": "PyDict_SetItemString.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_SetItemString", "dispname": "-"}, {"name": "PyDict_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Size.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Size", "dispname": "-"}, {"name": "PyDict_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Update", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Update.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Update", "dispname": "-"}, {"name": "PyDict_Update.b", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Update", "dispname": "-"}, {"name": "PyDict_Values", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/dict.html#c.$", "dispname": "-"}, {"name": "PyDict_Values.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/dict.html#c.PyDict_Values", "dispname": "-"}, {"name": "PyDoc_STR", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "PyDoc_STRVAR", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "PyErr_BadArgument", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_BadInternalCall", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_CheckSignals", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_Clear", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_ExceptionMatches", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_ExceptionMatches.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_ExceptionMatches", "dispname": "-"}, {"name": "PyErr_Fetch", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_Fetch.ptraceback", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Fetch", "dispname": "-"}, {"name": "PyErr_Fetch.ptype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Fetch", "dispname": "-"}, {"name": "PyErr_Fetch.pvalue", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Fetch", "dispname": "-"}, {"name": "PyErr_Format", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_Format.exception", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Format", "dispname": "-"}, {"name": "PyErr_Format.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Format", "dispname": "-"}, {"name": "PyErr_FormatV", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_FormatV.exception", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_FormatV", "dispname": "-"}, {"name": "PyErr_FormatV.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_FormatV", "dispname": "-"}, {"name": "PyErr_FormatV.vargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_FormatV", "dispname": "-"}, {"name": "PyErr_GetExcInfo", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_GetExcInfo.ptraceback", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_GetExcInfo", "dispname": "-"}, {"name": "PyErr_GetExcInfo.ptype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_GetExcInfo", "dispname": "-"}, {"name": "PyErr_GetExcInfo.pvalue", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_GetExcInfo", "dispname": "-"}, {"name": "PyErr_GivenExceptionMatches", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_GivenExceptionMatches.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_GivenExceptionMatches", "dispname": "-"}, {"name": "PyErr_GivenExceptionMatches.given", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_GivenExceptionMatches", "dispname": "-"}, {"name": "PyErr_NewException", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_NewException.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewException", "dispname": "-"}, {"name": "PyErr_NewException.dict", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewException", "dispname": "-"}, {"name": "PyErr_NewException.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewException", "dispname": "-"}, {"name": "PyErr_NewExceptionWithDoc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_NewExceptionWithDoc.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewExceptionWithDoc", "dispname": "-"}, {"name": "PyErr_NewExceptionWithDoc.dict", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewExceptionWithDoc", "dispname": "-"}, {"name": "PyErr_NewExceptionWithDoc.doc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewExceptionWithDoc", "dispname": "-"}, {"name": "PyErr_NewExceptionWithDoc.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NewExceptionWithDoc", "dispname": "-"}, {"name": "PyErr_NoMemory", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_NormalizeException", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_NormalizeException.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NormalizeException", "dispname": "-"}, {"name": "PyErr_NormalizeException.tb", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NormalizeException", "dispname": "-"}, {"name": "PyErr_NormalizeException.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_NormalizeException", "dispname": "-"}, {"name": "PyErr_Occurred", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_Print", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_PrintEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_PrintEx.set_sys_last_vars", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_PrintEx", "dispname": "-"}, {"name": "PyErr_ResourceWarning", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_ResourceWarning.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_ResourceWarning", "dispname": "-"}, {"name": "PyErr_ResourceWarning.source", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_ResourceWarning", "dispname": "-"}, {"name": "PyErr_ResourceWarning.stack_level", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_ResourceWarning", "dispname": "-"}, {"name": "PyErr_Restore", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_Restore.traceback", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Restore", "dispname": "-"}, {"name": "PyErr_Restore.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Restore", "dispname": "-"}, {"name": "PyErr_Restore.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_Restore", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErr.ierr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErr", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErr.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErr", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilename", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilename.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilename", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilename.ierr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilename", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilename.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilename", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObject.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObject", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObject.ierr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObject", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObject.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObject", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObjects", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObjects.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObjects.filename2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObjects.ierr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetExcFromWindowsErrWithFilenameObjects.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcFromWindowsErrWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetExcInfo", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetExcInfo.traceback", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcInfo", "dispname": "-"}, {"name": "PyErr_SetExcInfo.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcInfo", "dispname": "-"}, {"name": "PyErr_SetExcInfo.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetExcInfo", "dispname": "-"}, {"name": "PyErr_SetFromErrno", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetFromErrno.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrno", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilename", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilename.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilename", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilename.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilename", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObject.filenameObject", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObject", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObject.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObject", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObjects", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObjects.filenameObject", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObjects.filenameObject2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetFromErrnoWithFilenameObjects.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromErrnoWithFilenameObjects", "dispname": "-"}, {"name": "PyErr_SetFromWindowsErr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetFromWindowsErr.ierr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromWindowsErr", "dispname": "-"}, {"name": "PyErr_SetFromWindowsErrWithFilename", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetFromWindowsErrWithFilename.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromWindowsErrWithFilename", "dispname": "-"}, {"name": "PyErr_SetFromWindowsErrWithFilename.ierr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetFromWindowsErrWithFilename", "dispname": "-"}, {"name": "PyErr_SetImportError", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetImportError.msg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportError", "dispname": "-"}, {"name": "PyErr_SetImportError.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportError", "dispname": "-"}, {"name": "PyErr_SetImportError.path", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportError", "dispname": "-"}, {"name": "PyErr_SetImportErrorSubclass", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetImportErrorSubclass.exception", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportErrorSubclass", "dispname": "-"}, {"name": "PyErr_SetImportErrorSubclass.msg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportErrorSubclass", "dispname": "-"}, {"name": "PyErr_SetImportErrorSubclass.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportErrorSubclass", "dispname": "-"}, {"name": "PyErr_SetImportErrorSubclass.path", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetImportErrorSubclass", "dispname": "-"}, {"name": "PyErr_SetInterrupt", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetInterruptEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetInterruptEx.signum", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetInterruptEx", "dispname": "-"}, {"name": "PyErr_SetNone", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetNone.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetNone", "dispname": "-"}, {"name": "PyErr_SetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetObject.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetObject", "dispname": "-"}, {"name": "PyErr_SetObject.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetObject", "dispname": "-"}, {"name": "PyErr_SetString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SetString.message", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetString", "dispname": "-"}, {"name": "PyErr_SetString.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SetString", "dispname": "-"}, {"name": "PyErr_SyntaxLocation", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SyntaxLocation.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocation", "dispname": "-"}, {"name": "PyErr_SyntaxLocation.lineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocation", "dispname": "-"}, {"name": "PyErr_SyntaxLocationEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SyntaxLocationEx.col_offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocationEx", "dispname": "-"}, {"name": "PyErr_SyntaxLocationEx.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocationEx", "dispname": "-"}, {"name": "PyErr_SyntaxLocationEx.lineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocationEx", "dispname": "-"}, {"name": "PyErr_SyntaxLocationObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_SyntaxLocationObject.col_offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocationObject", "dispname": "-"}, {"name": "PyErr_SyntaxLocationObject.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocationObject", "dispname": "-"}, {"name": "PyErr_SyntaxLocationObject.lineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_SyntaxLocationObject", "dispname": "-"}, {"name": "PyErr_WarnEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_WarnEx.category", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnEx", "dispname": "-"}, {"name": "PyErr_WarnEx.message", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnEx", "dispname": "-"}, {"name": "PyErr_WarnEx.stack_level", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnEx", "dispname": "-"}, {"name": "PyErr_WarnExplicit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_WarnExplicit.category", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicit", "dispname": "-"}, {"name": "PyErr_WarnExplicit.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicit", "dispname": "-"}, {"name": "PyErr_WarnExplicit.lineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicit", "dispname": "-"}, {"name": "PyErr_WarnExplicit.message", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicit", "dispname": "-"}, {"name": "PyErr_WarnExplicit.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicit", "dispname": "-"}, {"name": "PyErr_WarnExplicit.registry", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicit", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject.category", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicitObject", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicitObject", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject.lineno", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicitObject", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject.message", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicitObject", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicitObject", "dispname": "-"}, {"name": "PyErr_WarnExplicitObject.registry", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnExplicitObject", "dispname": "-"}, {"name": "PyErr_WarnFormat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_WarnFormat.category", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnFormat", "dispname": "-"}, {"name": "PyErr_WarnFormat.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnFormat", "dispname": "-"}, {"name": "PyErr_WarnFormat.stack_level", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WarnFormat", "dispname": "-"}, {"name": "PyErr_WriteUnraisable", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyErr_WriteUnraisable.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyErr_WriteUnraisable", "dispname": "-"}, {"name": "PyEval_AcquireLock", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_AcquireThread", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_AcquireThread.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_AcquireThread", "dispname": "-"}, {"name": "PyEval_EvalCode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyEval_EvalCode.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCode", "dispname": "-"}, {"name": "PyEval_EvalCode.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCode", "dispname": "-"}, {"name": "PyEval_EvalCode.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCode", "dispname": "-"}, {"name": "PyEval_EvalCodeEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.argcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.closure", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.defcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.defs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.kwcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.kwdefs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.kws", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalCodeEx.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalCodeEx", "dispname": "-"}, {"name": "PyEval_EvalFrame", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyEval_EvalFrame.f", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalFrame", "dispname": "-"}, {"name": "PyEval_EvalFrameEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyEval_EvalFrameEx.f", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalFrameEx", "dispname": "-"}, {"name": "PyEval_EvalFrameEx.throwflag", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_EvalFrameEx", "dispname": "-"}, {"name": "PyEval_GetBuiltins", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyEval_GetFrame", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyEval_GetFuncDesc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyEval_GetFuncDesc.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/reflection.html#c.PyEval_GetFuncDesc", "dispname": "-"}, {"name": "PyEval_GetFuncName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyEval_GetFuncName.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/reflection.html#c.PyEval_GetFuncName", "dispname": "-"}, {"name": "PyEval_GetGlobals", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyEval_GetLocals", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyEval_InitThreads", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_MergeCompilerFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyEval_MergeCompilerFlags.cf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyEval_MergeCompilerFlags", "dispname": "-"}, {"name": "PyEval_ReleaseLock", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_ReleaseThread", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_ReleaseThread.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_ReleaseThread", "dispname": "-"}, {"name": "PyEval_RestoreThread", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_RestoreThread.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_RestoreThread", "dispname": "-"}, {"name": "PyEval_SaveThread", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_SetProfile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_SetProfile.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_SetProfile", "dispname": "-"}, {"name": "PyEval_SetProfile.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_SetProfile", "dispname": "-"}, {"name": "PyEval_SetTrace", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyEval_SetTrace.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_SetTrace", "dispname": "-"}, {"name": "PyEval_SetTrace.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyEval_SetTrace", "dispname": "-"}, {"name": "PyEval_ThreadsInitialized", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyException_GetCause", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyException_GetCause.ex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_GetCause", "dispname": "-"}, {"name": "PyException_GetContext", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyException_GetContext.ex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_GetContext", "dispname": "-"}, {"name": "PyException_GetTraceback", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyException_GetTraceback.ex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_GetTraceback", "dispname": "-"}, {"name": "PyException_SetCause", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyException_SetCause.cause", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_SetCause", "dispname": "-"}, {"name": "PyException_SetCause.ex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_SetCause", "dispname": "-"}, {"name": "PyException_SetContext", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyException_SetContext.ctx", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_SetContext", "dispname": "-"}, {"name": "PyException_SetContext.ex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_SetContext", "dispname": "-"}, {"name": "PyException_SetTraceback", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyException_SetTraceback.ex", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_SetTraceback", "dispname": "-"}, {"name": "PyException_SetTraceback.tb", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyException_SetTraceback", "dispname": "-"}, {"name": "PyFile_FromFd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/file.html#c.$", "dispname": "-"}, {"name": "PyFile_FromFd.buffering", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.closefd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.fd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.mode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_FromFd.newline", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_FromFd", "dispname": "-"}, {"name": "PyFile_GetLine", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/file.html#c.$", "dispname": "-"}, {"name": "PyFile_GetLine.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_GetLine", "dispname": "-"}, {"name": "PyFile_GetLine.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_GetLine", "dispname": "-"}, {"name": "PyFile_SetOpenCodeHook", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/file.html#c.$", "dispname": "-"}, {"name": "PyFile_SetOpenCodeHook.handler", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_SetOpenCodeHook", "dispname": "-"}, {"name": "PyFile_WriteObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/file.html#c.$", "dispname": "-"}, {"name": "PyFile_WriteObject.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_WriteObject", "dispname": "-"}, {"name": "PyFile_WriteObject.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_WriteObject", "dispname": "-"}, {"name": "PyFile_WriteObject.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_WriteObject", "dispname": "-"}, {"name": "PyFile_WriteString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/file.html#c.$", "dispname": "-"}, {"name": "PyFile_WriteString.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_WriteString", "dispname": "-"}, {"name": "PyFile_WriteString.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyFile_WriteString", "dispname": "-"}, {"name": "PyFloatObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_AS_DOUBLE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_AS_DOUBLE.pyfloat", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/float.html#c.PyFloat_AS_DOUBLE", "dispname": "-"}, {"name": "PyFloat_AsDouble", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_AsDouble.pyfloat", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/float.html#c.PyFloat_AsDouble", "dispname": "-"}, {"name": "PyFloat_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/float.html#c.PyFloat_Check", "dispname": "-"}, {"name": "PyFloat_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/float.html#c.PyFloat_CheckExact", "dispname": "-"}, {"name": "PyFloat_FromDouble", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_FromDouble.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/float.html#c.PyFloat_FromDouble", "dispname": "-"}, {"name": "PyFloat_FromString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_FromString.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/float.html#c.PyFloat_FromString", "dispname": "-"}, {"name": "PyFloat_GetInfo", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_GetMax", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_GetMin", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFloat_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/float.html#c.$", "dispname": "-"}, {"name": "PyFrameObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyFrame_GetBack", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyFrame_GetBack.frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/reflection.html#c.PyFrame_GetBack", "dispname": "-"}, {"name": "PyFrame_GetCode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyFrame_GetCode.frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/reflection.html#c.PyFrame_GetCode", "dispname": "-"}, {"name": "PyFrame_GetLineNumber", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/reflection.html#c.$", "dispname": "-"}, {"name": "PyFrame_GetLineNumber.frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/reflection.html#c.PyFrame_GetLineNumber", "dispname": "-"}, {"name": "PyFrozenSet_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PyFrozenSet_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PyFrozenSet_Check", "dispname": "-"}, {"name": "PyFrozenSet_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PyFrozenSet_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PyFrozenSet_CheckExact", "dispname": "-"}, {"name": "PyFrozenSet_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PyFrozenSet_New.iterable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PyFrozenSet_New", "dispname": "-"}, {"name": "PyFrozenSet_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PyFunctionObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_Check", "dispname": "-"}, {"name": "PyFunction_GetAnnotations", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_GetAnnotations.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_GetAnnotations", "dispname": "-"}, {"name": "PyFunction_GetClosure", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_GetClosure.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_GetClosure", "dispname": "-"}, {"name": "PyFunction_GetCode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_GetCode.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_GetCode", "dispname": "-"}, {"name": "PyFunction_GetDefaults", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_GetDefaults.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_GetDefaults", "dispname": "-"}, {"name": "PyFunction_GetGlobals", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_GetGlobals.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_GetGlobals", "dispname": "-"}, {"name": "PyFunction_GetModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_GetModule.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_GetModule", "dispname": "-"}, {"name": "PyFunction_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_New.code", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_New", "dispname": "-"}, {"name": "PyFunction_New.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_New", "dispname": "-"}, {"name": "PyFunction_NewWithQualName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_NewWithQualName.code", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_NewWithQualName", "dispname": "-"}, {"name": "PyFunction_NewWithQualName.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_NewWithQualName", "dispname": "-"}, {"name": "PyFunction_NewWithQualName.qualname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_NewWithQualName", "dispname": "-"}, {"name": "PyFunction_SetAnnotations", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_SetAnnotations.annotations", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_SetAnnotations", "dispname": "-"}, {"name": "PyFunction_SetAnnotations.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_SetAnnotations", "dispname": "-"}, {"name": "PyFunction_SetClosure", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_SetClosure.closure", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_SetClosure", "dispname": "-"}, {"name": "PyFunction_SetClosure.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_SetClosure", "dispname": "-"}, {"name": "PyFunction_SetDefaults", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyFunction_SetDefaults.defaults", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_SetDefaults", "dispname": "-"}, {"name": "PyFunction_SetDefaults.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/function.html#c.PyFunction_SetDefaults", "dispname": "-"}, {"name": "PyFunction_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/function.html#c.$", "dispname": "-"}, {"name": "PyGC_Collect", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyGC_Disable", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyGC_Enable", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyGC_IsEnabled", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyGILState_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyGILState_Ensure", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyGILState_GetThisThreadState", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyGILState_Release", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyGenObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/gen.html#c.$", "dispname": "-"}, {"name": "PyGen_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gen.html#c.$", "dispname": "-"}, {"name": "PyGen_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gen.html#c.PyGen_Check", "dispname": "-"}, {"name": "PyGen_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gen.html#c.$", "dispname": "-"}, {"name": "PyGen_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gen.html#c.PyGen_CheckExact", "dispname": "-"}, {"name": "PyGen_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gen.html#c.$", "dispname": "-"}, {"name": "PyGen_New.frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gen.html#c.PyGen_New", "dispname": "-"}, {"name": "PyGen_NewWithQualName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gen.html#c.$", "dispname": "-"}, {"name": "PyGen_NewWithQualName.frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gen.html#c.PyGen_NewWithQualName", "dispname": "-"}, {"name": "PyGen_NewWithQualName.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gen.html#c.PyGen_NewWithQualName", "dispname": "-"}, {"name": "PyGen_NewWithQualName.qualname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gen.html#c.PyGen_NewWithQualName", "dispname": "-"}, {"name": "PyGen_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/gen.html#c.$", "dispname": "-"}, {"name": "PyGetSetDef", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyImport_AddModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_AddModule.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_AddModule", "dispname": "-"}, {"name": "PyImport_AddModuleObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_AddModuleObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_AddModuleObject", "dispname": "-"}, {"name": "PyImport_AppendInittab", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_AppendInittab.initfunc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_AppendInittab", "dispname": "-"}, {"name": "PyImport_AppendInittab.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_AppendInittab", "dispname": "-"}, {"name": "PyImport_ExecCodeModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ExecCodeModule.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModule", "dispname": "-"}, {"name": "PyImport_ExecCodeModule.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModule", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleEx.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleEx", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleEx.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleEx", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleEx.pathname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleEx", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleObject.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleObject", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleObject.cpathname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleObject", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleObject", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleObject.pathname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleObject", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleWithPathnames", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleWithPathnames.co", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleWithPathnames", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleWithPathnames.cpathname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleWithPathnames", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleWithPathnames.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleWithPathnames", "dispname": "-"}, {"name": "PyImport_ExecCodeModuleWithPathnames.pathname", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExecCodeModuleWithPathnames", "dispname": "-"}, {"name": "PyImport_ExtendInittab", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ExtendInittab.newtab", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ExtendInittab", "dispname": "-"}, {"name": "PyImport_FrozenModules", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_GetImporter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_GetImporter.path", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_GetImporter", "dispname": "-"}, {"name": "PyImport_GetMagicNumber", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_GetMagicTag", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_GetModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_GetModule.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_GetModule", "dispname": "-"}, {"name": "PyImport_GetModuleDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_Import", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_Import.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_Import", "dispname": "-"}, {"name": "PyImport_ImportFrozenModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportFrozenModule.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportFrozenModule", "dispname": "-"}, {"name": "PyImport_ImportFrozenModuleObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportFrozenModuleObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportFrozenModuleObject", "dispname": "-"}, {"name": "PyImport_ImportModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportModule.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModule", "dispname": "-"}, {"name": "PyImport_ImportModuleEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportModuleEx.fromlist", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleEx", "dispname": "-"}, {"name": "PyImport_ImportModuleEx.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleEx", "dispname": "-"}, {"name": "PyImport_ImportModuleEx.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleEx", "dispname": "-"}, {"name": "PyImport_ImportModuleEx.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleEx", "dispname": "-"}, {"name": "PyImport_ImportModuleLevel", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportModuleLevel.fromlist", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevel", "dispname": "-"}, {"name": "PyImport_ImportModuleLevel.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevel", "dispname": "-"}, {"name": "PyImport_ImportModuleLevel.level", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevel", "dispname": "-"}, {"name": "PyImport_ImportModuleLevel.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevel", "dispname": "-"}, {"name": "PyImport_ImportModuleLevel.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevel", "dispname": "-"}, {"name": "PyImport_ImportModuleLevelObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportModuleLevelObject.fromlist", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevelObject", "dispname": "-"}, {"name": "PyImport_ImportModuleLevelObject.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevelObject", "dispname": "-"}, {"name": "PyImport_ImportModuleLevelObject.level", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevelObject", "dispname": "-"}, {"name": "PyImport_ImportModuleLevelObject.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevelObject", "dispname": "-"}, {"name": "PyImport_ImportModuleLevelObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleLevelObject", "dispname": "-"}, {"name": "PyImport_ImportModuleNoBlock", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ImportModuleNoBlock.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ImportModuleNoBlock", "dispname": "-"}, {"name": "PyImport_ReloadModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "PyImport_ReloadModule.m", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/import.html#c.PyImport_ReloadModule", "dispname": "-"}, {"name": "PyIndex_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyIndex_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyIndex_Check", "dispname": "-"}, {"name": "PyInit_modulename", "domain": "c", "role": "function", "priority": "1", "uri": "extending/building.html#c.$", "dispname": "-"}, {"name": "PyInstanceMethod_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyInstanceMethod_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyInstanceMethod_Check", "dispname": "-"}, {"name": "PyInstanceMethod_Function", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyInstanceMethod_Function.im", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyInstanceMethod_Function", "dispname": "-"}, {"name": "PyInstanceMethod_GET_FUNCTION", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyInstanceMethod_GET_FUNCTION.im", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyInstanceMethod_GET_FUNCTION", "dispname": "-"}, {"name": "PyInstanceMethod_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyInstanceMethod_New.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyInstanceMethod_New", "dispname": "-"}, {"name": "PyInstanceMethod_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_Clear", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_Clear.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyInterpreterState_Clear", "dispname": "-"}, {"name": "PyInterpreterState_Delete", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_Delete.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyInterpreterState_Delete", "dispname": "-"}, {"name": "PyInterpreterState_Get", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_GetDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_GetDict.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyInterpreterState_GetDict", "dispname": "-"}, {"name": "PyInterpreterState_GetID", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_GetID.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyInterpreterState_GetID", "dispname": "-"}, {"name": "PyInterpreterState_Head", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_Main", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_Next", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_Next.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyInterpreterState_Next", "dispname": "-"}, {"name": "PyInterpreterState_ThreadHead", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyInterpreterState_ThreadHead.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyInterpreterState_ThreadHead", "dispname": "-"}, {"name": "PyIter_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iter.html#c.$", "dispname": "-"}, {"name": "PyIter_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iter.html#c.PyIter_Check", "dispname": "-"}, {"name": "PyIter_Next", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iter.html#c.$", "dispname": "-"}, {"name": "PyIter_Next.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iter.html#c.PyIter_Next", "dispname": "-"}, {"name": "PyIter_Send", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iter.html#c.$", "dispname": "-"}, {"name": "PyIter_Send.arg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iter.html#c.PyIter_Send", "dispname": "-"}, {"name": "PyIter_Send.iter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iter.html#c.PyIter_Send", "dispname": "-"}, {"name": "PyIter_Send.presult", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iter.html#c.PyIter_Send", "dispname": "-"}, {"name": "PyListObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Append", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Append.item", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Append", "dispname": "-"}, {"name": "PyList_Append.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Append", "dispname": "-"}, {"name": "PyList_AsTuple", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_AsTuple.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_AsTuple", "dispname": "-"}, {"name": "PyList_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Check", "dispname": "-"}, {"name": "PyList_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_CheckExact", "dispname": "-"}, {"name": "PyList_GET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_GET_ITEM.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GET_ITEM", "dispname": "-"}, {"name": "PyList_GET_ITEM.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GET_ITEM", "dispname": "-"}, {"name": "PyList_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_GET_SIZE.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GET_SIZE", "dispname": "-"}, {"name": "PyList_GetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_GetItem.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GetItem", "dispname": "-"}, {"name": "PyList_GetItem.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GetItem", "dispname": "-"}, {"name": "PyList_GetSlice", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_GetSlice.high", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GetSlice", "dispname": "-"}, {"name": "PyList_GetSlice.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GetSlice", "dispname": "-"}, {"name": "PyList_GetSlice.low", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_GetSlice", "dispname": "-"}, {"name": "PyList_Insert", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Insert.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Insert", "dispname": "-"}, {"name": "PyList_Insert.item", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Insert", "dispname": "-"}, {"name": "PyList_Insert.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Insert", "dispname": "-"}, {"name": "PyList_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_New.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_New", "dispname": "-"}, {"name": "PyList_Reverse", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Reverse.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Reverse", "dispname": "-"}, {"name": "PyList_SET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_SET_ITEM.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SET_ITEM", "dispname": "-"}, {"name": "PyList_SET_ITEM.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SET_ITEM", "dispname": "-"}, {"name": "PyList_SET_ITEM.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SET_ITEM", "dispname": "-"}, {"name": "PyList_SetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_SetItem.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetItem", "dispname": "-"}, {"name": "PyList_SetItem.item", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetItem", "dispname": "-"}, {"name": "PyList_SetItem.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetItem", "dispname": "-"}, {"name": "PyList_SetSlice", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_SetSlice.high", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetSlice", "dispname": "-"}, {"name": "PyList_SetSlice.itemlist", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetSlice", "dispname": "-"}, {"name": "PyList_SetSlice.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetSlice", "dispname": "-"}, {"name": "PyList_SetSlice.low", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_SetSlice", "dispname": "-"}, {"name": "PyList_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Size.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Size", "dispname": "-"}, {"name": "PyList_Sort", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyList_Sort.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/list.html#c.PyList_Sort", "dispname": "-"}, {"name": "PyList_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/list.html#c.$", "dispname": "-"}, {"name": "PyLongObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsDouble", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsDouble.pylong", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsDouble", "dispname": "-"}, {"name": "PyLong_AsLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsLong.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsLong", "dispname": "-"}, {"name": "PyLong_AsLongAndOverflow", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsLongAndOverflow.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsLongAndOverflow", "dispname": "-"}, {"name": "PyLong_AsLongAndOverflow.overflow", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsLongAndOverflow", "dispname": "-"}, {"name": "PyLong_AsLongLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsLongLong.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsLongLong", "dispname": "-"}, {"name": "PyLong_AsLongLongAndOverflow", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsLongLongAndOverflow.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsLongLongAndOverflow", "dispname": "-"}, {"name": "PyLong_AsLongLongAndOverflow.overflow", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsLongLongAndOverflow", "dispname": "-"}, {"name": "PyLong_AsSize_t", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsSize_t.pylong", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsSize_t", "dispname": "-"}, {"name": "PyLong_AsSsize_t", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsSsize_t.pylong", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsSsize_t", "dispname": "-"}, {"name": "PyLong_AsUnsignedLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsUnsignedLong.pylong", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsUnsignedLong", "dispname": "-"}, {"name": "PyLong_AsUnsignedLongLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsUnsignedLongLong.pylong", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsUnsignedLongLong", "dispname": "-"}, {"name": "PyLong_AsUnsignedLongLongMask", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsUnsignedLongLongMask.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsUnsignedLongLongMask", "dispname": "-"}, {"name": "PyLong_AsUnsignedLongMask", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsUnsignedLongMask.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsUnsignedLongMask", "dispname": "-"}, {"name": "PyLong_AsVoidPtr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_AsVoidPtr.pylong", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_AsVoidPtr", "dispname": "-"}, {"name": "PyLong_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_Check", "dispname": "-"}, {"name": "PyLong_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_CheckExact", "dispname": "-"}, {"name": "PyLong_FromDouble", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromDouble.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromDouble", "dispname": "-"}, {"name": "PyLong_FromLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromLong.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromLong", "dispname": "-"}, {"name": "PyLong_FromLongLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromLongLong.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromLongLong", "dispname": "-"}, {"name": "PyLong_FromSize_t", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromSize_t.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromSize_t", "dispname": "-"}, {"name": "PyLong_FromSsize_t", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromSsize_t.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromSsize_t", "dispname": "-"}, {"name": "PyLong_FromString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromString.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromString", "dispname": "-"}, {"name": "PyLong_FromString.pend", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromString", "dispname": "-"}, {"name": "PyLong_FromString.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromString", "dispname": "-"}, {"name": "PyLong_FromUnicodeObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromUnicodeObject.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromUnicodeObject", "dispname": "-"}, {"name": "PyLong_FromUnicodeObject.u", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromUnicodeObject", "dispname": "-"}, {"name": "PyLong_FromUnsignedLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromUnsignedLong.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromUnsignedLong", "dispname": "-"}, {"name": "PyLong_FromUnsignedLongLong", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromUnsignedLongLong.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromUnsignedLongLong", "dispname": "-"}, {"name": "PyLong_FromVoidPtr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyLong_FromVoidPtr.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/long.html#c.PyLong_FromVoidPtr", "dispname": "-"}, {"name": "PyLong_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/long.html#c.$", "dispname": "-"}, {"name": "PyMappingMethods", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyMappingMethods.mp_ass_subscript", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyMappingMethods.mp_length", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyMappingMethods.mp_subscript", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyMapping_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_Check", "dispname": "-"}, {"name": "PyMapping_DelItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_DelItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_DelItem", "dispname": "-"}, {"name": "PyMapping_DelItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_DelItem", "dispname": "-"}, {"name": "PyMapping_DelItemString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_DelItemString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_DelItemString", "dispname": "-"}, {"name": "PyMapping_DelItemString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_DelItemString", "dispname": "-"}, {"name": "PyMapping_GetItemString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_GetItemString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_GetItemString", "dispname": "-"}, {"name": "PyMapping_GetItemString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_GetItemString", "dispname": "-"}, {"name": "PyMapping_HasKey", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_HasKey.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_HasKey", "dispname": "-"}, {"name": "PyMapping_HasKey.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_HasKey", "dispname": "-"}, {"name": "PyMapping_HasKeyString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_HasKeyString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_HasKeyString", "dispname": "-"}, {"name": "PyMapping_HasKeyString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_HasKeyString", "dispname": "-"}, {"name": "PyMapping_Items", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_Items.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_Items", "dispname": "-"}, {"name": "PyMapping_Keys", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_Keys.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_Keys", "dispname": "-"}, {"name": "PyMapping_Length", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_Length.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_Length", "dispname": "-"}, {"name": "PyMapping_SetItemString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_SetItemString.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_SetItemString", "dispname": "-"}, {"name": "PyMapping_SetItemString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_SetItemString", "dispname": "-"}, {"name": "PyMapping_SetItemString.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_SetItemString", "dispname": "-"}, {"name": "PyMapping_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_Size.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_Size", "dispname": "-"}, {"name": "PyMapping_Values", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/mapping.html#c.$", "dispname": "-"}, {"name": "PyMapping_Values.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/mapping.html#c.PyMapping_Values", "dispname": "-"}, {"name": "PyMarshal_ReadLastObjectFromFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_ReadLastObjectFromFile.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_ReadLastObjectFromFile", "dispname": "-"}, {"name": "PyMarshal_ReadLongFromFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_ReadLongFromFile.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_ReadLongFromFile", "dispname": "-"}, {"name": "PyMarshal_ReadObjectFromFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_ReadObjectFromFile.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_ReadObjectFromFile", "dispname": "-"}, {"name": "PyMarshal_ReadObjectFromString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_ReadObjectFromString.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_ReadObjectFromString", "dispname": "-"}, {"name": "PyMarshal_ReadObjectFromString.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_ReadObjectFromString", "dispname": "-"}, {"name": "PyMarshal_ReadShortFromFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_ReadShortFromFile.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_ReadShortFromFile", "dispname": "-"}, {"name": "PyMarshal_WriteLongToFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_WriteLongToFile.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteLongToFile", "dispname": "-"}, {"name": "PyMarshal_WriteLongToFile.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteLongToFile", "dispname": "-"}, {"name": "PyMarshal_WriteLongToFile.version", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteLongToFile", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToFile.file", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteObjectToFile", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToFile.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteObjectToFile", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToFile.version", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteObjectToFile", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/marshal.html#c.$", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToString.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteObjectToString", "dispname": "-"}, {"name": "PyMarshal_WriteObjectToString.version", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/marshal.html#c.PyMarshal_WriteObjectToString", "dispname": "-"}, {"name": "PyMemAllocatorDomain", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMemAllocatorDomain.PYMEM_DOMAIN_MEM", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMemAllocatorDomain.PYMEM_DOMAIN_OBJ", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMemAllocatorDomain.PYMEM_DOMAIN_RAW", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMemAllocatorEx", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Calloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Calloc.elsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Calloc", "dispname": "-"}, {"name": "PyMem_Calloc.nelem", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Calloc", "dispname": "-"}, {"name": "PyMem_Del", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Del.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Del", "dispname": "-"}, {"name": "PyMem_Free", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Free.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Free", "dispname": "-"}, {"name": "PyMem_GetAllocator", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_GetAllocator.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_GetAllocator", "dispname": "-"}, {"name": "PyMem_GetAllocator.domain", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_GetAllocator", "dispname": "-"}, {"name": "PyMem_Malloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Malloc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Malloc", "dispname": "-"}, {"name": "PyMem_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_New.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_New", "dispname": "-"}, {"name": "PyMem_RawCalloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_RawCalloc.elsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_RawCalloc", "dispname": "-"}, {"name": "PyMem_RawCalloc.nelem", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_RawCalloc", "dispname": "-"}, {"name": "PyMem_RawFree", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_RawFree.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_RawFree", "dispname": "-"}, {"name": "PyMem_RawMalloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_RawMalloc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_RawMalloc", "dispname": "-"}, {"name": "PyMem_RawRealloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_RawRealloc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_RawRealloc", "dispname": "-"}, {"name": "PyMem_RawRealloc.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_RawRealloc", "dispname": "-"}, {"name": "PyMem_Realloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Realloc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Realloc", "dispname": "-"}, {"name": "PyMem_Realloc.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Realloc", "dispname": "-"}, {"name": "PyMem_Resize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_Resize.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Resize", "dispname": "-"}, {"name": "PyMem_Resize.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_Resize", "dispname": "-"}, {"name": "PyMem_SetAllocator", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMem_SetAllocator.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_SetAllocator", "dispname": "-"}, {"name": "PyMem_SetAllocator.domain", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyMem_SetAllocator", "dispname": "-"}, {"name": "PyMem_SetupDebugHooks", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyMemberDef", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMember_GetOne", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMember_GetOne.m", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.PyMember_GetOne", "dispname": "-"}, {"name": "PyMember_GetOne.obj_addr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.PyMember_GetOne", "dispname": "-"}, {"name": "PyMember_SetOne", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMember_SetOne.m", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.PyMember_SetOne", "dispname": "-"}, {"name": "PyMember_SetOne.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.PyMember_SetOne", "dispname": "-"}, {"name": "PyMember_SetOne.obj_addr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.PyMember_SetOne", "dispname": "-"}, {"name": "PyMemoryView_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_Check.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_Check", "dispname": "-"}, {"name": "PyMemoryView_FromBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_FromBuffer.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_FromBuffer", "dispname": "-"}, {"name": "PyMemoryView_FromMemory", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_FromMemory.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_FromMemory", "dispname": "-"}, {"name": "PyMemoryView_FromMemory.mem", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_FromMemory", "dispname": "-"}, {"name": "PyMemoryView_FromMemory.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_FromMemory", "dispname": "-"}, {"name": "PyMemoryView_FromObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_FromObject.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_FromObject", "dispname": "-"}, {"name": "PyMemoryView_GET_BASE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_GET_BASE.mview", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_GET_BASE", "dispname": "-"}, {"name": "PyMemoryView_GET_BUFFER", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_GET_BUFFER.mview", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_GET_BUFFER", "dispname": "-"}, {"name": "PyMemoryView_GetContiguous", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memoryview.html#c.$", "dispname": "-"}, {"name": "PyMemoryView_GetContiguous.buffertype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_GetContiguous", "dispname": "-"}, {"name": "PyMemoryView_GetContiguous.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_GetContiguous", "dispname": "-"}, {"name": "PyMemoryView_GetContiguous.order", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memoryview.html#c.PyMemoryView_GetContiguous", "dispname": "-"}, {"name": "PyMethodDef", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMethodDef.ml_doc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMethodDef.ml_flags", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMethodDef.ml_meth", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMethodDef.ml_name", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyMethod_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyMethod_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_Check", "dispname": "-"}, {"name": "PyMethod_Function", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyMethod_Function.meth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_Function", "dispname": "-"}, {"name": "PyMethod_GET_FUNCTION", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyMethod_GET_FUNCTION.meth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_GET_FUNCTION", "dispname": "-"}, {"name": "PyMethod_GET_SELF", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyMethod_GET_SELF.meth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_GET_SELF", "dispname": "-"}, {"name": "PyMethod_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyMethod_New.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_New", "dispname": "-"}, {"name": "PyMethod_New.self", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_New", "dispname": "-"}, {"name": "PyMethod_Self", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyMethod_Self.meth", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/method.html#c.PyMethod_Self", "dispname": "-"}, {"name": "PyMethod_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/method.html#c.$", "dispname": "-"}, {"name": "PyModuleDef", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_base", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_clear", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_doc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_free", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_methods", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_name", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_size", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_slots", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_slots.m_reload", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef.m_traverse", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef_Init", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef_Init.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModuleDef_Init", "dispname": "-"}, {"name": "PyModuleDef_Slot", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef_Slot.slot", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModuleDef_Slot.value", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddFunctions", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddFunctions.functions", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddFunctions", "dispname": "-"}, {"name": "PyModule_AddFunctions.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddFunctions", "dispname": "-"}, {"name": "PyModule_AddIntConstant", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddIntConstant.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddIntConstant", "dispname": "-"}, {"name": "PyModule_AddIntConstant.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddIntConstant", "dispname": "-"}, {"name": "PyModule_AddIntConstant.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddIntConstant", "dispname": "-"}, {"name": "PyModule_AddIntMacro", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddIntMacro.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddIntMacro", "dispname": "-"}, {"name": "PyModule_AddObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddObject.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddObject", "dispname": "-"}, {"name": "PyModule_AddObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddObject", "dispname": "-"}, {"name": "PyModule_AddObject.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddObject", "dispname": "-"}, {"name": "PyModule_AddObjectRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddObjectRef.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddObjectRef", "dispname": "-"}, {"name": "PyModule_AddObjectRef.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddObjectRef", "dispname": "-"}, {"name": "PyModule_AddObjectRef.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddObjectRef", "dispname": "-"}, {"name": "PyModule_AddStringConstant", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddStringConstant.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddStringConstant", "dispname": "-"}, {"name": "PyModule_AddStringConstant.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddStringConstant", "dispname": "-"}, {"name": "PyModule_AddStringConstant.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddStringConstant", "dispname": "-"}, {"name": "PyModule_AddStringMacro", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddStringMacro.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddStringMacro", "dispname": "-"}, {"name": "PyModule_AddType", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_AddType.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddType", "dispname": "-"}, {"name": "PyModule_AddType.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_AddType", "dispname": "-"}, {"name": "PyModule_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_Check", "dispname": "-"}, {"name": "PyModule_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_CheckExact", "dispname": "-"}, {"name": "PyModule_Create", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_Create.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_Create", "dispname": "-"}, {"name": "PyModule_Create2", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_Create2.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_Create2", "dispname": "-"}, {"name": "PyModule_Create2.module_api_version", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_Create2", "dispname": "-"}, {"name": "PyModule_ExecDef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_ExecDef.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_ExecDef", "dispname": "-"}, {"name": "PyModule_ExecDef.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_ExecDef", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_FromDefAndSpec", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_FromDefAndSpec", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec2", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec2.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_FromDefAndSpec2", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec2.module_api_version", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_FromDefAndSpec2", "dispname": "-"}, {"name": "PyModule_FromDefAndSpec2.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_FromDefAndSpec2", "dispname": "-"}, {"name": "PyModule_GetDef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetDef.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetDef", "dispname": "-"}, {"name": "PyModule_GetDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetDict.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetDict", "dispname": "-"}, {"name": "PyModule_GetFilename", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetFilename.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetFilename", "dispname": "-"}, {"name": "PyModule_GetFilenameObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetFilenameObject.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetFilenameObject", "dispname": "-"}, {"name": "PyModule_GetName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetName.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetName", "dispname": "-"}, {"name": "PyModule_GetNameObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetNameObject.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetNameObject", "dispname": "-"}, {"name": "PyModule_GetState", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_GetState.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_GetState", "dispname": "-"}, {"name": "PyModule_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_New.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_New", "dispname": "-"}, {"name": "PyModule_NewObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_NewObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_NewObject", "dispname": "-"}, {"name": "PyModule_SetDocString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyModule_SetDocString.docstring", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_SetDocString", "dispname": "-"}, {"name": "PyModule_SetDocString.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyModule_SetDocString", "dispname": "-"}, {"name": "PyModule_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_absolute", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_add", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_and", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_bool", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_divmod", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_float", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_floor_divide", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_index", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_add", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_and", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_floor_divide", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_lshift", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_matrix_multiply", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_multiply", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_or", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_power", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_remainder", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_rshift", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_subtract", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_true_divide", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_inplace_xor", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_int", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_invert", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_lshift", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_matrix_multiply", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_multiply", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_negative", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_or", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_positive", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_power", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_remainder", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_reserved", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_rshift", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_subtract", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_true_divide", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumberMethods.nb_xor", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyNumber_Absolute", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Absolute.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Absolute", "dispname": "-"}, {"name": "PyNumber_Add", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Add.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Add", "dispname": "-"}, {"name": "PyNumber_Add.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Add", "dispname": "-"}, {"name": "PyNumber_And", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_And.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_And", "dispname": "-"}, {"name": "PyNumber_And.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_And", "dispname": "-"}, {"name": "PyNumber_AsSsize_t", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_AsSsize_t.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_AsSsize_t", "dispname": "-"}, {"name": "PyNumber_AsSsize_t.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_AsSsize_t", "dispname": "-"}, {"name": "PyNumber_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Check", "dispname": "-"}, {"name": "PyNumber_Divmod", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Divmod.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Divmod", "dispname": "-"}, {"name": "PyNumber_Divmod.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Divmod", "dispname": "-"}, {"name": "PyNumber_Float", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Float.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Float", "dispname": "-"}, {"name": "PyNumber_FloorDivide", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_FloorDivide.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_FloorDivide", "dispname": "-"}, {"name": "PyNumber_FloorDivide.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_FloorDivide", "dispname": "-"}, {"name": "PyNumber_InPlaceAdd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceAdd.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceAdd", "dispname": "-"}, {"name": "PyNumber_InPlaceAdd.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceAdd", "dispname": "-"}, {"name": "PyNumber_InPlaceAnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceAnd.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceAnd", "dispname": "-"}, {"name": "PyNumber_InPlaceAnd.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceAnd", "dispname": "-"}, {"name": "PyNumber_InPlaceFloorDivide", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceFloorDivide.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceFloorDivide", "dispname": "-"}, {"name": "PyNumber_InPlaceFloorDivide.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceFloorDivide", "dispname": "-"}, {"name": "PyNumber_InPlaceLshift", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceLshift.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceLshift", "dispname": "-"}, {"name": "PyNumber_InPlaceLshift.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceLshift", "dispname": "-"}, {"name": "PyNumber_InPlaceMatrixMultiply", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceMatrixMultiply.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceMatrixMultiply", "dispname": "-"}, {"name": "PyNumber_InPlaceMatrixMultiply.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceMatrixMultiply", "dispname": "-"}, {"name": "PyNumber_InPlaceMultiply", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceMultiply.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceMultiply", "dispname": "-"}, {"name": "PyNumber_InPlaceMultiply.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceMultiply", "dispname": "-"}, {"name": "PyNumber_InPlaceOr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceOr.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceOr", "dispname": "-"}, {"name": "PyNumber_InPlaceOr.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceOr", "dispname": "-"}, {"name": "PyNumber_InPlacePower", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlacePower.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlacePower", "dispname": "-"}, {"name": "PyNumber_InPlacePower.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlacePower", "dispname": "-"}, {"name": "PyNumber_InPlacePower.o3", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlacePower", "dispname": "-"}, {"name": "PyNumber_InPlaceRemainder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceRemainder.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceRemainder", "dispname": "-"}, {"name": "PyNumber_InPlaceRemainder.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceRemainder", "dispname": "-"}, {"name": "PyNumber_InPlaceRshift", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceRshift.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceRshift", "dispname": "-"}, {"name": "PyNumber_InPlaceRshift.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceRshift", "dispname": "-"}, {"name": "PyNumber_InPlaceSubtract", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceSubtract.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceSubtract", "dispname": "-"}, {"name": "PyNumber_InPlaceSubtract.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceSubtract", "dispname": "-"}, {"name": "PyNumber_InPlaceTrueDivide", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceTrueDivide.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceTrueDivide", "dispname": "-"}, {"name": "PyNumber_InPlaceTrueDivide.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceTrueDivide", "dispname": "-"}, {"name": "PyNumber_InPlaceXor", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_InPlaceXor.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceXor", "dispname": "-"}, {"name": "PyNumber_InPlaceXor.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_InPlaceXor", "dispname": "-"}, {"name": "PyNumber_Index", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Index.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Index", "dispname": "-"}, {"name": "PyNumber_Invert", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Invert.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Invert", "dispname": "-"}, {"name": "PyNumber_Long", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Long.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Long", "dispname": "-"}, {"name": "PyNumber_Lshift", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Lshift.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Lshift", "dispname": "-"}, {"name": "PyNumber_Lshift.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Lshift", "dispname": "-"}, {"name": "PyNumber_MatrixMultiply", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_MatrixMultiply.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_MatrixMultiply", "dispname": "-"}, {"name": "PyNumber_MatrixMultiply.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_MatrixMultiply", "dispname": "-"}, {"name": "PyNumber_Multiply", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Multiply.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Multiply", "dispname": "-"}, {"name": "PyNumber_Multiply.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Multiply", "dispname": "-"}, {"name": "PyNumber_Negative", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Negative.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Negative", "dispname": "-"}, {"name": "PyNumber_Or", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Or.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Or", "dispname": "-"}, {"name": "PyNumber_Or.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Or", "dispname": "-"}, {"name": "PyNumber_Positive", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Positive.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Positive", "dispname": "-"}, {"name": "PyNumber_Power", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Power.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Power", "dispname": "-"}, {"name": "PyNumber_Power.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Power", "dispname": "-"}, {"name": "PyNumber_Power.o3", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Power", "dispname": "-"}, {"name": "PyNumber_Remainder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Remainder.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Remainder", "dispname": "-"}, {"name": "PyNumber_Remainder.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Remainder", "dispname": "-"}, {"name": "PyNumber_Rshift", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Rshift.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Rshift", "dispname": "-"}, {"name": "PyNumber_Rshift.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Rshift", "dispname": "-"}, {"name": "PyNumber_Subtract", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Subtract.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Subtract", "dispname": "-"}, {"name": "PyNumber_Subtract.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Subtract", "dispname": "-"}, {"name": "PyNumber_ToBase", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_ToBase.base", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_ToBase", "dispname": "-"}, {"name": "PyNumber_ToBase.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_ToBase", "dispname": "-"}, {"name": "PyNumber_TrueDivide", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_TrueDivide.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_TrueDivide", "dispname": "-"}, {"name": "PyNumber_TrueDivide.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_TrueDivide", "dispname": "-"}, {"name": "PyNumber_Xor", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/number.html#c.$", "dispname": "-"}, {"name": "PyNumber_Xor.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Xor", "dispname": "-"}, {"name": "PyNumber_Xor.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/number.html#c.PyNumber_Xor", "dispname": "-"}, {"name": "PyOS_AfterFork", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_AfterFork_Child", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_AfterFork_Parent", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_BeforeFork", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_CheckStack", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_FSPath", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_FSPath.path", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PyOS_FSPath", "dispname": "-"}, {"name": "PyOS_InputHook", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyOS_ReadlineFunctionPointer", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyOS_double_to_string", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/conversion.html#c.$", "dispname": "-"}, {"name": "PyOS_double_to_string.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_double_to_string", "dispname": "-"}, {"name": "PyOS_double_to_string.format_code", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_double_to_string", "dispname": "-"}, {"name": "PyOS_double_to_string.precision", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_double_to_string", "dispname": "-"}, {"name": "PyOS_double_to_string.ptype", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_double_to_string", "dispname": "-"}, {"name": "PyOS_double_to_string.val", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_double_to_string", "dispname": "-"}, {"name": "PyOS_getsig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_getsig.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PyOS_getsig", "dispname": "-"}, {"name": "PyOS_setsig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PyOS_setsig.h", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PyOS_setsig", "dispname": "-"}, {"name": "PyOS_setsig.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PyOS_setsig", "dispname": "-"}, {"name": "PyOS_snprintf", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/conversion.html#c.$", "dispname": "-"}, {"name": "PyOS_snprintf.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_snprintf", "dispname": "-"}, {"name": "PyOS_snprintf.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_snprintf", "dispname": "-"}, {"name": "PyOS_snprintf.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_snprintf", "dispname": "-"}, {"name": "PyOS_stricmp", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/conversion.html#c.$", "dispname": "-"}, {"name": "PyOS_stricmp.s1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_stricmp", "dispname": "-"}, {"name": "PyOS_stricmp.s2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_stricmp", "dispname": "-"}, {"name": "PyOS_string_to_double", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/conversion.html#c.$", "dispname": "-"}, {"name": "PyOS_string_to_double.endptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_string_to_double", "dispname": "-"}, {"name": "PyOS_string_to_double.overflow_exception", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_string_to_double", "dispname": "-"}, {"name": "PyOS_string_to_double.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_string_to_double", "dispname": "-"}, {"name": "PyOS_strnicmp", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/conversion.html#c.$", "dispname": "-"}, {"name": "PyOS_strnicmp.s1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_strnicmp", "dispname": "-"}, {"name": "PyOS_strnicmp.s2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_strnicmp", "dispname": "-"}, {"name": "PyOS_strnicmp.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_strnicmp", "dispname": "-"}, {"name": "PyOS_vsnprintf", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/conversion.html#c.$", "dispname": "-"}, {"name": "PyOS_vsnprintf.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_vsnprintf", "dispname": "-"}, {"name": "PyOS_vsnprintf.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_vsnprintf", "dispname": "-"}, {"name": "PyOS_vsnprintf.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_vsnprintf", "dispname": "-"}, {"name": "PyOS_vsnprintf.va", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/conversion.html#c.PyOS_vsnprintf", "dispname": "-"}, {"name": "PyObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyObject._ob_next", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyObject._ob_prev", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyObject.ob_refcnt", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyObject.ob_type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyObjectArenaAllocator", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_ASCII", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_ASCII.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_ASCII", "dispname": "-"}, {"name": "PyObject_AsCharBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/objbuffer.html#c.$", "dispname": "-"}, {"name": "PyObject_AsCharBuffer.buffer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsCharBuffer", "dispname": "-"}, {"name": "PyObject_AsCharBuffer.buffer_len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsCharBuffer", "dispname": "-"}, {"name": "PyObject_AsCharBuffer.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsCharBuffer", "dispname": "-"}, {"name": "PyObject_AsFileDescriptor", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/file.html#c.$", "dispname": "-"}, {"name": "PyObject_AsFileDescriptor.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/file.html#c.PyObject_AsFileDescriptor", "dispname": "-"}, {"name": "PyObject_AsReadBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/objbuffer.html#c.$", "dispname": "-"}, {"name": "PyObject_AsReadBuffer.buffer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsReadBuffer", "dispname": "-"}, {"name": "PyObject_AsReadBuffer.buffer_len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsReadBuffer", "dispname": "-"}, {"name": "PyObject_AsReadBuffer.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsReadBuffer", "dispname": "-"}, {"name": "PyObject_AsWriteBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/objbuffer.html#c.$", "dispname": "-"}, {"name": "PyObject_AsWriteBuffer.buffer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsWriteBuffer", "dispname": "-"}, {"name": "PyObject_AsWriteBuffer.buffer_len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsWriteBuffer", "dispname": "-"}, {"name": "PyObject_AsWriteBuffer.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_AsWriteBuffer", "dispname": "-"}, {"name": "PyObject_Bytes", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Bytes.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Bytes", "dispname": "-"}, {"name": "PyObject_Call", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_Call.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Call", "dispname": "-"}, {"name": "PyObject_Call.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Call", "dispname": "-"}, {"name": "PyObject_Call.kwargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Call", "dispname": "-"}, {"name": "PyObject_CallFunction", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallFunction.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallFunction", "dispname": "-"}, {"name": "PyObject_CallFunction.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallFunction", "dispname": "-"}, {"name": "PyObject_CallFunctionObjArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallFunctionObjArgs.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallFunctionObjArgs", "dispname": "-"}, {"name": "PyObject_CallMethod", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallMethod.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethod", "dispname": "-"}, {"name": "PyObject_CallMethod.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethod", "dispname": "-"}, {"name": "PyObject_CallMethod.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethod", "dispname": "-"}, {"name": "PyObject_CallMethodNoArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallMethodNoArgs.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodNoArgs", "dispname": "-"}, {"name": "PyObject_CallMethodNoArgs.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodNoArgs", "dispname": "-"}, {"name": "PyObject_CallMethodObjArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallMethodObjArgs.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodObjArgs", "dispname": "-"}, {"name": "PyObject_CallMethodObjArgs.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodObjArgs", "dispname": "-"}, {"name": "PyObject_CallMethodOneArg", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallMethodOneArg.arg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodOneArg", "dispname": "-"}, {"name": "PyObject_CallMethodOneArg.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodOneArg", "dispname": "-"}, {"name": "PyObject_CallMethodOneArg.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallMethodOneArg", "dispname": "-"}, {"name": "PyObject_CallNoArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallNoArgs.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallNoArgs", "dispname": "-"}, {"name": "PyObject_CallObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallObject.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallObject", "dispname": "-"}, {"name": "PyObject_CallObject.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallObject", "dispname": "-"}, {"name": "PyObject_CallOneArg", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_CallOneArg.arg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallOneArg", "dispname": "-"}, {"name": "PyObject_CallOneArg.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_CallOneArg", "dispname": "-"}, {"name": "PyObject_Calloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_Calloc.elsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_Calloc", "dispname": "-"}, {"name": "PyObject_Calloc.nelem", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_Calloc", "dispname": "-"}, {"name": "PyObject_CheckBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyObject_CheckBuffer.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyObject_CheckBuffer", "dispname": "-"}, {"name": "PyObject_CheckReadBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/objbuffer.html#c.$", "dispname": "-"}, {"name": "PyObject_CheckReadBuffer.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/objbuffer.html#c.PyObject_CheckReadBuffer", "dispname": "-"}, {"name": "PyObject_ClearWeakRefs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyObject_ClearWeakRefs.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyObject_ClearWeakRefs", "dispname": "-"}, {"name": "PyObject_Del", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "PyObject_Del.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_Del", "dispname": "-"}, {"name": "PyObject_DelAttr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_DelAttr.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_DelAttr", "dispname": "-"}, {"name": "PyObject_DelAttr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_DelAttr", "dispname": "-"}, {"name": "PyObject_DelAttrString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_DelAttrString.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_DelAttrString", "dispname": "-"}, {"name": "PyObject_DelAttrString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_DelAttrString", "dispname": "-"}, {"name": "PyObject_DelItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_DelItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_DelItem", "dispname": "-"}, {"name": "PyObject_DelItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_DelItem", "dispname": "-"}, {"name": "PyObject_Dir", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Dir.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Dir", "dispname": "-"}, {"name": "PyObject_Format", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Format.format_spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Format", "dispname": "-"}, {"name": "PyObject_Format.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Format", "dispname": "-"}, {"name": "PyObject_Free", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_Free.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_Free", "dispname": "-"}, {"name": "PyObject_GC_Del", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_Del.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_Del", "dispname": "-"}, {"name": "PyObject_GC_IsFinalized", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_IsFinalized.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_IsFinalized", "dispname": "-"}, {"name": "PyObject_GC_IsTracked", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_IsTracked.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_IsTracked", "dispname": "-"}, {"name": "PyObject_GC_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_New.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_New", "dispname": "-"}, {"name": "PyObject_GC_NewVar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_NewVar.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_NewVar", "dispname": "-"}, {"name": "PyObject_GC_NewVar.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_NewVar", "dispname": "-"}, {"name": "PyObject_GC_Resize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_Resize.newsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_Resize", "dispname": "-"}, {"name": "PyObject_GC_Resize.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_Resize", "dispname": "-"}, {"name": "PyObject_GC_Track", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_Track.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_Track", "dispname": "-"}, {"name": "PyObject_GC_UnTrack", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_GC_UnTrack.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_GC_UnTrack", "dispname": "-"}, {"name": "PyObject_GenericGetAttr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GenericGetAttr.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericGetAttr", "dispname": "-"}, {"name": "PyObject_GenericGetAttr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericGetAttr", "dispname": "-"}, {"name": "PyObject_GenericGetDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GenericGetDict.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericGetDict", "dispname": "-"}, {"name": "PyObject_GenericGetDict.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericGetDict", "dispname": "-"}, {"name": "PyObject_GenericSetAttr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GenericSetAttr.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericSetAttr", "dispname": "-"}, {"name": "PyObject_GenericSetAttr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericSetAttr", "dispname": "-"}, {"name": "PyObject_GenericSetAttr.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericSetAttr", "dispname": "-"}, {"name": "PyObject_GenericSetDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GenericSetDict.context", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericSetDict", "dispname": "-"}, {"name": "PyObject_GenericSetDict.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericSetDict", "dispname": "-"}, {"name": "PyObject_GenericSetDict.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GenericSetDict", "dispname": "-"}, {"name": "PyObject_GetAIter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GetAIter.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetAIter", "dispname": "-"}, {"name": "PyObject_GetArenaAllocator", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_GetArenaAllocator.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_GetArenaAllocator", "dispname": "-"}, {"name": "PyObject_GetAttr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GetAttr.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetAttr", "dispname": "-"}, {"name": "PyObject_GetAttr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetAttr", "dispname": "-"}, {"name": "PyObject_GetAttrString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GetAttrString.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetAttrString", "dispname": "-"}, {"name": "PyObject_GetAttrString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetAttrString", "dispname": "-"}, {"name": "PyObject_GetBuffer", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "PyObject_GetBuffer.exporter", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyObject_GetBuffer", "dispname": "-"}, {"name": "PyObject_GetBuffer.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyObject_GetBuffer", "dispname": "-"}, {"name": "PyObject_GetBuffer.view", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/buffer.html#c.PyObject_GetBuffer", "dispname": "-"}, {"name": "PyObject_GetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GetItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetItem", "dispname": "-"}, {"name": "PyObject_GetItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetItem", "dispname": "-"}, {"name": "PyObject_GetIter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_GetIter.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_GetIter", "dispname": "-"}, {"name": "PyObject_HEAD", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyObject_HEAD_INIT", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyObject_HasAttr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_HasAttr.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_HasAttr", "dispname": "-"}, {"name": "PyObject_HasAttr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_HasAttr", "dispname": "-"}, {"name": "PyObject_HasAttrString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_HasAttrString.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_HasAttrString", "dispname": "-"}, {"name": "PyObject_HasAttrString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_HasAttrString", "dispname": "-"}, {"name": "PyObject_Hash", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Hash.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Hash", "dispname": "-"}, {"name": "PyObject_HashNotImplemented", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_HashNotImplemented.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_HashNotImplemented", "dispname": "-"}, {"name": "PyObject_IS_GC", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "PyObject_IS_GC.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.PyObject_IS_GC", "dispname": "-"}, {"name": "PyObject_Init", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "PyObject_Init.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_Init", "dispname": "-"}, {"name": "PyObject_Init.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_Init", "dispname": "-"}, {"name": "PyObject_InitVar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "PyObject_InitVar.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_InitVar", "dispname": "-"}, {"name": "PyObject_InitVar.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_InitVar", "dispname": "-"}, {"name": "PyObject_InitVar.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_InitVar", "dispname": "-"}, {"name": "PyObject_IsInstance", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_IsInstance.cls", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_IsInstance", "dispname": "-"}, {"name": "PyObject_IsInstance.inst", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_IsInstance", "dispname": "-"}, {"name": "PyObject_IsSubclass", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_IsSubclass.cls", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_IsSubclass", "dispname": "-"}, {"name": "PyObject_IsSubclass.derived", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_IsSubclass", "dispname": "-"}, {"name": "PyObject_IsTrue", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_IsTrue.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_IsTrue", "dispname": "-"}, {"name": "PyObject_Length", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Length.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Length", "dispname": "-"}, {"name": "PyObject_LengthHint", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_LengthHint.defaultvalue", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_LengthHint", "dispname": "-"}, {"name": "PyObject_LengthHint.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_LengthHint", "dispname": "-"}, {"name": "PyObject_Malloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_Malloc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_Malloc", "dispname": "-"}, {"name": "PyObject_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "PyObject_New.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_New", "dispname": "-"}, {"name": "PyObject_NewVar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "PyObject_NewVar.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_NewVar", "dispname": "-"}, {"name": "PyObject_NewVar.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c.PyObject_NewVar", "dispname": "-"}, {"name": "PyObject_Not", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Not.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Not", "dispname": "-"}, {"name": "PyObject_Print", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Print.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Print", "dispname": "-"}, {"name": "PyObject_Print.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Print", "dispname": "-"}, {"name": "PyObject_Print.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Print", "dispname": "-"}, {"name": "PyObject_Realloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_Realloc.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_Realloc", "dispname": "-"}, {"name": "PyObject_Realloc.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_Realloc", "dispname": "-"}, {"name": "PyObject_Repr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Repr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Repr", "dispname": "-"}, {"name": "PyObject_RichCompare", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_RichCompare.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_RichCompare", "dispname": "-"}, {"name": "PyObject_RichCompare.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_RichCompare", "dispname": "-"}, {"name": "PyObject_RichCompare.opid", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_RichCompare", "dispname": "-"}, {"name": "PyObject_RichCompareBool", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_RichCompareBool.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_RichCompareBool", "dispname": "-"}, {"name": "PyObject_RichCompareBool.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_RichCompareBool", "dispname": "-"}, {"name": "PyObject_RichCompareBool.opid", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_RichCompareBool", "dispname": "-"}, {"name": "PyObject_SetArenaAllocator", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyObject_SetArenaAllocator.allocator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyObject_SetArenaAllocator", "dispname": "-"}, {"name": "PyObject_SetAttr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_SetAttr.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetAttr", "dispname": "-"}, {"name": "PyObject_SetAttr.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetAttr", "dispname": "-"}, {"name": "PyObject_SetAttr.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetAttr", "dispname": "-"}, {"name": "PyObject_SetAttrString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_SetAttrString.attr_name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetAttrString", "dispname": "-"}, {"name": "PyObject_SetAttrString.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetAttrString", "dispname": "-"}, {"name": "PyObject_SetAttrString.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetAttrString", "dispname": "-"}, {"name": "PyObject_SetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_SetItem.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetItem", "dispname": "-"}, {"name": "PyObject_SetItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetItem", "dispname": "-"}, {"name": "PyObject_SetItem.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_SetItem", "dispname": "-"}, {"name": "PyObject_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Size.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Size", "dispname": "-"}, {"name": "PyObject_Str", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Str.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Str", "dispname": "-"}, {"name": "PyObject_Type", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_Type.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_Type", "dispname": "-"}, {"name": "PyObject_TypeCheck", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "PyObject_TypeCheck.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_TypeCheck", "dispname": "-"}, {"name": "PyObject_TypeCheck.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/object.html#c.PyObject_TypeCheck", "dispname": "-"}, {"name": "PyObject_VAR_HEAD", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyObject_Vectorcall", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_Vectorcall.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Vectorcall", "dispname": "-"}, {"name": "PyObject_Vectorcall.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Vectorcall", "dispname": "-"}, {"name": "PyObject_Vectorcall.kwnames", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Vectorcall", "dispname": "-"}, {"name": "PyObject_Vectorcall.nargsf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_Vectorcall", "dispname": "-"}, {"name": "PyObject_VectorcallDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_VectorcallDict.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallDict", "dispname": "-"}, {"name": "PyObject_VectorcallDict.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallDict", "dispname": "-"}, {"name": "PyObject_VectorcallDict.kwdict", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallDict", "dispname": "-"}, {"name": "PyObject_VectorcallDict.nargsf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallDict", "dispname": "-"}, {"name": "PyObject_VectorcallMethod", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyObject_VectorcallMethod.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallMethod", "dispname": "-"}, {"name": "PyObject_VectorcallMethod.kwnames", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallMethod", "dispname": "-"}, {"name": "PyObject_VectorcallMethod.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallMethod", "dispname": "-"}, {"name": "PyObject_VectorcallMethod.nargsf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyObject_VectorcallMethod", "dispname": "-"}, {"name": "PyPreConfig", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.PyPreConfig_InitIsolatedConfig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.PyPreConfig_InitIsolatedConfig.preconfig", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyPreConfig.PyPreConfig_InitIsolatedConfig", "dispname": "-"}, {"name": "PyPreConfig.PyPreConfig_InitPythonConfig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.PyPreConfig_InitPythonConfig.preconfig", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyPreConfig.PyPreConfig_InitPythonConfig", "dispname": "-"}, {"name": "PyPreConfig.allocator", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.coerce_c_locale", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.coerce_c_locale_warn", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.configure_locale", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.dev_mode", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.isolated", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.legacy_windows_fs_encoding", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.parse_argv", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.use_environment", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyPreConfig.utf8_mode", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyProperty_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "PyRun_AnyFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_AnyFile.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFile", "dispname": "-"}, {"name": "PyRun_AnyFile.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFile", "dispname": "-"}, {"name": "PyRun_AnyFileEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_AnyFileEx.closeit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileEx", "dispname": "-"}, {"name": "PyRun_AnyFileEx.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileEx", "dispname": "-"}, {"name": "PyRun_AnyFileEx.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileEx", "dispname": "-"}, {"name": "PyRun_AnyFileExFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_AnyFileExFlags.closeit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileExFlags", "dispname": "-"}, {"name": "PyRun_AnyFileExFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileExFlags", "dispname": "-"}, {"name": "PyRun_AnyFileExFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileExFlags", "dispname": "-"}, {"name": "PyRun_AnyFileExFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileExFlags", "dispname": "-"}, {"name": "PyRun_AnyFileFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_AnyFileFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileFlags", "dispname": "-"}, {"name": "PyRun_AnyFileFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileFlags", "dispname": "-"}, {"name": "PyRun_AnyFileFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_AnyFileFlags", "dispname": "-"}, {"name": "PyRun_File", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_File.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_File", "dispname": "-"}, {"name": "PyRun_File.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_File", "dispname": "-"}, {"name": "PyRun_File.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_File", "dispname": "-"}, {"name": "PyRun_File.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_File", "dispname": "-"}, {"name": "PyRun_File.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_File", "dispname": "-"}, {"name": "PyRun_FileEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_FileEx.closeit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileEx", "dispname": "-"}, {"name": "PyRun_FileEx.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileEx", "dispname": "-"}, {"name": "PyRun_FileEx.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileEx", "dispname": "-"}, {"name": "PyRun_FileEx.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileEx", "dispname": "-"}, {"name": "PyRun_FileEx.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileEx", "dispname": "-"}, {"name": "PyRun_FileEx.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileEx", "dispname": "-"}, {"name": "PyRun_FileExFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_FileExFlags.closeit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileExFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileExFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileExFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileExFlags.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileExFlags.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileExFlags.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileExFlags", "dispname": "-"}, {"name": "PyRun_FileFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_FileFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileFlags", "dispname": "-"}, {"name": "PyRun_FileFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileFlags", "dispname": "-"}, {"name": "PyRun_FileFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileFlags", "dispname": "-"}, {"name": "PyRun_FileFlags.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileFlags", "dispname": "-"}, {"name": "PyRun_FileFlags.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileFlags", "dispname": "-"}, {"name": "PyRun_FileFlags.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_FileFlags", "dispname": "-"}, {"name": "PyRun_InteractiveLoop", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_InteractiveLoop.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveLoop", "dispname": "-"}, {"name": "PyRun_InteractiveLoop.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveLoop", "dispname": "-"}, {"name": "PyRun_InteractiveLoopFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_InteractiveLoopFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveLoopFlags", "dispname": "-"}, {"name": "PyRun_InteractiveLoopFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveLoopFlags", "dispname": "-"}, {"name": "PyRun_InteractiveLoopFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveLoopFlags", "dispname": "-"}, {"name": "PyRun_InteractiveOne", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_InteractiveOne.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveOne", "dispname": "-"}, {"name": "PyRun_InteractiveOne.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveOne", "dispname": "-"}, {"name": "PyRun_InteractiveOneFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_InteractiveOneFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveOneFlags", "dispname": "-"}, {"name": "PyRun_InteractiveOneFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveOneFlags", "dispname": "-"}, {"name": "PyRun_InteractiveOneFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_InteractiveOneFlags", "dispname": "-"}, {"name": "PyRun_SimpleFile", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_SimpleFile.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFile", "dispname": "-"}, {"name": "PyRun_SimpleFile.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFile", "dispname": "-"}, {"name": "PyRun_SimpleFileEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_SimpleFileEx.closeit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileEx", "dispname": "-"}, {"name": "PyRun_SimpleFileEx.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileEx", "dispname": "-"}, {"name": "PyRun_SimpleFileEx.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileEx", "dispname": "-"}, {"name": "PyRun_SimpleFileExFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_SimpleFileExFlags.closeit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileExFlags", "dispname": "-"}, {"name": "PyRun_SimpleFileExFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileExFlags", "dispname": "-"}, {"name": "PyRun_SimpleFileExFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileExFlags", "dispname": "-"}, {"name": "PyRun_SimpleFileExFlags.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleFileExFlags", "dispname": "-"}, {"name": "PyRun_SimpleString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_SimpleString.command", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleString", "dispname": "-"}, {"name": "PyRun_SimpleStringFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_SimpleStringFlags.command", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleStringFlags", "dispname": "-"}, {"name": "PyRun_SimpleStringFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_SimpleStringFlags", "dispname": "-"}, {"name": "PyRun_String", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_String.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_String", "dispname": "-"}, {"name": "PyRun_String.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_String", "dispname": "-"}, {"name": "PyRun_String.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_String", "dispname": "-"}, {"name": "PyRun_String.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_String", "dispname": "-"}, {"name": "PyRun_StringFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "PyRun_StringFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_StringFlags", "dispname": "-"}, {"name": "PyRun_StringFlags.globals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_StringFlags", "dispname": "-"}, {"name": "PyRun_StringFlags.locals", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_StringFlags", "dispname": "-"}, {"name": "PyRun_StringFlags.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_StringFlags", "dispname": "-"}, {"name": "PyRun_StringFlags.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.PyRun_StringFlags", "dispname": "-"}, {"name": "PySendResult", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/iter.html#c.$", "dispname": "-"}, {"name": "PySeqIter_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iterator.html#c.$", "dispname": "-"}, {"name": "PySeqIter_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/iterator.html#c.$", "dispname": "-"}, {"name": "PySeqIter_New.seq", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/iterator.html#c.PySeqIter_New", "dispname": "-"}, {"name": "PySeqIter_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/iterator.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_ass_item", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_concat", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_contains", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_inplace_concat", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_inplace_repeat", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_item", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_length", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequenceMethods.sq_repeat", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PySequence_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Check", "dispname": "-"}, {"name": "PySequence_Concat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Concat.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Concat", "dispname": "-"}, {"name": "PySequence_Concat.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Concat", "dispname": "-"}, {"name": "PySequence_Contains", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Contains.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Contains", "dispname": "-"}, {"name": "PySequence_Contains.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Contains", "dispname": "-"}, {"name": "PySequence_Count", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Count.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Count", "dispname": "-"}, {"name": "PySequence_Count.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Count", "dispname": "-"}, {"name": "PySequence_DelItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_DelItem.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_DelItem", "dispname": "-"}, {"name": "PySequence_DelItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_DelItem", "dispname": "-"}, {"name": "PySequence_DelSlice", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_DelSlice.i1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_DelSlice", "dispname": "-"}, {"name": "PySequence_DelSlice.i2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_DelSlice", "dispname": "-"}, {"name": "PySequence_DelSlice.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_DelSlice", "dispname": "-"}, {"name": "PySequence_Fast", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Fast.m", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Fast", "dispname": "-"}, {"name": "PySequence_Fast.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Fast", "dispname": "-"}, {"name": "PySequence_Fast_GET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Fast_GET_ITEM.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Fast_GET_ITEM", "dispname": "-"}, {"name": "PySequence_Fast_GET_ITEM.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Fast_GET_ITEM", "dispname": "-"}, {"name": "PySequence_Fast_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Fast_GET_SIZE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Fast_GET_SIZE", "dispname": "-"}, {"name": "PySequence_Fast_ITEMS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Fast_ITEMS.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Fast_ITEMS", "dispname": "-"}, {"name": "PySequence_GetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_GetItem.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_GetItem", "dispname": "-"}, {"name": "PySequence_GetItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_GetItem", "dispname": "-"}, {"name": "PySequence_GetSlice", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_GetSlice.i1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_GetSlice", "dispname": "-"}, {"name": "PySequence_GetSlice.i2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_GetSlice", "dispname": "-"}, {"name": "PySequence_GetSlice.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_GetSlice", "dispname": "-"}, {"name": "PySequence_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_ITEM.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_ITEM", "dispname": "-"}, {"name": "PySequence_ITEM.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_ITEM", "dispname": "-"}, {"name": "PySequence_InPlaceConcat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_InPlaceConcat.o1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_InPlaceConcat", "dispname": "-"}, {"name": "PySequence_InPlaceConcat.o2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_InPlaceConcat", "dispname": "-"}, {"name": "PySequence_InPlaceRepeat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_InPlaceRepeat.count", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_InPlaceRepeat", "dispname": "-"}, {"name": "PySequence_InPlaceRepeat.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_InPlaceRepeat", "dispname": "-"}, {"name": "PySequence_Index", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Index.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Index", "dispname": "-"}, {"name": "PySequence_Index.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Index", "dispname": "-"}, {"name": "PySequence_Length", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Length.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Length", "dispname": "-"}, {"name": "PySequence_List", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_List.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_List", "dispname": "-"}, {"name": "PySequence_Repeat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Repeat.count", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Repeat", "dispname": "-"}, {"name": "PySequence_Repeat.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Repeat", "dispname": "-"}, {"name": "PySequence_SetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_SetItem.i", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetItem", "dispname": "-"}, {"name": "PySequence_SetItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetItem", "dispname": "-"}, {"name": "PySequence_SetItem.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetItem", "dispname": "-"}, {"name": "PySequence_SetSlice", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_SetSlice.i1", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetSlice", "dispname": "-"}, {"name": "PySequence_SetSlice.i2", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetSlice", "dispname": "-"}, {"name": "PySequence_SetSlice.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetSlice", "dispname": "-"}, {"name": "PySequence_SetSlice.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_SetSlice", "dispname": "-"}, {"name": "PySequence_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Size.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Size", "dispname": "-"}, {"name": "PySequence_Tuple", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sequence.html#c.$", "dispname": "-"}, {"name": "PySequence_Tuple.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sequence.html#c.PySequence_Tuple", "dispname": "-"}, {"name": "PySetObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Add", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Add.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Add", "dispname": "-"}, {"name": "PySet_Add.set", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Add", "dispname": "-"}, {"name": "PySet_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Check", "dispname": "-"}, {"name": "PySet_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_CheckExact", "dispname": "-"}, {"name": "PySet_Clear", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Clear.set", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Clear", "dispname": "-"}, {"name": "PySet_Contains", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Contains.anyset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Contains", "dispname": "-"}, {"name": "PySet_Contains.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Contains", "dispname": "-"}, {"name": "PySet_Discard", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Discard.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Discard", "dispname": "-"}, {"name": "PySet_Discard.set", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Discard", "dispname": "-"}, {"name": "PySet_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_GET_SIZE.anyset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_GET_SIZE", "dispname": "-"}, {"name": "PySet_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_New.iterable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_New", "dispname": "-"}, {"name": "PySet_Pop", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Pop.set", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Pop", "dispname": "-"}, {"name": "PySet_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySet_Size.anyset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/set.html#c.PySet_Size", "dispname": "-"}, {"name": "PySet_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/set.html#c.$", "dispname": "-"}, {"name": "PySignal_SetWakeupFd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PySignal_SetWakeupFd.fd", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PySignal_SetWakeupFd", "dispname": "-"}, {"name": "PySlice_AdjustIndices", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_AdjustIndices.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_AdjustIndices", "dispname": "-"}, {"name": "PySlice_AdjustIndices.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_AdjustIndices", "dispname": "-"}, {"name": "PySlice_AdjustIndices.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_AdjustIndices", "dispname": "-"}, {"name": "PySlice_AdjustIndices.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_AdjustIndices", "dispname": "-"}, {"name": "PySlice_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_Check", "dispname": "-"}, {"name": "PySlice_GetIndices", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_GetIndices.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndices", "dispname": "-"}, {"name": "PySlice_GetIndices.slice", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndices", "dispname": "-"}, {"name": "PySlice_GetIndices.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndices", "dispname": "-"}, {"name": "PySlice_GetIndices.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndices", "dispname": "-"}, {"name": "PySlice_GetIndices.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndices", "dispname": "-"}, {"name": "PySlice_GetIndicesEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_GetIndicesEx.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndicesEx", "dispname": "-"}, {"name": "PySlice_GetIndicesEx.slice", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndicesEx", "dispname": "-"}, {"name": "PySlice_GetIndicesEx.slicelength", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndicesEx", "dispname": "-"}, {"name": "PySlice_GetIndicesEx.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndicesEx", "dispname": "-"}, {"name": "PySlice_GetIndicesEx.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndicesEx", "dispname": "-"}, {"name": "PySlice_GetIndicesEx.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_GetIndicesEx", "dispname": "-"}, {"name": "PySlice_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_New.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_New", "dispname": "-"}, {"name": "PySlice_New.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_New", "dispname": "-"}, {"name": "PySlice_New.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_New", "dispname": "-"}, {"name": "PySlice_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_Unpack", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "PySlice_Unpack.slice", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_Unpack", "dispname": "-"}, {"name": "PySlice_Unpack.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_Unpack", "dispname": "-"}, {"name": "PySlice_Unpack.step", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_Unpack", "dispname": "-"}, {"name": "PySlice_Unpack.stop", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/slice.html#c.PySlice_Unpack", "dispname": "-"}, {"name": "PyState_AddModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyState_AddModule.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyState_AddModule", "dispname": "-"}, {"name": "PyState_AddModule.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyState_AddModule", "dispname": "-"}, {"name": "PyState_FindModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyState_FindModule.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyState_FindModule", "dispname": "-"}, {"name": "PyState_RemoveModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "PyState_RemoveModule.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.PyState_RemoveModule", "dispname": "-"}, {"name": "PyStatus", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_Error", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_Error.err_msg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyStatus.PyStatus_Error", "dispname": "-"}, {"name": "PyStatus.PyStatus_Exception", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_Exception.status", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyStatus.PyStatus_Exception", "dispname": "-"}, {"name": "PyStatus.PyStatus_Exit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_Exit.exitcode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyStatus.PyStatus_Exit", "dispname": "-"}, {"name": "PyStatus.PyStatus_IsError", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_IsError.status", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyStatus.PyStatus_IsError", "dispname": "-"}, {"name": "PyStatus.PyStatus_IsExit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_IsExit.status", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyStatus.PyStatus_IsExit", "dispname": "-"}, {"name": "PyStatus.PyStatus_NoMemory", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.PyStatus_Ok", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.Py_ExitStatusException", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.Py_ExitStatusException.status", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyStatus.Py_ExitStatusException", "dispname": "-"}, {"name": "PyStatus.err_msg", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.exitcode", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStatus.func", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_Desc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_Field", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_GET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_GET_ITEM.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_GET_ITEM", "dispname": "-"}, {"name": "PyStructSequence_GET_ITEM.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_GET_ITEM", "dispname": "-"}, {"name": "PyStructSequence_GetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_GetItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_GetItem", "dispname": "-"}, {"name": "PyStructSequence_GetItem.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_GetItem", "dispname": "-"}, {"name": "PyStructSequence_InitType", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_InitType.desc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_InitType", "dispname": "-"}, {"name": "PyStructSequence_InitType.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_InitType", "dispname": "-"}, {"name": "PyStructSequence_InitType2", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_InitType2.desc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_InitType2", "dispname": "-"}, {"name": "PyStructSequence_InitType2.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_InitType2", "dispname": "-"}, {"name": "PyStructSequence_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_New.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_New", "dispname": "-"}, {"name": "PyStructSequence_NewType", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_NewType.desc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_NewType", "dispname": "-"}, {"name": "PyStructSequence_SET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_SET_ITEM.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_SET_ITEM", "dispname": "-"}, {"name": "PyStructSequence_SET_ITEM.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_SET_ITEM", "dispname": "-"}, {"name": "PyStructSequence_SET_ITEM.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_SET_ITEM", "dispname": "-"}, {"name": "PyStructSequence_SetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyStructSequence_SetItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_SetItem", "dispname": "-"}, {"name": "PyStructSequence_SetItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_SetItem", "dispname": "-"}, {"name": "PyStructSequence_SetItem.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyStructSequence_SetItem", "dispname": "-"}, {"name": "PyStructSequence_UnnamedField", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PySys_AddAuditHook", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_AddAuditHook.hook", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_AddAuditHook", "dispname": "-"}, {"name": "PySys_AddAuditHook.userData", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_AddAuditHook", "dispname": "-"}, {"name": "PySys_AddWarnOption", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_AddWarnOption.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_AddWarnOption", "dispname": "-"}, {"name": "PySys_AddWarnOptionUnicode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_AddWarnOptionUnicode.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_AddWarnOptionUnicode", "dispname": "-"}, {"name": "PySys_AddXOption", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_AddXOption.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_AddXOption", "dispname": "-"}, {"name": "PySys_Audit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_Audit.event", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_Audit", "dispname": "-"}, {"name": "PySys_Audit.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_Audit", "dispname": "-"}, {"name": "PySys_FormatStderr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_FormatStderr.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_FormatStderr", "dispname": "-"}, {"name": "PySys_FormatStdout", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_FormatStdout.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_FormatStdout", "dispname": "-"}, {"name": "PySys_GetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_GetObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_GetObject", "dispname": "-"}, {"name": "PySys_GetXOptions", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_ResetWarnOptions", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_SetArgv", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PySys_SetArgv.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PySys_SetArgv", "dispname": "-"}, {"name": "PySys_SetArgv.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PySys_SetArgv", "dispname": "-"}, {"name": "PySys_SetArgvEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PySys_SetArgvEx.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PySys_SetArgvEx", "dispname": "-"}, {"name": "PySys_SetArgvEx.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PySys_SetArgvEx", "dispname": "-"}, {"name": "PySys_SetArgvEx.updatepath", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PySys_SetArgvEx", "dispname": "-"}, {"name": "PySys_SetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_SetObject.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_SetObject", "dispname": "-"}, {"name": "PySys_SetObject.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_SetObject", "dispname": "-"}, {"name": "PySys_SetPath", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_SetPath.path", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_SetPath", "dispname": "-"}, {"name": "PySys_WriteStderr", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_WriteStderr.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_WriteStderr", "dispname": "-"}, {"name": "PySys_WriteStdout", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "PySys_WriteStdout.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.PySys_WriteStdout", "dispname": "-"}, {"name": "PyTZInfo_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTZInfo_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTZInfo_Check", "dispname": "-"}, {"name": "PyTZInfo_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTZInfo_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTZInfo_CheckExact", "dispname": "-"}, {"name": "PyThreadState", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_Clear", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_Clear.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_Clear", "dispname": "-"}, {"name": "PyThreadState_Delete", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_Delete.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_Delete", "dispname": "-"}, {"name": "PyThreadState_DeleteCurrent", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_Get", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_GetDict", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_GetFrame", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_GetFrame.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_GetFrame", "dispname": "-"}, {"name": "PyThreadState_GetID", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_GetID.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_GetID", "dispname": "-"}, {"name": "PyThreadState_GetInterpreter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_GetInterpreter.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_GetInterpreter", "dispname": "-"}, {"name": "PyThreadState_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_New.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_New", "dispname": "-"}, {"name": "PyThreadState_Next", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_Next.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_Next", "dispname": "-"}, {"name": "PyThreadState_SetAsyncExc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_SetAsyncExc.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_SetAsyncExc", "dispname": "-"}, {"name": "PyThreadState_SetAsyncExc.id", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_SetAsyncExc", "dispname": "-"}, {"name": "PyThreadState_Swap", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThreadState_Swap.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThreadState_Swap", "dispname": "-"}, {"name": "PyThread_ReInitTLS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_create_key", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_delete_key", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_delete_key.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_delete_key", "dispname": "-"}, {"name": "PyThread_delete_key_value", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_delete_key_value.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_delete_key_value", "dispname": "-"}, {"name": "PyThread_get_key_value", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_get_key_value.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_get_key_value", "dispname": "-"}, {"name": "PyThread_set_key_value", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_set_key_value.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_set_key_value", "dispname": "-"}, {"name": "PyThread_set_key_value.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_set_key_value", "dispname": "-"}, {"name": "PyThread_tss_alloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_create", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_create.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_create", "dispname": "-"}, {"name": "PyThread_tss_delete", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_delete.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_delete", "dispname": "-"}, {"name": "PyThread_tss_free", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_free.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_free", "dispname": "-"}, {"name": "PyThread_tss_get", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_get.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_get", "dispname": "-"}, {"name": "PyThread_tss_is_created", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_is_created.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_is_created", "dispname": "-"}, {"name": "PyThread_tss_set", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyThread_tss_set.key", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_set", "dispname": "-"}, {"name": "PyThread_tss_set.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.PyThread_tss_set", "dispname": "-"}, {"name": "PyTimeZone_FromOffset", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTimeZone_FromOffset.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTimeZone_FromOffset", "dispname": "-"}, {"name": "PyTimeZone_FromOffsetAndName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTimeZone_FromOffsetAndName.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTimeZone_FromOffsetAndName", "dispname": "-"}, {"name": "PyTimeZone_FromOffsetAndName.offset", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTimeZone_FromOffsetAndName", "dispname": "-"}, {"name": "PyTime_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTime_Check.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_Check", "dispname": "-"}, {"name": "PyTime_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTime_CheckExact.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_CheckExact", "dispname": "-"}, {"name": "PyTime_FromTime", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTime_FromTime.hour", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTime", "dispname": "-"}, {"name": "PyTime_FromTime.minute", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTime", "dispname": "-"}, {"name": "PyTime_FromTime.second", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTime", "dispname": "-"}, {"name": "PyTime_FromTime.usecond", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTime", "dispname": "-"}, {"name": "PyTime_FromTimeAndFold", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/datetime.html#c.$", "dispname": "-"}, {"name": "PyTime_FromTimeAndFold.fold", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTimeAndFold", "dispname": "-"}, {"name": "PyTime_FromTimeAndFold.hour", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTimeAndFold", "dispname": "-"}, {"name": "PyTime_FromTimeAndFold.minute", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTimeAndFold", "dispname": "-"}, {"name": "PyTime_FromTimeAndFold.second", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTimeAndFold", "dispname": "-"}, {"name": "PyTime_FromTimeAndFold.usecond", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/datetime.html#c.PyTime_FromTimeAndFold", "dispname": "-"}, {"name": "PyTraceMalloc_Track", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyTraceMalloc_Track.domain", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyTraceMalloc_Track", "dispname": "-"}, {"name": "PyTraceMalloc_Track.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyTraceMalloc_Track", "dispname": "-"}, {"name": "PyTraceMalloc_Track.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyTraceMalloc_Track", "dispname": "-"}, {"name": "PyTraceMalloc_Untrack", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/memory.html#c.$", "dispname": "-"}, {"name": "PyTraceMalloc_Untrack.domain", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyTraceMalloc_Untrack", "dispname": "-"}, {"name": "PyTraceMalloc_Untrack.ptr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/memory.html#c.PyTraceMalloc_Untrack", "dispname": "-"}, {"name": "PyTrace_CALL", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_C_CALL", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_C_EXCEPTION", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_C_RETURN", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_EXCEPTION", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_LINE", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_OPCODE", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTrace_RETURN", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "PyTupleObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_Check.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_Check", "dispname": "-"}, {"name": "PyTuple_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_CheckExact.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_CheckExact", "dispname": "-"}, {"name": "PyTuple_GET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_GET_ITEM.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GET_ITEM", "dispname": "-"}, {"name": "PyTuple_GET_ITEM.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GET_ITEM", "dispname": "-"}, {"name": "PyTuple_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_GET_SIZE.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GET_SIZE", "dispname": "-"}, {"name": "PyTuple_GetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_GetItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GetItem", "dispname": "-"}, {"name": "PyTuple_GetItem.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GetItem", "dispname": "-"}, {"name": "PyTuple_GetSlice", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_GetSlice.high", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GetSlice", "dispname": "-"}, {"name": "PyTuple_GetSlice.low", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GetSlice", "dispname": "-"}, {"name": "PyTuple_GetSlice.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_GetSlice", "dispname": "-"}, {"name": "PyTuple_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_New.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_New", "dispname": "-"}, {"name": "PyTuple_Pack", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_Pack.n", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_Pack", "dispname": "-"}, {"name": "PyTuple_SET_ITEM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_SET_ITEM.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_SET_ITEM", "dispname": "-"}, {"name": "PyTuple_SET_ITEM.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_SET_ITEM", "dispname": "-"}, {"name": "PyTuple_SET_ITEM.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_SET_ITEM", "dispname": "-"}, {"name": "PyTuple_SetItem", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_SetItem.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_SetItem", "dispname": "-"}, {"name": "PyTuple_SetItem.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_SetItem", "dispname": "-"}, {"name": "PyTuple_SetItem.pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_SetItem", "dispname": "-"}, {"name": "PyTuple_Size", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTuple_Size.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c.PyTuple_Size", "dispname": "-"}, {"name": "PyTuple_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "PyTypeObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_alloc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_as_async", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_as_buffer", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_as_mapping", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_as_number", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_as_sequence", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_base", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_bases", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_basicsize", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_cache", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_call", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_clear", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_dealloc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_del", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_descr_get", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_descr_set", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_dict", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_dictoffset", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_doc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_finalize", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_flags", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_free", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_getattr", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_getattro", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_getset", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_hash", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_init", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_is_gc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_itemsize", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_iter", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_iternext", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_members", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_methods", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_mro", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_name", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_new", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_repr", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_richcompare", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_richcompare.Py_RETURN_RICHCOMPARE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_setattr", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_setattro", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_str", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_subclasses", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_traverse", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_vectorcall", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_vectorcall_offset", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_version_tag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_weaklist", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyTypeObject.tp_weaklistoffset", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyType_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_Check", "dispname": "-"}, {"name": "PyType_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_CheckExact", "dispname": "-"}, {"name": "PyType_ClearCache", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_FromModuleAndSpec", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_FromModuleAndSpec.bases", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_FromModuleAndSpec", "dispname": "-"}, {"name": "PyType_FromModuleAndSpec.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_FromModuleAndSpec", "dispname": "-"}, {"name": "PyType_FromModuleAndSpec.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_FromModuleAndSpec", "dispname": "-"}, {"name": "PyType_FromSpec", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_FromSpec.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_FromSpec", "dispname": "-"}, {"name": "PyType_FromSpecWithBases", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_FromSpecWithBases.bases", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_FromSpecWithBases", "dispname": "-"}, {"name": "PyType_FromSpecWithBases.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_FromSpecWithBases", "dispname": "-"}, {"name": "PyType_GenericAlloc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_GenericAlloc.nitems", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GenericAlloc", "dispname": "-"}, {"name": "PyType_GenericAlloc.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GenericAlloc", "dispname": "-"}, {"name": "PyType_GenericNew", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_GenericNew.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GenericNew", "dispname": "-"}, {"name": "PyType_GenericNew.kwds", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GenericNew", "dispname": "-"}, {"name": "PyType_GenericNew.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GenericNew", "dispname": "-"}, {"name": "PyType_GetFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_GetFlags.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GetFlags", "dispname": "-"}, {"name": "PyType_GetModule", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_GetModule.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GetModule", "dispname": "-"}, {"name": "PyType_GetModuleState", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_GetModuleState.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GetModuleState", "dispname": "-"}, {"name": "PyType_GetSlot", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_GetSlot.slot", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GetSlot", "dispname": "-"}, {"name": "PyType_GetSlot.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_GetSlot", "dispname": "-"}, {"name": "PyType_HasFeature", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_HasFeature.feature", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_HasFeature", "dispname": "-"}, {"name": "PyType_HasFeature.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_HasFeature", "dispname": "-"}, {"name": "PyType_IS_GC", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_IS_GC.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_IS_GC", "dispname": "-"}, {"name": "PyType_IsSubtype", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_IsSubtype.a", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_IsSubtype", "dispname": "-"}, {"name": "PyType_IsSubtype.b", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_IsSubtype", "dispname": "-"}, {"name": "PyType_Modified", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Modified.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_Modified", "dispname": "-"}, {"name": "PyType_Ready", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Ready.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/type.html#c.PyType_Ready", "dispname": "-"}, {"name": "PyType_Slot", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Slot.PyType_Slot.pfunc", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Slot.PyType_Slot.slot", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Spec", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Spec.PyType_Spec.basicsize", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Spec.PyType_Spec.flags", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Spec.PyType_Spec.itemsize", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Spec.PyType_Spec.name", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Spec.PyType_Spec.slots", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyType_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/type.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_Create", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_Create", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_Create", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_Create", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create.reason", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_Create", "dispname": "-"}, {"name": "PyUnicodeDecodeError_Create.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_Create", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetEncoding", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetEncoding.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetEncoding", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetEnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetEnd.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetEnd", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetEnd.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetEnd", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetObject.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetObject", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetReason", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetReason.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetReason", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetStart", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetStart.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetStart", "dispname": "-"}, {"name": "PyUnicodeDecodeError_GetStart.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_GetStart", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetEnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetEnd.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_SetEnd", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetEnd.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_SetEnd", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetReason", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetReason.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_SetReason", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetReason.reason", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_SetReason", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetStart", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetStart.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_SetStart", "dispname": "-"}, {"name": "PyUnicodeDecodeError_SetStart.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeDecodeError_SetStart", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_Create", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_Create", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_Create", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_Create", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create.reason", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_Create", "dispname": "-"}, {"name": "PyUnicodeEncodeError_Create.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_Create", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetEncoding", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetEncoding.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetEncoding", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetEnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetEnd.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetEnd", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetEnd.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetEnd", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetObject.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetObject", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetReason", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetReason.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetReason", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetStart", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetStart.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetStart", "dispname": "-"}, {"name": "PyUnicodeEncodeError_GetStart.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_GetStart", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetEnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetEnd.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_SetEnd", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetEnd.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_SetEnd", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetReason", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetReason.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_SetReason", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetReason.reason", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_SetReason", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetStart", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetStart.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_SetStart", "dispname": "-"}, {"name": "PyUnicodeEncodeError_SetStart.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeEncodeError_SetStart", "dispname": "-"}, {"name": "PyUnicodeObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_Create", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_Create.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_Create", "dispname": "-"}, {"name": "PyUnicodeTranslateError_Create.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_Create", "dispname": "-"}, {"name": "PyUnicodeTranslateError_Create.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_Create", "dispname": "-"}, {"name": "PyUnicodeTranslateError_Create.reason", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_Create", "dispname": "-"}, {"name": "PyUnicodeTranslateError_Create.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_Create", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetEnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetEnd.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_GetEnd", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetEnd.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_GetEnd", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetObject.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_GetObject", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetReason", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetReason.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_GetReason", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetStart", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetStart.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_GetStart", "dispname": "-"}, {"name": "PyUnicodeTranslateError_GetStart.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_GetStart", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetEnd", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetEnd.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_SetEnd", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetEnd.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_SetEnd", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetReason", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetReason.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_SetReason", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetReason.reason", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_SetReason", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetStart", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetStart.exc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_SetStart", "dispname": "-"}, {"name": "PyUnicodeTranslateError_SetStart.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.PyUnicodeTranslateError_SetStart", "dispname": "-"}, {"name": "PyUnicode_1BYTE_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_1BYTE_DATA.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_1BYTE_DATA", "dispname": "-"}, {"name": "PyUnicode_1BYTE_KIND", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_2BYTE_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_2BYTE_DATA.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_2BYTE_DATA", "dispname": "-"}, {"name": "PyUnicode_2BYTE_KIND", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_4BYTE_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_4BYTE_DATA.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_4BYTE_DATA", "dispname": "-"}, {"name": "PyUnicode_4BYTE_KIND", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AS_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AS_DATA.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AS_DATA", "dispname": "-"}, {"name": "PyUnicode_AS_UNICODE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AS_UNICODE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AS_UNICODE", "dispname": "-"}, {"name": "PyUnicode_AsASCIIString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsASCIIString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsASCIIString", "dispname": "-"}, {"name": "PyUnicode_AsCharmapString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsCharmapString.mapping", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsCharmapString", "dispname": "-"}, {"name": "PyUnicode_AsCharmapString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsCharmapString", "dispname": "-"}, {"name": "PyUnicode_AsEncodedString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsEncodedString.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsEncodedString", "dispname": "-"}, {"name": "PyUnicode_AsEncodedString.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsEncodedString", "dispname": "-"}, {"name": "PyUnicode_AsEncodedString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsEncodedString", "dispname": "-"}, {"name": "PyUnicode_AsLatin1String", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsLatin1String.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsLatin1String", "dispname": "-"}, {"name": "PyUnicode_AsMBCSString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsMBCSString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsMBCSString", "dispname": "-"}, {"name": "PyUnicode_AsRawUnicodeEscapeString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsRawUnicodeEscapeString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsRawUnicodeEscapeString", "dispname": "-"}, {"name": "PyUnicode_AsUCS4", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUCS4.buffer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUCS4", "dispname": "-"}, {"name": "PyUnicode_AsUCS4.buflen", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUCS4", "dispname": "-"}, {"name": "PyUnicode_AsUCS4.copy_null", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUCS4", "dispname": "-"}, {"name": "PyUnicode_AsUCS4.u", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUCS4", "dispname": "-"}, {"name": "PyUnicode_AsUCS4Copy", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUCS4Copy.u", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUCS4Copy", "dispname": "-"}, {"name": "PyUnicode_AsUTF16String", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUTF16String.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUTF16String", "dispname": "-"}, {"name": "PyUnicode_AsUTF32String", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUTF32String.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUTF32String", "dispname": "-"}, {"name": "PyUnicode_AsUTF8", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUTF8.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUTF8", "dispname": "-"}, {"name": "PyUnicode_AsUTF8AndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUTF8AndSize.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUTF8AndSize", "dispname": "-"}, {"name": "PyUnicode_AsUTF8AndSize.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUTF8AndSize", "dispname": "-"}, {"name": "PyUnicode_AsUTF8String", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUTF8String.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUTF8String", "dispname": "-"}, {"name": "PyUnicode_AsUnicode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUnicode.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUnicode", "dispname": "-"}, {"name": "PyUnicode_AsUnicodeAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUnicodeAndSize.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUnicodeAndSize", "dispname": "-"}, {"name": "PyUnicode_AsUnicodeAndSize.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUnicodeAndSize", "dispname": "-"}, {"name": "PyUnicode_AsUnicodeEscapeString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsUnicodeEscapeString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsUnicodeEscapeString", "dispname": "-"}, {"name": "PyUnicode_AsWideChar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsWideChar.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsWideChar", "dispname": "-"}, {"name": "PyUnicode_AsWideChar.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsWideChar", "dispname": "-"}, {"name": "PyUnicode_AsWideChar.w", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsWideChar", "dispname": "-"}, {"name": "PyUnicode_AsWideCharString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_AsWideCharString.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsWideCharString", "dispname": "-"}, {"name": "PyUnicode_AsWideCharString.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_AsWideCharString", "dispname": "-"}, {"name": "PyUnicode_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Check.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Check", "dispname": "-"}, {"name": "PyUnicode_CheckExact", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_CheckExact.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CheckExact", "dispname": "-"}, {"name": "PyUnicode_Compare", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Compare.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Compare", "dispname": "-"}, {"name": "PyUnicode_Compare.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Compare", "dispname": "-"}, {"name": "PyUnicode_CompareWithASCIIString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_CompareWithASCIIString.string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CompareWithASCIIString", "dispname": "-"}, {"name": "PyUnicode_CompareWithASCIIString.uni", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CompareWithASCIIString", "dispname": "-"}, {"name": "PyUnicode_Concat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Concat.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Concat", "dispname": "-"}, {"name": "PyUnicode_Concat.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Concat", "dispname": "-"}, {"name": "PyUnicode_Contains", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Contains.container", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Contains", "dispname": "-"}, {"name": "PyUnicode_Contains.element", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Contains", "dispname": "-"}, {"name": "PyUnicode_CopyCharacters", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_CopyCharacters.from", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CopyCharacters", "dispname": "-"}, {"name": "PyUnicode_CopyCharacters.from_start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CopyCharacters", "dispname": "-"}, {"name": "PyUnicode_CopyCharacters.how_many", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CopyCharacters", "dispname": "-"}, {"name": "PyUnicode_CopyCharacters.to", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CopyCharacters", "dispname": "-"}, {"name": "PyUnicode_CopyCharacters.to_start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_CopyCharacters", "dispname": "-"}, {"name": "PyUnicode_Count", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Count.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Count", "dispname": "-"}, {"name": "PyUnicode_Count.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Count", "dispname": "-"}, {"name": "PyUnicode_Count.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Count", "dispname": "-"}, {"name": "PyUnicode_Count.substr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Count", "dispname": "-"}, {"name": "PyUnicode_DATA", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DATA.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DATA", "dispname": "-"}, {"name": "PyUnicode_Decode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Decode.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Decode", "dispname": "-"}, {"name": "PyUnicode_Decode.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Decode", "dispname": "-"}, {"name": "PyUnicode_Decode.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Decode", "dispname": "-"}, {"name": "PyUnicode_Decode.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Decode", "dispname": "-"}, {"name": "PyUnicode_DecodeASCII", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeASCII.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeASCII", "dispname": "-"}, {"name": "PyUnicode_DecodeASCII.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeASCII", "dispname": "-"}, {"name": "PyUnicode_DecodeASCII.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeASCII", "dispname": "-"}, {"name": "PyUnicode_DecodeCharmap", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeCharmap.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeCharmap", "dispname": "-"}, {"name": "PyUnicode_DecodeCharmap.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeCharmap", "dispname": "-"}, {"name": "PyUnicode_DecodeCharmap.mapping", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeCharmap", "dispname": "-"}, {"name": "PyUnicode_DecodeCharmap.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeCharmap", "dispname": "-"}, {"name": "PyUnicode_DecodeFSDefault", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeFSDefault.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeFSDefault", "dispname": "-"}, {"name": "PyUnicode_DecodeFSDefaultAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeFSDefaultAndSize.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeFSDefaultAndSize", "dispname": "-"}, {"name": "PyUnicode_DecodeFSDefaultAndSize.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeFSDefaultAndSize", "dispname": "-"}, {"name": "PyUnicode_DecodeLatin1", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeLatin1.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLatin1", "dispname": "-"}, {"name": "PyUnicode_DecodeLatin1.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLatin1", "dispname": "-"}, {"name": "PyUnicode_DecodeLatin1.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLatin1", "dispname": "-"}, {"name": "PyUnicode_DecodeLocale", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeLocale.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLocale", "dispname": "-"}, {"name": "PyUnicode_DecodeLocale.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLocale", "dispname": "-"}, {"name": "PyUnicode_DecodeLocaleAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeLocaleAndSize.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLocaleAndSize", "dispname": "-"}, {"name": "PyUnicode_DecodeLocaleAndSize.len", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLocaleAndSize", "dispname": "-"}, {"name": "PyUnicode_DecodeLocaleAndSize.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeLocaleAndSize", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCS.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCS", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCS.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCS", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCS.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCS", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCSStateful", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCSStateful.consumed", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCSStateful", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCSStateful.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCSStateful", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCSStateful.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCSStateful", "dispname": "-"}, {"name": "PyUnicode_DecodeMBCSStateful.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeMBCSStateful", "dispname": "-"}, {"name": "PyUnicode_DecodeRawUnicodeEscape", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeRawUnicodeEscape.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeRawUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_DecodeRawUnicodeEscape.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeRawUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_DecodeRawUnicodeEscape.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeRawUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16.byteorder", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16Stateful", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16Stateful.byteorder", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16Stateful.consumed", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16Stateful.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16Stateful.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF16Stateful.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF16Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32.byteorder", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32Stateful", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32Stateful.byteorder", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32Stateful.consumed", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32Stateful.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32Stateful.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF32Stateful.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF32Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7Stateful", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7Stateful.consumed", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7Stateful.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7Stateful.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF7Stateful.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF7Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8Stateful", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8Stateful.consumed", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8Stateful.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8Stateful.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUTF8Stateful.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUTF8Stateful", "dispname": "-"}, {"name": "PyUnicode_DecodeUnicodeEscape", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_DecodeUnicodeEscape.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_DecodeUnicodeEscape.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_DecodeUnicodeEscape.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_DecodeUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_Encode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Encode.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Encode", "dispname": "-"}, {"name": "PyUnicode_Encode.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Encode", "dispname": "-"}, {"name": "PyUnicode_Encode.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Encode", "dispname": "-"}, {"name": "PyUnicode_Encode.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Encode", "dispname": "-"}, {"name": "PyUnicode_EncodeASCII", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeASCII.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeASCII", "dispname": "-"}, {"name": "PyUnicode_EncodeASCII.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeASCII", "dispname": "-"}, {"name": "PyUnicode_EncodeASCII.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeASCII", "dispname": "-"}, {"name": "PyUnicode_EncodeCharmap", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeCharmap.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCharmap", "dispname": "-"}, {"name": "PyUnicode_EncodeCharmap.mapping", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCharmap", "dispname": "-"}, {"name": "PyUnicode_EncodeCharmap.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCharmap", "dispname": "-"}, {"name": "PyUnicode_EncodeCharmap.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCharmap", "dispname": "-"}, {"name": "PyUnicode_EncodeCodePage", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeCodePage.code_page", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCodePage", "dispname": "-"}, {"name": "PyUnicode_EncodeCodePage.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCodePage", "dispname": "-"}, {"name": "PyUnicode_EncodeCodePage.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeCodePage", "dispname": "-"}, {"name": "PyUnicode_EncodeFSDefault", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeFSDefault.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeFSDefault", "dispname": "-"}, {"name": "PyUnicode_EncodeLatin1", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeLatin1.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeLatin1", "dispname": "-"}, {"name": "PyUnicode_EncodeLatin1.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeLatin1", "dispname": "-"}, {"name": "PyUnicode_EncodeLatin1.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeLatin1", "dispname": "-"}, {"name": "PyUnicode_EncodeLocale", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeLocale.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeLocale", "dispname": "-"}, {"name": "PyUnicode_EncodeLocale.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeLocale", "dispname": "-"}, {"name": "PyUnicode_EncodeMBCS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeMBCS.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeMBCS", "dispname": "-"}, {"name": "PyUnicode_EncodeMBCS.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeMBCS", "dispname": "-"}, {"name": "PyUnicode_EncodeMBCS.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeMBCS", "dispname": "-"}, {"name": "PyUnicode_EncodeRawUnicodeEscape", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeRawUnicodeEscape.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeRawUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_EncodeRawUnicodeEscape.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeRawUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF16", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF16.byteorder", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF16", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF16.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF16", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF16.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF16", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF16.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF16", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF32", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF32.byteorder", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF32", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF32.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF32", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF32.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF32", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF32.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF32", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF7", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF7.base64SetO", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF7", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF7.base64WhiteSpace", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF7", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF7.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF7", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF7.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF7", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF7.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF7", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF8", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF8.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF8", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF8.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF8", "dispname": "-"}, {"name": "PyUnicode_EncodeUTF8.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUTF8", "dispname": "-"}, {"name": "PyUnicode_EncodeUnicodeEscape", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_EncodeUnicodeEscape.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_EncodeUnicodeEscape.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_EncodeUnicodeEscape", "dispname": "-"}, {"name": "PyUnicode_FSConverter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FSConverter.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FSConverter", "dispname": "-"}, {"name": "PyUnicode_FSConverter.result", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FSConverter", "dispname": "-"}, {"name": "PyUnicode_FSDecoder", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FSDecoder.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FSDecoder", "dispname": "-"}, {"name": "PyUnicode_FSDecoder.result", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FSDecoder", "dispname": "-"}, {"name": "PyUnicode_Fill", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Fill.fill_char", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Fill", "dispname": "-"}, {"name": "PyUnicode_Fill.length", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Fill", "dispname": "-"}, {"name": "PyUnicode_Fill.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Fill", "dispname": "-"}, {"name": "PyUnicode_Fill.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Fill", "dispname": "-"}, {"name": "PyUnicode_Find", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Find.direction", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Find", "dispname": "-"}, {"name": "PyUnicode_Find.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Find", "dispname": "-"}, {"name": "PyUnicode_Find.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Find", "dispname": "-"}, {"name": "PyUnicode_Find.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Find", "dispname": "-"}, {"name": "PyUnicode_Find.substr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Find", "dispname": "-"}, {"name": "PyUnicode_FindChar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FindChar.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FindChar", "dispname": "-"}, {"name": "PyUnicode_FindChar.direction", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FindChar", "dispname": "-"}, {"name": "PyUnicode_FindChar.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FindChar", "dispname": "-"}, {"name": "PyUnicode_FindChar.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FindChar", "dispname": "-"}, {"name": "PyUnicode_FindChar.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FindChar", "dispname": "-"}, {"name": "PyUnicode_Format", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Format.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Format", "dispname": "-"}, {"name": "PyUnicode_Format.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Format", "dispname": "-"}, {"name": "PyUnicode_FromEncodedObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromEncodedObject.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromEncodedObject", "dispname": "-"}, {"name": "PyUnicode_FromEncodedObject.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromEncodedObject", "dispname": "-"}, {"name": "PyUnicode_FromEncodedObject.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromEncodedObject", "dispname": "-"}, {"name": "PyUnicode_FromFormat", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromFormat.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromFormat", "dispname": "-"}, {"name": "PyUnicode_FromFormatV", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromFormatV.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromFormatV", "dispname": "-"}, {"name": "PyUnicode_FromFormatV.vargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromFormatV", "dispname": "-"}, {"name": "PyUnicode_FromKindAndData", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromKindAndData.buffer", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromKindAndData", "dispname": "-"}, {"name": "PyUnicode_FromKindAndData.kind", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromKindAndData", "dispname": "-"}, {"name": "PyUnicode_FromKindAndData.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromKindAndData", "dispname": "-"}, {"name": "PyUnicode_FromObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromObject.obj", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromObject", "dispname": "-"}, {"name": "PyUnicode_FromString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromString.u", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromString", "dispname": "-"}, {"name": "PyUnicode_FromStringAndSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromStringAndSize.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromStringAndSize", "dispname": "-"}, {"name": "PyUnicode_FromStringAndSize.u", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromStringAndSize", "dispname": "-"}, {"name": "PyUnicode_FromUnicode", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromUnicode.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromUnicode", "dispname": "-"}, {"name": "PyUnicode_FromUnicode.u", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromUnicode", "dispname": "-"}, {"name": "PyUnicode_FromWideChar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_FromWideChar.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromWideChar", "dispname": "-"}, {"name": "PyUnicode_FromWideChar.w", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_FromWideChar", "dispname": "-"}, {"name": "PyUnicode_GET_DATA_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_GET_DATA_SIZE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_GET_DATA_SIZE", "dispname": "-"}, {"name": "PyUnicode_GET_LENGTH", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_GET_LENGTH.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_GET_LENGTH", "dispname": "-"}, {"name": "PyUnicode_GET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_GET_SIZE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_GET_SIZE", "dispname": "-"}, {"name": "PyUnicode_GetLength", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_GetLength.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_GetLength", "dispname": "-"}, {"name": "PyUnicode_GetSize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_GetSize.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_GetSize", "dispname": "-"}, {"name": "PyUnicode_InternFromString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_InternFromString.v", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_InternFromString", "dispname": "-"}, {"name": "PyUnicode_InternInPlace", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_InternInPlace.string", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_InternInPlace", "dispname": "-"}, {"name": "PyUnicode_IsIdentifier", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_IsIdentifier.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_IsIdentifier", "dispname": "-"}, {"name": "PyUnicode_Join", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Join.separator", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Join", "dispname": "-"}, {"name": "PyUnicode_Join.seq", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Join", "dispname": "-"}, {"name": "PyUnicode_KIND", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_KIND.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_KIND", "dispname": "-"}, {"name": "PyUnicode_MAX_CHAR_VALUE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_New.maxchar", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_New", "dispname": "-"}, {"name": "PyUnicode_New.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_New", "dispname": "-"}, {"name": "PyUnicode_READ", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_READ.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_READ", "dispname": "-"}, {"name": "PyUnicode_READ.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_READ", "dispname": "-"}, {"name": "PyUnicode_READ.kind", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_READ", "dispname": "-"}, {"name": "PyUnicode_READY", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_READY.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_READY", "dispname": "-"}, {"name": "PyUnicode_READ_CHAR", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_READ_CHAR.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_READ_CHAR", "dispname": "-"}, {"name": "PyUnicode_READ_CHAR.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_READ_CHAR", "dispname": "-"}, {"name": "PyUnicode_ReadChar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_ReadChar.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_ReadChar", "dispname": "-"}, {"name": "PyUnicode_ReadChar.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_ReadChar", "dispname": "-"}, {"name": "PyUnicode_Replace", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Replace.maxcount", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Replace", "dispname": "-"}, {"name": "PyUnicode_Replace.replstr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Replace", "dispname": "-"}, {"name": "PyUnicode_Replace.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Replace", "dispname": "-"}, {"name": "PyUnicode_Replace.substr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Replace", "dispname": "-"}, {"name": "PyUnicode_RichCompare", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_RichCompare.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_RichCompare", "dispname": "-"}, {"name": "PyUnicode_RichCompare.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_RichCompare", "dispname": "-"}, {"name": "PyUnicode_RichCompare.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_RichCompare", "dispname": "-"}, {"name": "PyUnicode_Split", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Split.maxsplit", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Split", "dispname": "-"}, {"name": "PyUnicode_Split.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Split", "dispname": "-"}, {"name": "PyUnicode_Split.sep", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Split", "dispname": "-"}, {"name": "PyUnicode_Splitlines", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Splitlines.keepend", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Splitlines", "dispname": "-"}, {"name": "PyUnicode_Splitlines.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Splitlines", "dispname": "-"}, {"name": "PyUnicode_Substring", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Substring.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Substring", "dispname": "-"}, {"name": "PyUnicode_Substring.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Substring", "dispname": "-"}, {"name": "PyUnicode_Substring.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Substring", "dispname": "-"}, {"name": "PyUnicode_Tailmatch", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Tailmatch.direction", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Tailmatch", "dispname": "-"}, {"name": "PyUnicode_Tailmatch.end", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Tailmatch", "dispname": "-"}, {"name": "PyUnicode_Tailmatch.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Tailmatch", "dispname": "-"}, {"name": "PyUnicode_Tailmatch.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Tailmatch", "dispname": "-"}, {"name": "PyUnicode_Tailmatch.substr", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Tailmatch", "dispname": "-"}, {"name": "PyUnicode_TransformDecimalToASCII", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_TransformDecimalToASCII.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_TransformDecimalToASCII", "dispname": "-"}, {"name": "PyUnicode_TransformDecimalToASCII.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_TransformDecimalToASCII", "dispname": "-"}, {"name": "PyUnicode_Translate", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_Translate.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Translate", "dispname": "-"}, {"name": "PyUnicode_Translate.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Translate", "dispname": "-"}, {"name": "PyUnicode_Translate.table", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_Translate", "dispname": "-"}, {"name": "PyUnicode_TranslateCharmap", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_TranslateCharmap.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_TranslateCharmap", "dispname": "-"}, {"name": "PyUnicode_TranslateCharmap.mapping", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_TranslateCharmap", "dispname": "-"}, {"name": "PyUnicode_TranslateCharmap.s", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_TranslateCharmap", "dispname": "-"}, {"name": "PyUnicode_TranslateCharmap.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_TranslateCharmap", "dispname": "-"}, {"name": "PyUnicode_Type", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_WCHAR_KIND", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_WRITE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_WRITE.data", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WRITE", "dispname": "-"}, {"name": "PyUnicode_WRITE.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WRITE", "dispname": "-"}, {"name": "PyUnicode_WRITE.kind", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WRITE", "dispname": "-"}, {"name": "PyUnicode_WRITE.value", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WRITE", "dispname": "-"}, {"name": "PyUnicode_WriteChar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "PyUnicode_WriteChar.character", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WriteChar", "dispname": "-"}, {"name": "PyUnicode_WriteChar.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WriteChar", "dispname": "-"}, {"name": "PyUnicode_WriteChar.unicode", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.PyUnicode_WriteChar", "dispname": "-"}, {"name": "PyVarObject", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyVarObject.ob_size", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "PyVarObject_HEAD_INIT", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "PyVectorcall_Call", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyVectorcall_Call.callable", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyVectorcall_Call", "dispname": "-"}, {"name": "PyVectorcall_Call.dict", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyVectorcall_Call", "dispname": "-"}, {"name": "PyVectorcall_Call.tuple", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyVectorcall_Call", "dispname": "-"}, {"name": "PyVectorcall_Function", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyVectorcall_Function.op", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyVectorcall_Function", "dispname": "-"}, {"name": "PyVectorcall_NARGS", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "PyVectorcall_NARGS.nargsf", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/call.html#c.PyVectorcall_NARGS", "dispname": "-"}, {"name": "PyWeakref_Check", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_CheckProxy", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_CheckRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_GET_OBJECT", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_GET_OBJECT.ref", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyWeakref_GET_OBJECT", "dispname": "-"}, {"name": "PyWeakref_GetObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_GetObject.ref", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyWeakref_GetObject", "dispname": "-"}, {"name": "PyWeakref_NewProxy", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_NewProxy.callback", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyWeakref_NewProxy", "dispname": "-"}, {"name": "PyWeakref_NewProxy.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyWeakref_NewProxy", "dispname": "-"}, {"name": "PyWeakref_NewRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/weakref.html#c.$", "dispname": "-"}, {"name": "PyWeakref_NewRef.callback", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyWeakref_NewRef", "dispname": "-"}, {"name": "PyWeakref_NewRef.ob", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/weakref.html#c.PyWeakref_NewRef", "dispname": "-"}, {"name": "PyWideStringList", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Append", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Append.item", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyWideStringList.PyWideStringList_Append", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Append.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyWideStringList.PyWideStringList_Append", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Insert", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Insert.index", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyWideStringList.PyWideStringList_Insert", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Insert.item", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyWideStringList.PyWideStringList_Insert", "dispname": "-"}, {"name": "PyWideStringList.PyWideStringList_Insert.list", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.PyWideStringList.PyWideStringList_Insert", "dispname": "-"}, {"name": "PyWideStringList.items", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyWideStringList.length", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "PyWrapper_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/descriptor.html#c.$", "dispname": "-"}, {"name": "Py_ABS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_AddPendingCall", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_AddPendingCall.arg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_AddPendingCall", "dispname": "-"}, {"name": "Py_AddPendingCall.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_AddPendingCall", "dispname": "-"}, {"name": "Py_AtExit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "Py_AtExit.func", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_AtExit", "dispname": "-"}, {"name": "Py_BEGIN_ALLOW_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_BLOCK_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_BuildValue", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "Py_BuildValue.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.Py_BuildValue", "dispname": "-"}, {"name": "Py_BytesMain", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_BytesMain.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_BytesMain", "dispname": "-"}, {"name": "Py_BytesMain.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_BytesMain", "dispname": "-"}, {"name": "Py_BytesWarningFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_CHARMASK", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_CLEAR", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_CLEAR.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_CLEAR", "dispname": "-"}, {"name": "Py_CompileString", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_CompileString.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileString", "dispname": "-"}, {"name": "Py_CompileString.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileString", "dispname": "-"}, {"name": "Py_CompileString.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileString", "dispname": "-"}, {"name": "Py_CompileStringExFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_CompileStringExFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringExFlags", "dispname": "-"}, {"name": "Py_CompileStringExFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringExFlags", "dispname": "-"}, {"name": "Py_CompileStringExFlags.optimize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringExFlags", "dispname": "-"}, {"name": "Py_CompileStringExFlags.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringExFlags", "dispname": "-"}, {"name": "Py_CompileStringExFlags.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringExFlags", "dispname": "-"}, {"name": "Py_CompileStringFlags", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_CompileStringFlags.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringFlags", "dispname": "-"}, {"name": "Py_CompileStringFlags.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringFlags", "dispname": "-"}, {"name": "Py_CompileStringFlags.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringFlags", "dispname": "-"}, {"name": "Py_CompileStringFlags.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringFlags", "dispname": "-"}, {"name": "Py_CompileStringObject", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_CompileStringObject.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringObject", "dispname": "-"}, {"name": "Py_CompileStringObject.flags", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringObject", "dispname": "-"}, {"name": "Py_CompileStringObject.optimize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringObject", "dispname": "-"}, {"name": "Py_CompileStringObject.start", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringObject", "dispname": "-"}, {"name": "Py_CompileStringObject.str", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_CompileStringObject", "dispname": "-"}, {"name": "Py_DECREF", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_DECREF.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_DECREF", "dispname": "-"}, {"name": "Py_DEPRECATED", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_DebugFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_DecRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_DecRef.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_DecRef", "dispname": "-"}, {"name": "Py_DecodeLocale", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "Py_DecodeLocale.arg", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_DecodeLocale", "dispname": "-"}, {"name": "Py_DecodeLocale.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_DecodeLocale", "dispname": "-"}, {"name": "Py_DontWriteBytecodeFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_END_ALLOW_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_Ellipsis", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/slice.html#c.$", "dispname": "-"}, {"name": "Py_EncodeLocale", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "Py_EncodeLocale.error_pos", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_EncodeLocale", "dispname": "-"}, {"name": "Py_EncodeLocale.text", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_EncodeLocale", "dispname": "-"}, {"name": "Py_EndInterpreter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_EndInterpreter.tstate", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_EndInterpreter", "dispname": "-"}, {"name": "Py_EnterRecursiveCall", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "Py_EnterRecursiveCall.where", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.Py_EnterRecursiveCall", "dispname": "-"}, {"name": "Py_Exit", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "Py_Exit.status", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_Exit", "dispname": "-"}, {"name": "Py_False", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/bool.html#c.$", "dispname": "-"}, {"name": "Py_FatalError", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "Py_FatalError.message", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_FatalError", "dispname": "-"}, {"name": "Py_FdIsInteractive", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/sys.html#c.$", "dispname": "-"}, {"name": "Py_FdIsInteractive.filename", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_FdIsInteractive", "dispname": "-"}, {"name": "Py_FdIsInteractive.fp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/sys.html#c.Py_FdIsInteractive", "dispname": "-"}, {"name": "Py_Finalize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_FinalizeEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_FrozenFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GETENV", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_GenericAlias", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/typehints.html#c.$", "dispname": "-"}, {"name": "Py_GenericAlias.args", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/typehints.html#c.Py_GenericAlias", "dispname": "-"}, {"name": "Py_GenericAlias.origin", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/typehints.html#c.Py_GenericAlias", "dispname": "-"}, {"name": "Py_GenericAliasType", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/typehints.html#c.$", "dispname": "-"}, {"name": "Py_GetArgcArgv", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "Py_GetArgcArgv.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_GetArgcArgv", "dispname": "-"}, {"name": "Py_GetArgcArgv.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_GetArgcArgv", "dispname": "-"}, {"name": "Py_GetBuildInfo", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetCompiler", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetCopyright", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetExecPrefix", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetPath", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetPlatform", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetPrefix", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetProgramFullPath", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetProgramName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetPythonHome", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_GetVersion", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_HashRandomizationFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_INCREF", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_INCREF.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_INCREF", "dispname": "-"}, {"name": "Py_IS_TYPE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_IS_TYPE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_IS_TYPE", "dispname": "-"}, {"name": "Py_IS_TYPE.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_IS_TYPE", "dispname": "-"}, {"name": "Py_IgnoreEnvironmentFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_IncRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_IncRef.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_IncRef", "dispname": "-"}, {"name": "Py_Initialize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_InitializeEx", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_InitializeEx.initsigs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_InitializeEx", "dispname": "-"}, {"name": "Py_InitializeFromConfig", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "Py_InitializeFromConfig.config", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_InitializeFromConfig", "dispname": "-"}, {"name": "Py_InspectFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_InteractiveFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_Is", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_Is.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_Is", "dispname": "-"}, {"name": "Py_Is.y", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_Is", "dispname": "-"}, {"name": "Py_IsFalse", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_IsFalse.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_IsFalse", "dispname": "-"}, {"name": "Py_IsInitialized", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_IsNone", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_IsNone.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_IsNone", "dispname": "-"}, {"name": "Py_IsTrue", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_IsTrue.x", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_IsTrue", "dispname": "-"}, {"name": "Py_IsolatedFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_LIMITED_API", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/stable.html#c.$", "dispname": "-"}, {"name": "Py_LeaveRecursiveCall", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "Py_LegacyWindowsFSEncodingFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_LegacyWindowsStdioFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_MAX", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_MEMBER_SIZE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_MIN", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_Main", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_Main.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_Main", "dispname": "-"}, {"name": "Py_Main.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/veryhigh.html#c.Py_Main", "dispname": "-"}, {"name": "Py_NewInterpreter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_NewRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_NewRef.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_NewRef", "dispname": "-"}, {"name": "Py_NoSiteFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_NoUserSiteDirectory", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_None", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/none.html#c.$", "dispname": "-"}, {"name": "Py_NotImplemented", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "Py_OptimizeFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_PreInitialize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "Py_PreInitialize.preconfig", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitialize", "dispname": "-"}, {"name": "Py_PreInitializeFromArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "Py_PreInitializeFromArgs.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitializeFromArgs", "dispname": "-"}, {"name": "Py_PreInitializeFromArgs.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitializeFromArgs", "dispname": "-"}, {"name": "Py_PreInitializeFromArgs.preconfig", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitializeFromArgs", "dispname": "-"}, {"name": "Py_PreInitializeFromBytesArgs", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "Py_PreInitializeFromBytesArgs.argc", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitializeFromBytesArgs", "dispname": "-"}, {"name": "Py_PreInitializeFromBytesArgs.argv", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitializeFromBytesArgs", "dispname": "-"}, {"name": "Py_PreInitializeFromBytesArgs.preconfig", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init_config.html#c.Py_PreInitializeFromBytesArgs", "dispname": "-"}, {"name": "Py_QuietFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_REFCNT", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_REFCNT.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_REFCNT", "dispname": "-"}, {"name": "Py_RETURN_FALSE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/bool.html#c.$", "dispname": "-"}, {"name": "Py_RETURN_NONE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/none.html#c.$", "dispname": "-"}, {"name": "Py_RETURN_NOTIMPLEMENTED", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/object.html#c.$", "dispname": "-"}, {"name": "Py_RETURN_TRUE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/bool.html#c.$", "dispname": "-"}, {"name": "Py_ReprEnter", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "Py_ReprEnter.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.Py_ReprEnter", "dispname": "-"}, {"name": "Py_ReprLeave", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/exceptions.html#c.$", "dispname": "-"}, {"name": "Py_ReprLeave.object", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/exceptions.html#c.Py_ReprLeave", "dispname": "-"}, {"name": "Py_RunMain", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "Py_SET_REFCNT", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_SET_REFCNT.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SET_REFCNT", "dispname": "-"}, {"name": "Py_SET_REFCNT.refcnt", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SET_REFCNT", "dispname": "-"}, {"name": "Py_SET_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_SET_SIZE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SET_SIZE", "dispname": "-"}, {"name": "Py_SET_SIZE.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SET_SIZE", "dispname": "-"}, {"name": "Py_SET_TYPE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_SET_TYPE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SET_TYPE", "dispname": "-"}, {"name": "Py_SET_TYPE.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SET_TYPE", "dispname": "-"}, {"name": "Py_SIZE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_SIZE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_SIZE", "dispname": "-"}, {"name": "Py_STRINGIFY", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_SetPath", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_SetProgramName", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_SetProgramName.name", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_SetProgramName", "dispname": "-"}, {"name": "Py_SetPythonHome", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_SetPythonHome.home", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_SetPythonHome", "dispname": "-"}, {"name": "Py_SetStandardStreamEncoding", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_SetStandardStreamEncoding.encoding", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_SetStandardStreamEncoding", "dispname": "-"}, {"name": "Py_SetStandardStreamEncoding.errors", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c.Py_SetStandardStreamEncoding", "dispname": "-"}, {"name": "Py_TYPE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "Py_TYPE.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/structures.html#c.Py_TYPE", "dispname": "-"}, {"name": "Py_True", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/bool.html#c.$", "dispname": "-"}, {"name": "Py_UCS1", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UCS2", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UCS4", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNBLOCK_THREADS", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISALNUM", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISALNUM.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISALNUM", "dispname": "-"}, {"name": "Py_UNICODE_ISALPHA", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISALPHA.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISALPHA", "dispname": "-"}, {"name": "Py_UNICODE_ISDECIMAL", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISDECIMAL.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISDECIMAL", "dispname": "-"}, {"name": "Py_UNICODE_ISDIGIT", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISDIGIT.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISDIGIT", "dispname": "-"}, {"name": "Py_UNICODE_ISLINEBREAK", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISLINEBREAK.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISLINEBREAK", "dispname": "-"}, {"name": "Py_UNICODE_ISLOWER", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISLOWER.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISLOWER", "dispname": "-"}, {"name": "Py_UNICODE_ISNUMERIC", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISNUMERIC.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISNUMERIC", "dispname": "-"}, {"name": "Py_UNICODE_ISPRINTABLE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISPRINTABLE.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISPRINTABLE", "dispname": "-"}, {"name": "Py_UNICODE_ISSPACE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISSPACE.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISSPACE", "dispname": "-"}, {"name": "Py_UNICODE_ISTITLE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISTITLE.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISTITLE", "dispname": "-"}, {"name": "Py_UNICODE_ISUPPER", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_ISUPPER.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_ISUPPER", "dispname": "-"}, {"name": "Py_UNICODE_IS_HIGH_SURROGATE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_IS_LOW_SURROGATE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_IS_SURROGATE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_JOIN_SURROGATES", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TODECIMAL", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TODECIMAL.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_TODECIMAL", "dispname": "-"}, {"name": "Py_UNICODE_TODIGIT", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TODIGIT.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_TODIGIT", "dispname": "-"}, {"name": "Py_UNICODE_TOLOWER", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TOLOWER.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_TOLOWER", "dispname": "-"}, {"name": "Py_UNICODE_TONUMERIC", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TONUMERIC.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_TONUMERIC", "dispname": "-"}, {"name": "Py_UNICODE_TOTITLE", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TOTITLE.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_TOTITLE", "dispname": "-"}, {"name": "Py_UNICODE_TOUPPER", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/unicode.html#c.$", "dispname": "-"}, {"name": "Py_UNICODE_TOUPPER.ch", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/unicode.html#c.Py_UNICODE_TOUPPER", "dispname": "-"}, {"name": "Py_UNREACHABLE", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_UNUSED", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_UnbufferedStdioFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_VISIT", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "Py_VISIT.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/gcsupport.html#c.Py_VISIT", "dispname": "-"}, {"name": "Py_VaBuildValue", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/arg.html#c.$", "dispname": "-"}, {"name": "Py_VaBuildValue.format", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.Py_VaBuildValue", "dispname": "-"}, {"name": "Py_VaBuildValue.vargs", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/arg.html#c.Py_VaBuildValue", "dispname": "-"}, {"name": "Py_VerboseFlag", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_XDECREF", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_XDECREF.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_XDECREF", "dispname": "-"}, {"name": "Py_XINCREF", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_XINCREF.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_XINCREF", "dispname": "-"}, {"name": "Py_XNewRef", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/refcounting.html#c.$", "dispname": "-"}, {"name": "Py_XNewRef.o", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/refcounting.html#c.Py_XNewRef", "dispname": "-"}, {"name": "Py_buffer", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.buf", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.format", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.internal", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.itemsize", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.len", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.ndim", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.obj", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.readonly", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.shape", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.strides", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_buffer.suboffsets", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/buffer.html#c.$", "dispname": "-"}, {"name": "Py_complex", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "Py_eval_input", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_file_input", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_mod_create", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "Py_mod_create.create_module", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "Py_mod_create.create_module.def", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.Py_mod_create.create_module", "dispname": "-"}, {"name": "Py_mod_create.create_module.spec", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.Py_mod_create.create_module", "dispname": "-"}, {"name": "Py_mod_exec", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "Py_mod_exec.exec_module", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/module.html#c.$", "dispname": "-"}, {"name": "Py_mod_exec.exec_module.module", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/module.html#c.Py_mod_exec.exec_module", "dispname": "-"}, {"name": "Py_single_input", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/veryhigh.html#c.$", "dispname": "-"}, {"name": "Py_ssize_t", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/intro.html#c.$", "dispname": "-"}, {"name": "Py_tracefunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_tss_NEEDS_INIT", "domain": "c", "role": "macro", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "Py_tss_t", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "_PyBytes_Resize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/bytes.html#c.$", "dispname": "-"}, {"name": "_PyBytes_Resize.bytes", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c._PyBytes_Resize", "dispname": "-"}, {"name": "_PyBytes_Resize.newsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/bytes.html#c._PyBytes_Resize", "dispname": "-"}, {"name": "_PyCFunctionFast", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "_PyCFunctionFastWithKeywords", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/structures.html#c.$", "dispname": "-"}, {"name": "_PyFrameEvalFunction", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "_PyInterpreterState_GetEvalFrameFunc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "_PyInterpreterState_GetEvalFrameFunc.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c._PyInterpreterState_GetEvalFrameFunc", "dispname": "-"}, {"name": "_PyInterpreterState_SetEvalFrameFunc", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init.html#c.$", "dispname": "-"}, {"name": "_PyInterpreterState_SetEvalFrameFunc.eval_frame", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c._PyInterpreterState_SetEvalFrameFunc", "dispname": "-"}, {"name": "_PyInterpreterState_SetEvalFrameFunc.interp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/init.html#c._PyInterpreterState_SetEvalFrameFunc", "dispname": "-"}, {"name": "_PyObject_New", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "_PyObject_New.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c._PyObject_New", "dispname": "-"}, {"name": "_PyObject_NewVar", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "_PyObject_NewVar.size", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c._PyObject_NewVar", "dispname": "-"}, {"name": "_PyObject_NewVar.type", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/allocation.html#c._PyObject_NewVar", "dispname": "-"}, {"name": "_PyTuple_Resize", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/tuple.html#c.$", "dispname": "-"}, {"name": "_PyTuple_Resize.newsize", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c._PyTuple_Resize", "dispname": "-"}, {"name": "_PyTuple_Resize.p", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/tuple.html#c._PyTuple_Resize", "dispname": "-"}, {"name": "_Py_InitializeMain", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/init_config.html#c.$", "dispname": "-"}, {"name": "_Py_NoneStruct", "domain": "c", "role": "member", "priority": "1", "uri": "c-api/allocation.html#c.$", "dispname": "-"}, {"name": "_Py_c_diff", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "_Py_c_diff.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_diff", "dispname": "-"}, {"name": "_Py_c_diff.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_diff", "dispname": "-"}, {"name": "_Py_c_neg", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "_Py_c_neg.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_neg", "dispname": "-"}, {"name": "_Py_c_pow", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "_Py_c_pow.exp", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_pow", "dispname": "-"}, {"name": "_Py_c_pow.num", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_pow", "dispname": "-"}, {"name": "_Py_c_prod", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "_Py_c_prod.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_prod", "dispname": "-"}, {"name": "_Py_c_prod.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_prod", "dispname": "-"}, {"name": "_Py_c_quot", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "_Py_c_quot.dividend", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_quot", "dispname": "-"}, {"name": "_Py_c_quot.divisor", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_quot", "dispname": "-"}, {"name": "_Py_c_sum", "domain": "c", "role": "function", "priority": "1", "uri": "c-api/complex.html#c.$", "dispname": "-"}, {"name": "_Py_c_sum.left", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_sum", "dispname": "-"}, {"name": "_Py_c_sum.right", "domain": "c", "role": "functionParam", "priority": "1", "uri": "c-api/complex.html#c._Py_c_sum", "dispname": "-"}, {"name": "_frozen", "domain": "c", "role": "struct", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "_inittab", "domain": "c", "role": "struct", "priority": "1", "uri": "c-api/import.html#c.$", "dispname": "-"}, {"name": "allocfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "binaryfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "descrgetfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "descrsetfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "destructor", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "freefunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "getattrfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "getattrofunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "getbufferproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "getiterfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "hashfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "initproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "inquiry", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "iternextfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "lenfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "newfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "objobjargproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "objobjproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "releasebufferproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "reprfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "richcmpfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "sendfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "setattrfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "setattrofunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "ssizeargfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "ssizeobjargproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "ternaryfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "traverseproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "unaryfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/typeobj.html#c.$", "dispname": "-"}, {"name": "vectorcallfunc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/call.html#c.$", "dispname": "-"}, {"name": "visitproc", "domain": "c", "role": "type", "priority": "1", "uri": "c-api/gcsupport.html#c.$", "dispname": "-"}, {"name": "ArithmeticError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "AssertionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "AttributeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BaseException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BaseException.args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BaseException.with_traceback", "domain": "py", "role": "method", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BlockingIOError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BlockingIOError.characters_written", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BrokenPipeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BufferError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "BytesWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ChildProcessError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ConnectionAbortedError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ConnectionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ConnectionRefusedError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ConnectionResetError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "DeprecationWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "EOFError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "Ellipsis", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "EncodingWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "EnvironmentError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "Exception", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "False", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "FileExistsError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "FileNotFoundError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "FloatingPointError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "FutureWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "GeneratorExit", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "IOError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ImportError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ImportWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "IndentationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "IndexError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "InterruptedError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "IsADirectoryError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "KeyError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "KeyboardInterrupt", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "LookupError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "METH_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "METH_COEXIST", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "METH_FASTCALL", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "METH_NOARGS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "METH_O", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "METH_STATIC", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "METH_VARARGS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "MemoryError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ModuleNotFoundError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "NameError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "None", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "NotADirectoryError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "NotImplemented", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "NotImplementedError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OSError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OSError.errno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OSError.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OSError.filename2", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OSError.strerror", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OSError.winerror", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "OverflowError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "PendingDeprecationWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "PermissionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ProcessLookupError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_BASETYPE", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_BASE_EXC_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_BYTES_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_DEFAULT", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_DICT_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_DISALLOW_INSTANTIATION", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_HAVE_FINALIZE", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_HAVE_GC", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_HAVE_VECTORCALL", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_HEAPTYPE", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_IMMUTABLETYPE", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_LIST_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_LONG_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_MAPPING", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_METHOD_DESCRIPTOR", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_READY", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_READYING", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_SEQUENCE", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_TUPLE_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_TYPE_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "Py_TPFLAGS_UNICODE_SUBCLASS", "domain": "py", "role": "data", "priority": "1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "RecursionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ReferenceError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ResourceWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "RuntimeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "RuntimeWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "StopAsyncIteration", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "StopIteration", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError.end_lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError.end_offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError.offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxError.text", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SyntaxWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SystemError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SystemExit", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "SystemExit.code", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "TabError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "TimeoutError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "True", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "TypeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnboundLocalError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeDecodeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeEncodeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeError.encoding", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeError.end", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeError.object", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeError.reason", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeError.start", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeTranslateError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UnicodeWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "UserWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ValueError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "Warning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "WindowsError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "ZeroDivisionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/exceptions.html#$", "dispname": "-"}, {"name": "__cached__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#cached__", "dispname": "-"}, {"name": "__debug__", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#debug__", "dispname": "-"}, {"name": "__file__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#file__", "dispname": "-"}, {"name": "__future__", "domain": "py", "role": "module", "priority": "0", "uri": "library/__future__.html#module-$", "dispname": "-"}, {"name": "__import__", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#import__", "dispname": "-"}, {"name": "__loader__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#loader__", "dispname": "-"}, {"name": "__main__", "domain": "py", "role": "module", "priority": "0", "uri": "library/__main__.html#module-$", "dispname": "-"}, {"name": "__name__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#name__", "dispname": "-"}, {"name": "__package__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#package__", "dispname": "-"}, {"name": "__path__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#path__", "dispname": "-"}, {"name": "__spec__", "domain": "py", "role": "attribute", "priority": "1", "uri": "reference/import.html#spec__", "dispname": "-"}, {"name": "_thread", "domain": "py", "role": "module", "priority": "0", "uri": "library/_thread.html#module-$", "dispname": "-"}, {"name": "_thread.LockType", "domain": "py", "role": "data", "priority": "1", "uri": "library/_thread.html#thread.LockType", "dispname": "-"}, {"name": "_thread.TIMEOUT_MAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/_thread.html#thread.TIMEOUT_MAX", "dispname": "-"}, {"name": "_thread.allocate_lock", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.allocate_lock", "dispname": "-"}, {"name": "_thread.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/_thread.html#thread.error", "dispname": "-"}, {"name": "_thread.exit", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.exit", "dispname": "-"}, {"name": "_thread.get_ident", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.get_ident", "dispname": "-"}, {"name": "_thread.get_native_id", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.get_native_id", "dispname": "-"}, {"name": "_thread.interrupt_main", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.interrupt_main", "dispname": "-"}, {"name": "_thread.lock.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/_thread.html#thread.lock.acquire", "dispname": "-"}, {"name": "_thread.lock.locked", "domain": "py", "role": "method", "priority": "1", "uri": "library/_thread.html#thread.lock.locked", "dispname": "-"}, {"name": "_thread.lock.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/_thread.html#thread.lock.release", "dispname": "-"}, {"name": "_thread.stack_size", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.stack_size", "dispname": "-"}, {"name": "_thread.start_new_thread", "domain": "py", "role": "function", "priority": "1", "uri": "library/_thread.html#thread.start_new_thread", "dispname": "-"}, {"name": "abc", "domain": "py", "role": "module", "priority": "0", "uri": "library/abc.html#module-$", "dispname": "-"}, {"name": "abc.ABC", "domain": "py", "role": "class", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.ABCMeta", "domain": "py", "role": "class", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.ABCMeta.__subclasshook__", "domain": "py", "role": "method", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.ABCMeta.register", "domain": "py", "role": "method", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.abstractclassmethod", "domain": "py", "role": "function", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.abstractmethod", "domain": "py", "role": "function", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.abstractproperty", "domain": "py", "role": "function", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.abstractstaticmethod", "domain": "py", "role": "function", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.get_cache_token", "domain": "py", "role": "function", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abc.update_abstractmethods", "domain": "py", "role": "function", "priority": "1", "uri": "library/abc.html#$", "dispname": "-"}, {"name": "abs", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "agen.__anext__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "agen.aclose", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "agen.asend", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "agen.athrow", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "aifc", "domain": "py", "role": "module", "priority": "0", "uri": "library/aifc.html#module-$", "dispname": "-"}, {"name": "aifc.aifc.aifc", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.aiff", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getcompname", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getcomptype", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getframerate", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getmark", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getmarkers", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getnchannels", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getnframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getparams", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.getsampwidth", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.readframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.rewind", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setcomptype", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setframerate", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setmark", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setnchannels", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setnframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setparams", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setpos", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.setsampwidth", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.writeframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.aifc.writeframesraw", "domain": "py", "role": "method", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aifc.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/aifc.html#$", "dispname": "-"}, {"name": "aiter", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "all", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "anext", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "any", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "argparse", "domain": "py", "role": "module", "priority": "0", "uri": "library/argparse.html#module-$", "dispname": "-"}, {"name": "argparse.Action", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentDefaultsHelpFormatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.add_argument", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.add_argument_group", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.add_mutually_exclusive_group", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.add_subparsers", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.convert_arg_line_to_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.error", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.exit", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.format_help", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.format_usage", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.get_default", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.parse_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.parse_intermixed_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.parse_known_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.parse_known_intermixed_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.print_help", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.print_usage", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.ArgumentParser.set_defaults", "domain": "py", "role": "method", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.FileType", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.MetavarTypeHelpFormatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.Namespace", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.RawDescriptionHelpFormatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "argparse.RawTextHelpFormatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/argparse.html#$", "dispname": "-"}, {"name": "array", "domain": "py", "role": "module", "priority": "0", "uri": "library/array.html#module-$", "dispname": "-"}, {"name": "array.array", "domain": "py", "role": "class", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.buffer_info", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.byteswap", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.count", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.extend", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.frombytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.fromfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.fromlist", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.fromunicode", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.insert", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.pop", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.reverse", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.tofile", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.tounicode", "domain": "py", "role": "method", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.array.typecode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "array.typecodes", "domain": "py", "role": "data", "priority": "1", "uri": "library/array.html#$", "dispname": "-"}, {"name": "ascii", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "ast", "domain": "py", "role": "module", "priority": "0", "uri": "library/ast.html#module-$", "dispname": "-"}, {"name": "ast.AST", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AST._fields", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AST.col_offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AST.end_col_offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AST.end_lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AST.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Add", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.And", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AnnAssign", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Assert", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Assign", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Assign.type_comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AsyncFor", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AsyncFunctionDef", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AsyncWith", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Attribute", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.AugAssign", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Await", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.BinOp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.BitAnd", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.BitOr", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.BitXor", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.BoolOp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Break", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Call", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.ClassDef", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Compare", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Constant", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Continue", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Del", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Delete", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Dict", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.DictComp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Div", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Eq", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.ExceptHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Expr", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.FloorDiv", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.For", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.For.type_comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.FormattedValue", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.FunctionDef", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.FunctionDef.type_comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.GeneratorExp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Global", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Gt", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.GtE", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.If", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.IfExp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Import", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.ImportFrom", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.In", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Invert", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Is", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.IsNot", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.JoinedStr", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.LShift", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Lambda", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.List", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.ListComp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Load", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Lt", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.LtE", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatMult", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Match", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchAs", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchClass", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchMapping", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchOr", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchSequence", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchSingleton", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchStar", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.MatchValue", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Mod", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Mult", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Name", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NamedExpr", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NodeTransformer", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NodeVisitor", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NodeVisitor.generic_visit", "domain": "py", "role": "method", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NodeVisitor.visit", "domain": "py", "role": "method", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Nonlocal", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Not", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NotEq", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.NotIn", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Or", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Pass", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Pow", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.PyCF_ALLOW_TOP_LEVEL_AWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.PyCF_ONLY_AST", "domain": "py", "role": "data", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.PyCF_TYPE_COMMENTS", "domain": "py", "role": "data", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.RShift", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Raise", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Return", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Set", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.SetComp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Slice", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Starred", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Store", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Sub", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Subscript", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Try", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Tuple", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.UAdd", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.USub", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.UnaryOp", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.While", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.With", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.With.type_comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.Yield", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.YieldFrom", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.alias", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.arg", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.arg.type_comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.arguments", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.comprehension", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.copy_location", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.dump", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.fix_missing_locations", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.get_docstring", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.get_source_segment", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.increment_lineno", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.iter_child_nodes", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.iter_fields", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.keyword", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.literal_eval", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.match_case", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.parse", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.unparse", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.walk", "domain": "py", "role": "function", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "ast.withitem", "domain": "py", "role": "class", "priority": "1", "uri": "library/ast.html#$", "dispname": "-"}, {"name": "asynchat", "domain": "py", "role": "module", "priority": "0", "uri": "library/asynchat.html#module-$", "dispname": "-"}, {"name": "asynchat.async_chat", "domain": "py", "role": "class", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.ac_in_buffer_size", "domain": "py", "role": "data", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.ac_out_buffer_size", "domain": "py", "role": "data", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.close_when_done", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.collect_incoming_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.discard_buffers", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.found_terminator", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.get_terminator", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.push", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.push_with_producer", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asynchat.async_chat.set_terminator", "domain": "py", "role": "method", "priority": "1", "uri": "library/asynchat.html#$", "dispname": "-"}, {"name": "asyncio", "domain": "py", "role": "module", "priority": "0", "uri": "library/asyncio.html#module-$", "dispname": "-"}, {"name": "asyncio.AbstractChildWatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractChildWatcher.add_child_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractChildWatcher.attach_loop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractChildWatcher.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractChildWatcher.is_active", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractChildWatcher.remove_child_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoop", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoopPolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoopPolicy.get_child_watcher", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoopPolicy.get_event_loop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoopPolicy.new_event_loop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoopPolicy.set_child_watcher", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.AbstractEventLoopPolicy.set_event_loop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.BaseProtocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseProtocol.connection_lost", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseProtocol.connection_made", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseProtocol.pause_writing", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseProtocol.resume_writing", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseTransport", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseTransport.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseTransport.get_extra_info", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseTransport.get_protocol", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseTransport.is_closing", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BaseTransport.set_protocol", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BoundedSemaphore", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.BufferedProtocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BufferedProtocol.buffer_updated", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BufferedProtocol.eof_received", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.BufferedProtocol.get_buffer", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.CancelledError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.Condition", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.locked", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.notify", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.notify_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Condition.wait_for", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.DatagramProtocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.DatagramProtocol.datagram_received", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.DatagramProtocol.error_received", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.DatagramTransport", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.DatagramTransport.abort", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.DatagramTransport.sendto", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.DefaultEventLoopPolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.Event", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Event.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Event.is_set", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Event.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Event.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.FastChildWatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.Future", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.add_done_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.cancelled", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.done", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.get_loop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.remove_done_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.result", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.set_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Future.set_result", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.Handle", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Handle.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Handle.cancelled", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.IncompleteReadError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.IncompleteReadError.expected", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.IncompleteReadError.partial", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.InvalidStateError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.LifoQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.LimitOverrunError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.LimitOverrunError.consumed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.Lock", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Lock.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Lock.locked", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Lock.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.MultiLoopChildWatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.PidfdChildWatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.PriorityQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.ProactorEventLoop", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Protocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.Protocol.data_received", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.Protocol.eof_received", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.Queue", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.empty", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.full", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.get_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.maxsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.put", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.put_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.qsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.Queue.task_done", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.QueueEmpty", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.QueueFull", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-queue.html#$", "dispname": "-"}, {"name": "asyncio.ReadTransport", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.ReadTransport.is_reading", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.ReadTransport.pause_reading", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.ReadTransport.resume_reading", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SafeChildWatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.SelectorEventLoop", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Semaphore", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Semaphore.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Semaphore.locked", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.Semaphore.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-sync.html#$", "dispname": "-"}, {"name": "asyncio.SendfileNotAvailableError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.Server", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.get_loop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.is_serving", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.serve_forever", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.sockets", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.start_serving", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Server.wait_closed", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.StreamReader", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamReader.at_eof", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamReader.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamReader.readexactly", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamReader.readline", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamReader.readuntil", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.can_write_eof", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.drain", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.get_extra_info", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.is_closing", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.transport", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.wait_closed", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.write_eof", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.StreamWriter.writelines", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessProtocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessProtocol.pipe_connection_lost", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessProtocol.pipe_data_received", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessProtocol.process_exited", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.get_pid", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.get_pipe_transport", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.get_returncode", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.kill", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.send_signal", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.SubprocessTransport.terminate", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.Task", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.add_done_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.cancelled", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.done", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.get_coro", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.get_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.get_stack", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.print_stack", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.remove_done_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.result", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.Task.set_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.ThreadedChildWatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.TimeoutError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/asyncio-exceptions.html#$", "dispname": "-"}, {"name": "asyncio.TimerHandle", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.TimerHandle.when", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.Transport", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WindowsProactorEventLoopPolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.WindowsSelectorEventLoopPolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.abort", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.can_write_eof", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.get_write_buffer_limits", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.get_write_buffer_size", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.set_write_buffer_limits", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.write_eof", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.WriteTransport.writelines", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-protocol.html#$", "dispname": "-"}, {"name": "asyncio.all_tasks", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.as_completed", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.coroutine", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.create_subprocess_exec", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.create_subprocess_shell", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.create_task", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.current_task", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.ensure_future", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.gather", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.get_child_watcher", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.get_event_loop", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.get_event_loop_policy", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.get_running_loop", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.iscoroutine", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.iscoroutinefunction", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.isfuture", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncio.loop.add_reader", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.add_signal_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.add_writer", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.call_at", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.call_exception_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.call_later", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.call_soon", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.call_soon_threadsafe", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.connect_accepted_socket", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.connect_read_pipe", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.connect_write_pipe", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_connection", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_datagram_endpoint", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_future", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_server", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_task", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_unix_connection", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.create_unix_server", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.default_exception_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.get_debug", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.get_exception_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.get_task_factory", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.getaddrinfo", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.getnameinfo", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.is_closed", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.is_running", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.remove_reader", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.remove_signal_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.remove_writer", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.run_forever", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.run_in_executor", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.run_until_complete", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sendfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.set_debug", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.set_default_executor", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.set_exception_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.set_task_factory", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.shutdown_asyncgens", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.shutdown_default_executor", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sock_accept", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sock_connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sock_recv", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sock_recv_into", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sock_sendall", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.sock_sendfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.start_tls", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.stop", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.subprocess_exec", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.subprocess_shell", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.loop.time", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.new_event_loop", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.open_connection", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.open_unix_connection", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.run", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.run_coroutine_threadsafe", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.set_child_watcher", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.set_event_loop", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio.set_event_loop_policy", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio.shield", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.sleep", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.start_server", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.start_unix_server", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-stream.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.DEVNULL", "domain": "py", "role": "data", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.PIPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.communicate", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.kill", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.pid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.returncode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.send_signal", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.stderr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.stdin", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.stdout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.terminate", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.Process.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.subprocess.STDOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/asyncio-subprocess.html#$", "dispname": "-"}, {"name": "asyncio.to_thread", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.wait", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.wait_for", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-task.html#$", "dispname": "-"}, {"name": "asyncio.wrap_future", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncio-future.html#$", "dispname": "-"}, {"name": "asyncore", "domain": "py", "role": "module", "priority": "0", "uri": "library/asyncore.html#module-$", "dispname": "-"}, {"name": "asyncore.dispatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.accept", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.bind", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.create_socket", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_accept", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_accepted", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_close", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_error", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_expt", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_read", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.handle_write", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.listen", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.readable", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.recv", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher.writable", "domain": "py", "role": "method", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.dispatcher_with_send", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.file_dispatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.file_wrapper", "domain": "py", "role": "class", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "asyncore.loop", "domain": "py", "role": "function", "priority": "1", "uri": "library/asyncore.html#$", "dispname": "-"}, {"name": "atexit", "domain": "py", "role": "module", "priority": "0", "uri": "library/atexit.html#module-$", "dispname": "-"}, {"name": "atexit.register", "domain": "py", "role": "function", "priority": "1", "uri": "library/atexit.html#$", "dispname": "-"}, {"name": "atexit.unregister", "domain": "py", "role": "function", "priority": "1", "uri": "library/atexit.html#$", "dispname": "-"}, {"name": "audioop", "domain": "py", "role": "module", "priority": "0", "uri": "library/audioop.html#module-$", "dispname": "-"}, {"name": "audioop.add", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.adpcm2lin", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.alaw2lin", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.avg", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.avgpp", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.bias", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.byteswap", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.cross", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.findfactor", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.findfit", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.findmax", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.getsample", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.lin2adpcm", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.lin2alaw", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.lin2lin", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.lin2ulaw", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.max", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.maxpp", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.minmax", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.mul", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.ratecv", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.reverse", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.rms", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.tomono", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.tostereo", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "audioop.ulaw2lin", "domain": "py", "role": "function", "priority": "1", "uri": "library/audioop.html#$", "dispname": "-"}, {"name": "base64", "domain": "py", "role": "module", "priority": "0", "uri": "library/base64.html#module-$", "dispname": "-"}, {"name": "base64.a85decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.a85encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b16decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b16encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b32decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b32encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b32hexdecode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b32hexencode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b64decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b64encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b85decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.b85encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.decodebytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.encodebytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.standard_b64decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.standard_b64encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.urlsafe_b64decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "base64.urlsafe_b64encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/base64.html#$", "dispname": "-"}, {"name": "bdb", "domain": "py", "role": "module", "priority": "0", "uri": "library/bdb.html#module-$", "dispname": "-"}, {"name": "bdb.Bdb", "domain": "py", "role": "class", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.break_anywhere", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.break_here", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.canonic", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.clear_all_breaks", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.clear_all_file_breaks", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.clear_bpbynumber", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.clear_break", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.dispatch_call", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.dispatch_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.dispatch_line", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.dispatch_return", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.do_clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.format_stack_entry", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.get_all_breaks", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.get_bpbynumber", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.get_break", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.get_breaks", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.get_file_breaks", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.get_stack", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.is_skipped_line", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.runcall", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.runctx", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.runeval", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_break", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_continue", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_next", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_quit", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_return", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_step", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_trace", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.set_until", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.stop_here", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.trace_dispatch", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.user_call", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.user_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.user_line", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Bdb.user_return", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.BdbQuit", "domain": "py", "role": "exception", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint", "domain": "py", "role": "class", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.bpbynumber", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.bpformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.bplist", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.bpprint", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.cond", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.deleteMe", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.disable", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.enable", "domain": "py", "role": "method", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.enabled", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.file", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.funcname", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.hits", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.ignore", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.line", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.Breakpoint.temporary", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.checkfuncname", "domain": "py", "role": "function", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.effective", "domain": "py", "role": "function", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bdb.set_trace", "domain": "py", "role": "function", "priority": "1", "uri": "library/bdb.html#$", "dispname": "-"}, {"name": "bin", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "binascii", "domain": "py", "role": "module", "priority": "0", "uri": "library/binascii.html#module-$", "dispname": "-"}, {"name": "binascii.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.Incomplete", "domain": "py", "role": "exception", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.a2b_base64", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.a2b_hex", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.a2b_hqx", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.a2b_qp", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.a2b_uu", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.b2a_base64", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.b2a_hex", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.b2a_hqx", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.b2a_qp", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.b2a_uu", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.crc32", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.crc_hqx", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.hexlify", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.rlecode_hqx", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.rledecode_hqx", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binascii.unhexlify", "domain": "py", "role": "function", "priority": "1", "uri": "library/binascii.html#$", "dispname": "-"}, {"name": "binhex", "domain": "py", "role": "module", "priority": "0", "uri": "library/binhex.html#module-$", "dispname": "-"}, {"name": "binhex.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/binhex.html#$", "dispname": "-"}, {"name": "binhex.binhex", "domain": "py", "role": "function", "priority": "1", "uri": "library/binhex.html#$", "dispname": "-"}, {"name": "binhex.hexbin", "domain": "py", "role": "function", "priority": "1", "uri": "library/binhex.html#$", "dispname": "-"}, {"name": "bisect", "domain": "py", "role": "module", "priority": "0", "uri": "library/bisect.html#module-$", "dispname": "-"}, {"name": "bisect.bisect", "domain": "py", "role": "function", "priority": "1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bisect.bisect_left", "domain": "py", "role": "function", "priority": "1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bisect.bisect_right", "domain": "py", "role": "function", "priority": "1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bisect.insort", "domain": "py", "role": "function", "priority": "1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bisect.insort_left", "domain": "py", "role": "function", "priority": "1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bisect.insort_right", "domain": "py", "role": "function", "priority": "1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bool", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "breakpoint", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "builtins", "domain": "py", "role": "module", "priority": "0", "uri": "library/builtins.html#module-$", "dispname": "-"}, {"name": "bytearray", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.capitalize", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.center", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.count", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.endswith", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.expandtabs", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.fromhex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.hex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.isalnum", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.isalpha", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.isascii", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.isdigit", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.islower", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.isspace", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.istitle", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.isupper", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.ljust", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.lower", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.lstrip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.maketrans", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.partition", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.removeprefix", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.removesuffix", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.rfind", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.rindex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.rjust", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.rpartition", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.rsplit", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.rstrip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.split", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.splitlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.startswith", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.strip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.swapcase", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.title", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.translate", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.upper", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytearray.zfill", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.capitalize", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.center", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.count", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.endswith", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.expandtabs", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.fromhex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.hex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.isalnum", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.isalpha", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.isascii", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.isdigit", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.islower", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.isspace", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.istitle", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.isupper", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.ljust", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.lower", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.lstrip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.maketrans", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.partition", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.removeprefix", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.removesuffix", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.rfind", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.rindex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.rjust", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.rpartition", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.rsplit", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.rstrip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.split", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.splitlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.startswith", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.strip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.swapcase", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.title", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.translate", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.upper", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bytes.zfill", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "bz2", "domain": "py", "role": "module", "priority": "0", "uri": "library/bz2.html#module-$", "dispname": "-"}, {"name": "bz2.BZ2Compressor", "domain": "py", "role": "class", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Compressor.compress", "domain": "py", "role": "method", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Compressor.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Decompressor", "domain": "py", "role": "class", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Decompressor.decompress", "domain": "py", "role": "method", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Decompressor.eof", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Decompressor.needs_input", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2Decompressor.unused_data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2File", "domain": "py", "role": "class", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.BZ2File.peek", "domain": "py", "role": "method", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.compress", "domain": "py", "role": "function", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.decompress", "domain": "py", "role": "function", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "bz2.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/bz2.html#$", "dispname": "-"}, {"name": "cProfile", "domain": "py", "role": "module", "priority": "0", "uri": "library/profile.html#module-$", "dispname": "-"}, {"name": "calendar", "domain": "py", "role": "module", "priority": "0", "uri": "library/calendar.html#module-$", "dispname": "-"}, {"name": "calendar.Calendar", "domain": "py", "role": "class", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.itermonthdates", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.itermonthdays", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.itermonthdays2", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.itermonthdays3", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.itermonthdays4", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.iterweekdays", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.monthdatescalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.monthdays2calendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.monthdayscalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.yeardatescalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.yeardays2calendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.Calendar.yeardayscalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.FRIDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar", "domain": "py", "role": "class", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclass_month", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclass_month_head", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclass_noday", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclass_year", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclass_year_head", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclasses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.cssclasses_weekday_head", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.formatmonth", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.formatyear", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.HTMLCalendar.formatyearpage", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.LocaleHTMLCalendar", "domain": "py", "role": "class", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.LocaleTextCalendar", "domain": "py", "role": "class", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.MONDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.SATURDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.SUNDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.THURSDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.TUESDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.TextCalendar", "domain": "py", "role": "class", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.TextCalendar.formatmonth", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.TextCalendar.formatyear", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.TextCalendar.prmonth", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.TextCalendar.pryear", "domain": "py", "role": "method", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.WEDNESDAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.calendar", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.day_abbr", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.day_name", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.firstweekday", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.isleap", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.leapdays", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.month", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.month_abbr", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.month_name", "domain": "py", "role": "data", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.monthcalendar", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.monthrange", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.prcal", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.prmonth", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.setfirstweekday", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.timegm", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.weekday", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "calendar.weekheader", "domain": "py", "role": "function", "priority": "1", "uri": "library/calendar.html#$", "dispname": "-"}, {"name": "callable", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "cgi", "domain": "py", "role": "module", "priority": "0", "uri": "library/cgi.html#module-$", "dispname": "-"}, {"name": "cgi.FieldStorage.getfirst", "domain": "py", "role": "method", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.FieldStorage.getlist", "domain": "py", "role": "method", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.parse", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.parse_header", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.parse_multipart", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.print_directory", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.print_environ", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.print_environ_usage", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.print_form", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi.test", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgitb", "domain": "py", "role": "module", "priority": "0", "uri": "library/cgitb.html#module-$", "dispname": "-"}, {"name": "cgitb.enable", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgitb.html#$", "dispname": "-"}, {"name": "cgitb.handler", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgitb.html#$", "dispname": "-"}, {"name": "cgitb.html", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgitb.html#$", "dispname": "-"}, {"name": "cgitb.text", "domain": "py", "role": "function", "priority": "1", "uri": "library/cgitb.html#$", "dispname": "-"}, {"name": "chr", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "chunk", "domain": "py", "role": "module", "priority": "0", "uri": "library/chunk.html#module-$", "dispname": "-"}, {"name": "chunk.Chunk", "domain": "py", "role": "class", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.getname", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.getsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.isatty", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.seek", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.skip", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "chunk.Chunk.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/chunk.html#$", "dispname": "-"}, {"name": "class.__bases__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "class.__instancecheck__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "class.__mro__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "class.__subclasscheck__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "class.__subclasses__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "class.mro", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "classmethod", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "cmath", "domain": "py", "role": "module", "priority": "0", "uri": "library/cmath.html#module-$", "dispname": "-"}, {"name": "cmath.acos", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.acosh", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.asin", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.asinh", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.atan", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.atanh", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.cos", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.cosh", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.e", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.exp", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.inf", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.infj", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.isclose", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.isfinite", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.isinf", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.isnan", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.log", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.log10", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.nan", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.nanj", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.phase", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.pi", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.polar", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.rect", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.sin", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.sinh", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.sqrt", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.tan", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.tanh", "domain": "py", "role": "function", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmath.tau", "domain": "py", "role": "data", "priority": "1", "uri": "library/cmath.html#$", "dispname": "-"}, {"name": "cmd", "domain": "py", "role": "module", "priority": "0", "uri": "library/cmd.html#module-$", "dispname": "-"}, {"name": "cmd.Cmd", "domain": "py", "role": "class", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.cmdloop", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.cmdqueue", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.completedefault", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.default", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.doc_header", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.emptyline", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.identchars", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.intro", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.lastcmd", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.misc_header", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.onecmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.postcmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.postloop", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.precmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.preloop", "domain": "py", "role": "method", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.prompt", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.ruler", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.undoc_header", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "cmd.Cmd.use_rawinput", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/cmd.html#$", "dispname": "-"}, {"name": "code", "domain": "py", "role": "module", "priority": "0", "uri": "library/code.html#module-$", "dispname": "-"}, {"name": "code.InteractiveConsole", "domain": "py", "role": "class", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveConsole.interact", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveConsole.push", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveConsole.raw_input", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveConsole.resetbuffer", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveInterpreter", "domain": "py", "role": "class", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveInterpreter.runcode", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveInterpreter.runsource", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveInterpreter.showsyntaxerror", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveInterpreter.showtraceback", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.InteractiveInterpreter.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.compile_command", "domain": "py", "role": "function", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "code.interact", "domain": "py", "role": "function", "priority": "1", "uri": "library/code.html#$", "dispname": "-"}, {"name": "codecs", "domain": "py", "role": "module", "priority": "0", "uri": "library/codecs.html#module-$", "dispname": "-"}, {"name": "codecs.BOM", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_BE", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_LE", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF16", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF16_BE", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF16_LE", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF32", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF32_BE", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF32_LE", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.BOM_UTF8", "domain": "py", "role": "data", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.Codec.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.Codec.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.decode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.encode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.incrementaldecoder", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.incrementalencoder", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.streamreader", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.CodecInfo.streamwriter", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.EncodedFile", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalDecoder", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalDecoder.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalDecoder.getstate", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalDecoder.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalDecoder.setstate", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalEncoder", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalEncoder.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalEncoder.getstate", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalEncoder.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.IncrementalEncoder.setstate", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamReader", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamReader.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamReader.readline", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamReader.readlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamReader.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamReaderWriter", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamRecoder", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamWriter", "domain": "py", "role": "class", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamWriter.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamWriter.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.StreamWriter.writelines", "domain": "py", "role": "method", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.backslashreplace_errors", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.getdecoder", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.getencoder", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.getincrementaldecoder", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.getincrementalencoder", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.getreader", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.getwriter", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.ignore_errors", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.iterdecode", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.iterencode", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.lookup", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.lookup_error", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.namereplace_errors", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.register", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.register_error", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.replace_errors", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.strict_errors", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.unregister", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codecs.xmlcharrefreplace_errors", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "codeop", "domain": "py", "role": "module", "priority": "0", "uri": "library/codeop.html#module-$", "dispname": "-"}, {"name": "codeop.CommandCompiler", "domain": "py", "role": "class", "priority": "1", "uri": "library/codeop.html#$", "dispname": "-"}, {"name": "codeop.Compile", "domain": "py", "role": "class", "priority": "1", "uri": "library/codeop.html#$", "dispname": "-"}, {"name": "codeop.compile_command", "domain": "py", "role": "function", "priority": "1", "uri": "library/codeop.html#$", "dispname": "-"}, {"name": "collections", "domain": "py", "role": "module", "priority": "0", "uri": "library/collections.html#module-$", "dispname": "-"}, {"name": "collections.ChainMap", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.ChainMap.maps", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.ChainMap.new_child", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.ChainMap.parents", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter.elements", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter.fromkeys", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter.most_common", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter.subtract", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter.total", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.Counter.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.OrderedDict", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.OrderedDict.move_to_end", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.OrderedDict.popitem", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.UserDict", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.UserDict.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.UserList", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.UserList.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.UserString", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.UserString.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.abc", "domain": "py", "role": "module", "priority": "0", "uri": "library/collections.abc.html#module-$", "dispname": "-"}, {"name": "collections.abc.AsyncGenerator", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.AsyncIterable", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.AsyncIterator", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Awaitable", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.ByteString", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Callable", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Collection", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Container", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Coroutine", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Generator", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Hashable", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.ItemsView", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Iterable", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Iterator", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.KeysView", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Mapping", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.MappingView", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.MutableMapping", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.MutableSequence", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.MutableSet", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Reversible", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Sequence", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Set", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.Sized", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.abc.ValuesView", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.abc.html#$", "dispname": "-"}, {"name": "collections.defaultdict", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.defaultdict.__missing__", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.defaultdict.default_factory", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque", "domain": "py", "role": "class", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.appendleft", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.count", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.extend", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.extendleft", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.insert", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.maxlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.pop", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.popleft", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.reverse", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.deque.rotate", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.namedtuple", "domain": "py", "role": "function", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.somenamedtuple._asdict", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.somenamedtuple._field_defaults", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.somenamedtuple._fields", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.somenamedtuple._make", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "collections.somenamedtuple._replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/collections.html#$", "dispname": "-"}, {"name": "colorsys", "domain": "py", "role": "module", "priority": "0", "uri": "library/colorsys.html#module-$", "dispname": "-"}, {"name": "colorsys.hls_to_rgb", "domain": "py", "role": "function", "priority": "1", "uri": "library/colorsys.html#$", "dispname": "-"}, {"name": "colorsys.hsv_to_rgb", "domain": "py", "role": "function", "priority": "1", "uri": "library/colorsys.html#$", "dispname": "-"}, {"name": "colorsys.rgb_to_hls", "domain": "py", "role": "function", "priority": "1", "uri": "library/colorsys.html#$", "dispname": "-"}, {"name": "colorsys.rgb_to_hsv", "domain": "py", "role": "function", "priority": "1", "uri": "library/colorsys.html#$", "dispname": "-"}, {"name": "colorsys.rgb_to_yiq", "domain": "py", "role": "function", "priority": "1", "uri": "library/colorsys.html#$", "dispname": "-"}, {"name": "colorsys.yiq_to_rgb", "domain": "py", "role": "function", "priority": "1", "uri": "library/colorsys.html#$", "dispname": "-"}, {"name": "compile", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "compileall", "domain": "py", "role": "module", "priority": "0", "uri": "library/compileall.html#module-$", "dispname": "-"}, {"name": "compileall.compile_dir", "domain": "py", "role": "function", "priority": "1", "uri": "library/compileall.html#$", "dispname": "-"}, {"name": "compileall.compile_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/compileall.html#$", "dispname": "-"}, {"name": "compileall.compile_path", "domain": "py", "role": "function", "priority": "1", "uri": "library/compileall.html#$", "dispname": "-"}, {"name": "complex", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "concurrent.futures", "domain": "py", "role": "module", "priority": "0", "uri": "library/concurrent.futures.html#module-$", "dispname": "-"}, {"name": "concurrent.futures.BrokenExecutor", "domain": "py", "role": "exception", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.CancelledError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Executor", "domain": "py", "role": "class", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Executor.map", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Executor.shutdown", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Executor.submit", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future", "domain": "py", "role": "class", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.add_done_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.cancelled", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.done", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.result", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.running", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.set_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.set_result", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.Future.set_running_or_notify_cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.InvalidStateError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.ProcessPoolExecutor", "domain": "py", "role": "class", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.ThreadPoolExecutor", "domain": "py", "role": "class", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.TimeoutError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.as_completed", "domain": "py", "role": "function", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.process.BrokenProcessPool", "domain": "py", "role": "exception", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.thread.BrokenThreadPool", "domain": "py", "role": "exception", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "concurrent.futures.wait", "domain": "py", "role": "function", "priority": "1", "uri": "library/concurrent.futures.html#$", "dispname": "-"}, {"name": "configparser", "domain": "py", "role": "module", "priority": "0", "uri": "library/configparser.html#module-$", "dispname": "-"}, {"name": "configparser.BasicInterpolation", "domain": "py", "role": "class", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.BOOLEAN_STATES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.SECTCRE", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.add_section", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.defaults", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.getboolean", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.getfloat", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.getint", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.has_option", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.has_section", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.options", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.optionxform", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.read_dict", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.read_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.read_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.readfp", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.remove_option", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.remove_section", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.sections", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ConfigParser.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.DuplicateOptionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.DuplicateSectionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ExtendedInterpolation", "domain": "py", "role": "class", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.InterpolationDepthError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.InterpolationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.InterpolationMissingOptionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.InterpolationSyntaxError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.MAX_INTERPOLATION_DEPTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.MissingSectionHeaderError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.NoOptionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.NoSectionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.ParsingError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.RawConfigParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.RawConfigParser.add_section", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "configparser.RawConfigParser.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/configparser.html#$", "dispname": "-"}, {"name": "container.__iter__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "contextlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/contextlib.html#module-$", "dispname": "-"}, {"name": "contextlib.AbstractAsyncContextManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AbstractContextManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AsyncContextDecorator", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AsyncExitStack", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AsyncExitStack.aclose", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AsyncExitStack.enter_async_context", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AsyncExitStack.push_async_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.AsyncExitStack.push_async_exit", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ContextDecorator", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ExitStack", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ExitStack.callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ExitStack.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ExitStack.enter_context", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ExitStack.pop_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.ExitStack.push", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.aclosing", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.asynccontextmanager", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.closing", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.contextmanager", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.nullcontext", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.redirect_stderr", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.redirect_stdout", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextlib.suppress", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "contextmanager.__enter__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "contextmanager.__exit__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "contextvars", "domain": "py", "role": "module", "priority": "0", "uri": "library/contextvars.html#module-$", "dispname": "-"}, {"name": "contextvars.Context", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Context.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Context.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Context.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Context.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Context.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Context.values", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.ContextVar", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.ContextVar.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.ContextVar.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.ContextVar.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.ContextVar.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Token", "domain": "py", "role": "class", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Token.MISSING", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Token.old_value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.Token.var", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "contextvars.copy_context", "domain": "py", "role": "function", "priority": "1", "uri": "library/contextvars.html#$", "dispname": "-"}, {"name": "copy", "domain": "py", "role": "module", "priority": "0", "uri": "library/copy.html#module-$", "dispname": "-"}, {"name": "copy.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/copy.html#$", "dispname": "-"}, {"name": "copy.copy", "domain": "py", "role": "function", "priority": "1", "uri": "library/copy.html#$", "dispname": "-"}, {"name": "copy.deepcopy", "domain": "py", "role": "function", "priority": "1", "uri": "library/copy.html#$", "dispname": "-"}, {"name": "copyreg", "domain": "py", "role": "module", "priority": "0", "uri": "library/copyreg.html#module-$", "dispname": "-"}, {"name": "copyreg.constructor", "domain": "py", "role": "function", "priority": "1", "uri": "library/copyreg.html#$", "dispname": "-"}, {"name": "copyreg.pickle", "domain": "py", "role": "function", "priority": "1", "uri": "library/copyreg.html#$", "dispname": "-"}, {"name": "copyright", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "coroutine.close", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "coroutine.send", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "coroutine.throw", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "create_shortcut", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/builtdist.html#$", "dispname": "-"}, {"name": "credits", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "crypt", "domain": "py", "role": "module", "priority": "0", "uri": "library/crypt.html#module-$", "dispname": "-"}, {"name": "crypt.METHOD_BLOWFISH", "domain": "py", "role": "data", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.METHOD_CRYPT", "domain": "py", "role": "data", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.METHOD_MD5", "domain": "py", "role": "data", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.METHOD_SHA256", "domain": "py", "role": "data", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.METHOD_SHA512", "domain": "py", "role": "data", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.crypt", "domain": "py", "role": "function", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.methods", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "crypt.mksalt", "domain": "py", "role": "function", "priority": "1", "uri": "library/crypt.html#$", "dispname": "-"}, {"name": "csv", "domain": "py", "role": "module", "priority": "0", "uri": "library/csv.html#module-$", "dispname": "-"}, {"name": "csv.Dialect", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.delimiter", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.doublequote", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.escapechar", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.lineterminator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.quotechar", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.quoting", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.skipinitialspace", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Dialect.strict", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.DictReader", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.DictReader.fieldnames", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.DictWriter", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.DictWriter.writeheader", "domain": "py", "role": "method", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.QUOTE_ALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.QUOTE_MINIMAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.QUOTE_NONE", "domain": "py", "role": "data", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.QUOTE_NONNUMERIC", "domain": "py", "role": "data", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Sniffer", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Sniffer.has_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.Sniffer.sniff", "domain": "py", "role": "method", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.csvreader.__next__", "domain": "py", "role": "method", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.csvreader.dialect", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.csvreader.line_num", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.csvwriter.dialect", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.csvwriter.writerow", "domain": "py", "role": "method", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.csvwriter.writerows", "domain": "py", "role": "method", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.excel", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.excel_tab", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.field_size_limit", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.get_dialect", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.list_dialects", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.reader", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.register_dialect", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.unix_dialect", "domain": "py", "role": "class", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.unregister_dialect", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "csv.writer", "domain": "py", "role": "function", "priority": "1", "uri": "library/csv.html#$", "dispname": "-"}, {"name": "ctypes", "domain": "py", "role": "module", "priority": "0", "uri": "library/ctypes.html#module-$", "dispname": "-"}, {"name": "ctypes.ArgumentError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Array", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Array._length_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Array._type_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.BigEndianStructure", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.CDLL", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.CFUNCTYPE", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.DllCanUnloadNow", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.DllGetClassObject", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.FormatError", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.GetLastError", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.HRESULT", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.LibraryLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.LibraryLoader.LoadLibrary", "domain": "py", "role": "method", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.LittleEndianStructure", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.OleDLL", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.POINTER", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.PYFUNCTYPE", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.PyDLL", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.PyDLL._handle", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.PyDLL._name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Structure", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Structure._anonymous_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Structure._fields_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Structure._pack_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.Union", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.WINFUNCTYPE", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.WinDLL", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.WinError", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData._b_base_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData._b_needsfree_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData._objects", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData.from_address", "domain": "py", "role": "method", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData.from_buffer", "domain": "py", "role": "method", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData.from_buffer_copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData.from_param", "domain": "py", "role": "method", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._CData.in_dll", "domain": "py", "role": "method", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._FuncPtr", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._FuncPtr.argtypes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._FuncPtr.errcheck", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._FuncPtr.restype", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._Pointer", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._Pointer._type_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._Pointer.contents", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._SimpleCData", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes._SimpleCData.value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.addressof", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.alignment", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.byref", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_bool", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_byte", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_char", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_char_p", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_double", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_float", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_int", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_int16", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_int32", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_int64", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_int8", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_long", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_longdouble", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_longlong", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_short", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_size_t", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_ssize_t", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_ubyte", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_uint", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_uint16", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_uint32", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_uint64", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_uint8", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_ulong", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_ulonglong", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_ushort", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_void_p", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_wchar", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.c_wchar_p", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.cast", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.create_string_buffer", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.create_unicode_buffer", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.get_errno", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.get_last_error", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.memmove", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.memset", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.pointer", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.py_object", "domain": "py", "role": "class", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.resize", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.set_errno", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.set_last_error", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.sizeof", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.string_at", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.util.find_library", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.util.find_msvcrt", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes.wstring_at", "domain": "py", "role": "function", "priority": "1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "curses", "domain": "py", "role": "module", "priority": "0", "uri": "library/curses.html#module-$", "dispname": "-"}, {"name": "curses.ERR", "domain": "py", "role": "data", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.ascii", "domain": "py", "role": "module", "priority": "0", "uri": "library/curses.ascii.html#module-$", "dispname": "-"}, {"name": "curses.ascii.alt", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.ascii", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.controlnames", "domain": "py", "role": "data", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.ctrl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isalnum", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isalpha", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isascii", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isblank", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.iscntrl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isctrl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isdigit", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isgraph", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.islower", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.ismeta", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isprint", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.ispunct", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isspace", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isupper", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.isxdigit", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.ascii.unctrl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.ascii.html#$", "dispname": "-"}, {"name": "curses.baudrate", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.beep", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.can_change_color", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.cbreak", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.color_content", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.color_pair", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.curs_set", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.def_prog_mode", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.def_shell_mode", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.delay_output", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.doupdate", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.echo", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.endwin", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.erasechar", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.filter", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.flash", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.flushinp", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.get_escdelay", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.get_tabsize", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.getmouse", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.getsyx", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.getwin", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.halfdelay", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.has_colors", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.has_extended_color_support", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.has_ic", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.has_il", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.has_key", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.init_color", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.init_pair", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.initscr", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.is_term_resized", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.isendwin", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.keyname", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.killchar", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.longname", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.meta", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.mouseinterval", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.mousemask", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.napms", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.ncurses_version", "domain": "py", "role": "data", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.newpad", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.newwin", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.nl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.nocbreak", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.noecho", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.nonl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.noqiflush", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.noraw", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.pair_content", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.pair_number", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.panel", "domain": "py", "role": "module", "priority": "0", "uri": "library/curses.panel.html#module-$", "dispname": "-"}, {"name": "curses.panel.Panel.above", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.below", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.bottom", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.hidden", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.hide", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.move", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.set_userptr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.show", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.top", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.userptr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.Panel.window", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.bottom_panel", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.new_panel", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.top_panel", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.panel.update_panels", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.panel.html#$", "dispname": "-"}, {"name": "curses.putp", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.qiflush", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.raw", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.reset_prog_mode", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.reset_shell_mode", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.resetty", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.resize_term", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.resizeterm", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.savetty", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.set_escdelay", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.set_tabsize", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.setsyx", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.setupterm", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.start_color", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.termattrs", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.termname", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.textpad", "domain": "py", "role": "module", "priority": "0", "uri": "library/curses.html#module-$", "dispname": "-"}, {"name": "curses.textpad.Textbox", "domain": "py", "role": "class", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.textpad.Textbox.do_command", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.textpad.Textbox.edit", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.textpad.Textbox.gather", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.textpad.Textbox.stripspaces", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.textpad.rectangle", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.tigetflag", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.tigetnum", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.tigetstr", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.tparm", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.typeahead", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.unctrl", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.unget_wch", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.ungetch", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.ungetmouse", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.update_lines_cols", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.use_default_colors", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.use_env", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.version", "domain": "py", "role": "data", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.addch", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.addnstr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.addstr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.attroff", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.attron", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.attrset", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.bkgd", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.bkgdset", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.border", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.box", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.chgat", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.clearok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.clrtobot", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.clrtoeol", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.cursyncup", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.delch", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.deleteln", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.derwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.echochar", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.enclose", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.encoding", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.erase", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.get_wch", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getbegyx", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getbkgd", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getch", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getkey", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getmaxyx", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getparyx", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getstr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.getyx", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.hline", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.idcok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.idlok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.immedok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.inch", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.insch", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.insdelln", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.insertln", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.insnstr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.insstr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.instr", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.is_linetouched", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.is_wintouched", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.keypad", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.leaveok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.move", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.mvderwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.mvwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.nodelay", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.notimeout", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.noutrefresh", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.overlay", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.overwrite", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.putwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.redrawln", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.redrawwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.refresh", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.resize", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.scroll", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.scrollok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.setscrreg", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.standend", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.standout", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.subpad", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.subwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.syncdown", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.syncok", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.syncup", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.timeout", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.touchline", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.touchwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.untouchwin", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.window.vline", "domain": "py", "role": "method", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "curses.wrapper", "domain": "py", "role": "function", "priority": "1", "uri": "library/curses.html#$", "dispname": "-"}, {"name": "dataclasses", "domain": "py", "role": "module", "priority": "0", "uri": "library/dataclasses.html#module-$", "dispname": "-"}, {"name": "dataclasses.Field", "domain": "py", "role": "class", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.FrozenInstanceError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.KW_ONLY", "domain": "py", "role": "data", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.MISSING", "domain": "py", "role": "data", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.asdict", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.astuple", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.dataclass", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.field", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.fields", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.is_dataclass", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.make_dataclass", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "dataclasses.replace", "domain": "py", "role": "function", "priority": "1", "uri": "library/dataclasses.html#$", "dispname": "-"}, {"name": "datetime", "domain": "py", "role": "module", "priority": "0", "uri": "library/datetime.html#module-$", "dispname": "-"}, {"name": "datetime.MAXYEAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.MINYEAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date", "domain": "py", "role": "class", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.__format__", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.ctime", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.day", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.fromisocalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.fromisoformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.fromordinal", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.fromtimestamp", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.isocalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.isoformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.isoweekday", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.max", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.min", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.month", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.resolution", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.strftime", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.timetuple", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.today", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.toordinal", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.weekday", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.date.year", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime", "domain": "py", "role": "class", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.__format__", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.astimezone", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.combine", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.ctime", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.date", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.day", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.dst", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.fold", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.fromisocalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.fromisoformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.fromordinal", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.fromtimestamp", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.hour", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.isocalendar", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.isoformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.isoweekday", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.max", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.microsecond", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.min", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.minute", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.month", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.now", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.resolution", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.second", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.strftime", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.strptime", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.time", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.timestamp", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.timetuple", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.timetz", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.today", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.toordinal", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.tzinfo", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.tzname", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.utcfromtimestamp", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.utcnow", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.utcoffset", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.utctimetuple", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.weekday", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.datetime.year", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time", "domain": "py", "role": "class", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.__format__", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.dst", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.fold", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.fromisoformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.hour", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.isoformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.max", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.microsecond", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.min", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.minute", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.resolution", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.second", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.strftime", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.tzinfo", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.tzname", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.time.utcoffset", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timedelta", "domain": "py", "role": "class", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timedelta.max", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timedelta.min", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timedelta.resolution", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timedelta.total_seconds", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timezone", "domain": "py", "role": "class", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timezone.dst", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timezone.fromutc", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timezone.tzname", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timezone.utc", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.timezone.utcoffset", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.tzinfo", "domain": "py", "role": "class", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.tzinfo.dst", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.tzinfo.fromutc", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.tzinfo.tzname", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "datetime.tzinfo.utcoffset", "domain": "py", "role": "method", "priority": "1", "uri": "library/datetime.html#$", "dispname": "-"}, {"name": "dbm", "domain": "py", "role": "module", "priority": "0", "uri": "library/dbm.html#module-$", "dispname": "-"}, {"name": "dbm.dumb", "domain": "py", "role": "module", "priority": "0", "uri": "library/dbm.html#module-$", "dispname": "-"}, {"name": "dbm.dumb.dumbdbm.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.dumb.dumbdbm.sync", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.dumb.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.dumb.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu", "domain": "py", "role": "module", "priority": "0", "uri": "library/dbm.html#module-$", "dispname": "-"}, {"name": "dbm.gnu.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu.gdbm.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu.gdbm.firstkey", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu.gdbm.nextkey", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu.gdbm.reorganize", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu.gdbm.sync", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.gnu.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.ndbm", "domain": "py", "role": "module", "priority": "0", "uri": "library/dbm.html#module-$", "dispname": "-"}, {"name": "dbm.ndbm.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.ndbm.library", "domain": "py", "role": "data", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.ndbm.ndbm.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.ndbm.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "dbm.whichdb", "domain": "py", "role": "function", "priority": "1", "uri": "library/dbm.html#$", "dispname": "-"}, {"name": "decimal", "domain": "py", "role": "module", "priority": "0", "uri": "library/decimal.html#module-$", "dispname": "-"}, {"name": "decimal.BasicContext", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Clamped", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.Etiny", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.Etop", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.abs", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.canonical", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.clear_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.clear_traps", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.compare", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.compare_signal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.compare_total", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.compare_total_mag", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.copy_abs", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.copy_decimal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.copy_negate", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.copy_sign", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.create_decimal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.create_decimal_from_float", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.divide", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.divide_int", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.divmod", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.exp", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.fma", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_canonical", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_finite", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_infinite", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_nan", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_normal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_qnan", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_signed", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_snan", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_subnormal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.is_zero", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.ln", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.log10", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.logb", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.logical_and", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.logical_invert", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.logical_or", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.logical_xor", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.max", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.max_mag", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.min", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.min_mag", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.minus", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.multiply", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.next_minus", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.next_plus", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.next_toward", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.normalize", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.number_class", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.plus", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.power", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.quantize", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.radix", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.remainder", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.remainder_near", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.rotate", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.same_quantum", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.scaleb", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.shift", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.sqrt", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.subtract", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.to_eng_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.to_integral_exact", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Context.to_sci_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.adjusted", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.as_integer_ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.as_tuple", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.canonical", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.compare", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.compare_signal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.compare_total", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.compare_total_mag", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.copy_abs", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.copy_negate", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.copy_sign", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.exp", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.fma", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.from_float", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_canonical", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_finite", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_infinite", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_nan", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_normal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_qnan", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_signed", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_snan", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_subnormal", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.is_zero", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.ln", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.log10", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.logb", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.logical_and", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.logical_invert", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.logical_or", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.logical_xor", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.max", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.max_mag", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.min", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.min_mag", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.next_minus", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.next_plus", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.next_toward", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.normalize", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.number_class", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.quantize", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.radix", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.remainder_near", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.rotate", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.same_quantum", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.scaleb", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.shift", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.sqrt", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.to_eng_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.to_integral", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.to_integral_exact", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Decimal.to_integral_value", "domain": "py", "role": "method", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.DecimalException", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.DefaultContext", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.DivisionByZero", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ExtendedContext", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.FloatOperation", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.HAVE_CONTEXTVAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.HAVE_THREADS", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Inexact", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.InvalidOperation", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.MAX_EMAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.MAX_PREC", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.MIN_EMIN", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.MIN_ETINY", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Overflow", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_05UP", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_CEILING", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_DOWN", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_FLOOR", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_HALF_DOWN", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_HALF_EVEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_HALF_UP", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.ROUND_UP", "domain": "py", "role": "data", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Rounded", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Subnormal", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.Underflow", "domain": "py", "role": "class", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.getcontext", "domain": "py", "role": "function", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.localcontext", "domain": "py", "role": "function", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "decimal.setcontext", "domain": "py", "role": "function", "priority": "1", "uri": "library/decimal.html#$", "dispname": "-"}, {"name": "definition.__name__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "definition.__qualname__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "delattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "dict", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.fromkeys", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.pop", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.popitem", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.setdefault", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "dict.values", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "difflib", "domain": "py", "role": "module", "priority": "0", "uri": "library/difflib.html#module-$", "dispname": "-"}, {"name": "difflib.Differ", "domain": "py", "role": "class", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.Differ.compare", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.HtmlDiff", "domain": "py", "role": "class", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.HtmlDiff.__init__", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.HtmlDiff.make_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.HtmlDiff.make_table", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.IS_CHARACTER_JUNK", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.IS_LINE_JUNK", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.find_longest_match", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.get_grouped_opcodes", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.get_matching_blocks", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.get_opcodes", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.quick_ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.real_quick_ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.set_seq1", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.set_seq2", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.SequenceMatcher.set_seqs", "domain": "py", "role": "method", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.context_diff", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.diff_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.get_close_matches", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.ndiff", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.restore", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "difflib.unified_diff", "domain": "py", "role": "function", "priority": "1", "uri": "library/difflib.html#$", "dispname": "-"}, {"name": "dir", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "directory_created", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/builtdist.html#$", "dispname": "-"}, {"name": "dis", "domain": "py", "role": "module", "priority": "0", "uri": "library/dis.html#module-$", "dispname": "-"}, {"name": "dis.Bytecode", "domain": "py", "role": "class", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Bytecode.codeobj", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Bytecode.dis", "domain": "py", "role": "method", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Bytecode.first_line", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Bytecode.from_traceback", "domain": "py", "role": "method", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Bytecode.info", "domain": "py", "role": "method", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction", "domain": "py", "role": "class", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.arg", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.argrepr", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.argval", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.is_jump_target", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.offset", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.opcode", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.opname", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.Instruction.starts_line", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.cmp_op", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.code_info", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.dis", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.disassemble", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.disco", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.distb", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.findlabels", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.findlinestarts", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.get_instructions", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.hascompare", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.hasconst", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.hasfree", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.hasjabs", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.hasjrel", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.haslocal", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.hasname", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.opmap", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.opname", "domain": "py", "role": "data", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.show_code", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "dis.stack_effect", "domain": "py", "role": "function", "priority": "1", "uri": "library/dis.html#$", "dispname": "-"}, {"name": "distutils", "domain": "py", "role": "module", "priority": "0", "uri": "library/distutils.html#module-$", "dispname": "-"}, {"name": "distutils.archive_util", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.archive_util.make_archive", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.archive_util.make_tarball", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.archive_util.make_zipfile", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.bcppcompiler", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.ccompiler", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.add_include_dir", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.add_library", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.add_library_dir", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.add_link_object", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.add_runtime_library_dir", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.announce", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.compile", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.create_static_lib", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.debug_print", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.define_macro", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.detect_language", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.executable_filename", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.execute", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.find_library_file", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.has_function", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.library_dir_option", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.library_filename", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.library_option", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.link", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.link_executable", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.link_shared_lib", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.link_shared_object", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.mkpath", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.move_file", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.object_filenames", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.preprocess", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.runtime_library_dir_option", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.set_executables", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.set_include_dirs", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.set_libraries", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.set_library_dirs", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.set_link_objects", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.set_runtime_library_dirs", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.shared_object_filename", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.spawn", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.undefine_macro", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.CCompiler.warn", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.gen_lib_options", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.gen_preprocess_options", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.get_default_compiler", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.new_compiler", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.ccompiler.show_compilers", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.cmd", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.cmd.Command", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.cmd.Command.finalize_options", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.cmd.Command.initialize_options", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.cmd.Command.run", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.cmd.Command.sub_commands", "domain": "py", "role": "attribute", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.command", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.bdist", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.bdist_dumb", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.bdist_msi", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.bdist_msi.bdist_msi", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.command.bdist_packager", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.bdist_rpm", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.build", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.build_clib", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.build_ext", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.build_py", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.build_py.build_py", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.command.build_py.build_py_2to3", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.command.build_scripts", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.check", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.clean", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.config", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.install", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.install_data", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.install_headers", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.install_lib", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.install_scripts", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.register", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.command.sdist", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.core", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.core.Command", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.core.Distribution", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.core.Extension", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.core.run_setup", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.core.setup", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.cygwinccompiler", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.debug", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.dep_util", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.dep_util.newer", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dep_util.newer_group", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dep_util.newer_pairwise", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dir_util", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.dir_util.copy_tree", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dir_util.create_tree", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dir_util.mkpath", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dir_util.remove_tree", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.dist", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.errors", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.extension", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.fancy_getopt", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.fancy_getopt.FancyGetopt", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.fancy_getopt.FancyGetopt.generate_help", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.fancy_getopt.FancyGetopt.get_option_order", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.fancy_getopt.FancyGetopt.getopt", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.fancy_getopt.fancy_getopt", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.fancy_getopt.wrap_text", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.file_util", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.file_util.copy_file", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.file_util.move_file", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.file_util.write_file", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.filelist", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.log", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.msvccompiler", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.spawn", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.sysconfig", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.sysconfig.EXEC_PREFIX", "domain": "py", "role": "data", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.PREFIX", "domain": "py", "role": "data", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.customize_compiler", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.get_config_h_filename", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.get_config_var", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.get_config_vars", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.get_makefile_filename", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.get_python_inc", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.get_python_lib", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.sysconfig.set_python_build", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.text_file.TextFile", "domain": "py", "role": "class", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file.TextFile.close", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file.TextFile.open", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file.TextFile.readline", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file.TextFile.readlines", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file.TextFile.unreadline", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.text_file.TextFile.warn", "domain": "py", "role": "method", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.unixccompiler", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.util", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "distutils.util.byte_compile", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.change_root", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.check_environ", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.convert_path", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.execute", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.get_platform", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.rfc822_escape", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.split_quoted", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.strtobool", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.util.subst_vars", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/apiref.html#$", "dispname": "-"}, {"name": "distutils.version", "domain": "py", "role": "module", "priority": "0", "uri": "distutils/apiref.html#module-$", "dispname": "-"}, {"name": "divmod", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "doctest", "domain": "py", "role": "module", "priority": "0", "uri": "library/doctest.html#module-$", "dispname": "-"}, {"name": "doctest.COMPARISON_FLAGS", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DONT_ACCEPT_BLANKLINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DONT_ACCEPT_TRUE_FOR_1", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DebugRunner", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocFileSuite", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest.docstring", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest.examples", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest.globs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTest.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestFailure", "domain": "py", "role": "exception", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestFailure.example", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestFailure.got", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestFailure.test", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestFinder.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestParser.get_doctest", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestParser.get_examples", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestParser.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner.report_failure", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner.report_start", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner.report_success", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner.report_unexpected_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestRunner.summarize", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.DocTestSuite", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.ELLIPSIS", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example.exc_msg", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example.indent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example.options", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example.source", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.Example.want", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.FAIL_FAST", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.IGNORE_EXCEPTION_DETAIL", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.NORMALIZE_WHITESPACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.OutputChecker", "domain": "py", "role": "class", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.OutputChecker.check_output", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.OutputChecker.output_difference", "domain": "py", "role": "method", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.REPORTING_FLAGS", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.REPORT_CDIFF", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.REPORT_NDIFF", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.REPORT_ONLY_FIRST_FAILURE", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.REPORT_UDIFF", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.SKIP", "domain": "py", "role": "data", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.UnexpectedException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.UnexpectedException.example", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.UnexpectedException.exc_info", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.UnexpectedException.test", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.debug", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.debug_src", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.register_optionflag", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.run_docstring_examples", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.script_from_examples", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.set_unittest_reportflags", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.testfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.testmod", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "doctest.testsource", "domain": "py", "role": "function", "priority": "1", "uri": "library/doctest.html#$", "dispname": "-"}, {"name": "email", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.html#module-$", "dispname": "-"}, {"name": "email.charset", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.charset.html#module-$", "dispname": "-"}, {"name": "email.charset.Charset", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.__eq__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.__ne__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.body_encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.body_encoding", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.get_body_encoding", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.get_output_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.header_encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.header_encode_lines", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.header_encoding", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.input_charset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.input_codec", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.output_charset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.Charset.output_codec", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.add_alias", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.add_charset", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.charset.add_codec", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.charset.html#$", "dispname": "-"}, {"name": "email.contentmanager", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.contentmanager.html#module-$", "dispname": "-"}, {"name": "email.contentmanager.ContentManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.ContentManager.add_get_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.ContentManager.add_set_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.ContentManager.get_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.ContentManager.set_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.get_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.raw_data_manager", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.contentmanager.set_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.contentmanager.html#$", "dispname": "-"}, {"name": "email.encoders", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.encoders.html#module-$", "dispname": "-"}, {"name": "email.encoders.encode_7or8bit", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.encoders.html#$", "dispname": "-"}, {"name": "email.encoders.encode_base64", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.encoders.html#$", "dispname": "-"}, {"name": "email.encoders.encode_noop", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.encoders.html#$", "dispname": "-"}, {"name": "email.encoders.encode_quopri", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.encoders.html#$", "dispname": "-"}, {"name": "email.errors", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.errors.html#module-$", "dispname": "-"}, {"name": "email.errors.BoundaryError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/email.errors.html#$", "dispname": "-"}, {"name": "email.errors.HeaderParseError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/email.errors.html#$", "dispname": "-"}, {"name": "email.errors.MessageError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/email.errors.html#$", "dispname": "-"}, {"name": "email.errors.MessageParseError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/email.errors.html#$", "dispname": "-"}, {"name": "email.errors.MultipartConversionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/email.errors.html#$", "dispname": "-"}, {"name": "email.generator", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.generator.html#module-$", "dispname": "-"}, {"name": "email.generator.BytesGenerator", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.BytesGenerator.clone", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.BytesGenerator.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.BytesGenerator.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.DecodedGenerator", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.Generator", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.Generator.clone", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.Generator.flatten", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.generator.Generator.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.generator.html#$", "dispname": "-"}, {"name": "email.header", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.header.html#module-$", "dispname": "-"}, {"name": "email.header.Header", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.Header.__eq__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.Header.__ne__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.Header.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.Header.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.Header.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.decode_header", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.header.make_header", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.header.html#$", "dispname": "-"}, {"name": "email.headerregistry", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.headerregistry.html#module-$", "dispname": "-"}, {"name": "email.headerregistry.Address", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Address.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Address.addr_spec", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Address.display_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Address.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Address.username", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.AddressHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.AddressHeader.addresses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.AddressHeader.groups", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.BaseHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.BaseHeader.defects", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.BaseHeader.fold", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.BaseHeader.max_count", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.BaseHeader.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentDispositionHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentDispositionHeader.content_disposition", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentTransferEncoding", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentTransferEncoding.cte", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentTypeHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentTypeHeader.content_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentTypeHeader.maintype", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ContentTypeHeader.subtype", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.DateHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.DateHeader.datetime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Group", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Group.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Group.addresses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.Group.display_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.HeaderRegistry", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.HeaderRegistry.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.HeaderRegistry.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.HeaderRegistry.map_to_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.MIMEVersionHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.MIMEVersionHeader.major", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.MIMEVersionHeader.minor", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.MIMEVersionHeader.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ParameterizedMIMEHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.ParameterizedMIMEHeader.params", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.SingleAddressHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.SingleAddressHeader.address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.headerregistry.UnstructuredHeader", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.headerregistry.html#$", "dispname": "-"}, {"name": "email.iterators", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.iterators.html#module-$", "dispname": "-"}, {"name": "email.iterators._structure", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.iterators.html#$", "dispname": "-"}, {"name": "email.iterators.body_line_iterator", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.iterators.html#$", "dispname": "-"}, {"name": "email.iterators.typed_subpart_iterator", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.iterators.html#$", "dispname": "-"}, {"name": "email.message", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.message.html#module-$", "dispname": "-"}, {"name": "email.message.EmailMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__bytes__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__contains__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__delitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__len__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.add_alternative", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.add_attachment", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.add_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.add_related", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.as_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.as_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.clear_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.defects", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.del_param", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.epilogue", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_body", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_boundary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_charsets", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_content_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_content_disposition", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_content_maintype", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_content_subtype", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_content_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_default_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.get_unixfrom", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.is_attachment", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.is_multipart", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.iter_attachments", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.iter_parts", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.make_alternative", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.make_mixed", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.make_related", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.preamble", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.replace_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.set_boundary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.set_content", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.set_default_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.set_param", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.set_unixfrom", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.values", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.EmailMessage.walk", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.MIMEPart", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.message.html#$", "dispname": "-"}, {"name": "email.message.Message", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__bytes__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__contains__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__delitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__len__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.add_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.as_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.as_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.attach", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.defects", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.del_param", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.epilogue", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_boundary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_charsets", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_content_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_content_disposition", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_content_maintype", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_content_subtype", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_content_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_default_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_param", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_params", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_payload", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.get_unixfrom", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.is_multipart", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.preamble", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.replace_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_boundary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_default_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_param", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_payload", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.set_unixfrom", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.values", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message.Message.walk", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.compat32-message.html#$", "dispname": "-"}, {"name": "email.message_from_binary_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.message_from_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.message_from_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.message_from_string", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.mime", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.mime.html#module-$", "dispname": "-"}, {"name": "email.mime.application.MIMEApplication", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.audio.MIMEAudio", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.base.MIMEBase", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.image.MIMEImage", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.message.MIMEMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.multipart.MIMEMultipart", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.nonmultipart.MIMENonMultipart", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.mime.text.MIMEText", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.mime.html#$", "dispname": "-"}, {"name": "email.parser", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.parser.html#module-$", "dispname": "-"}, {"name": "email.parser.BytesFeedParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.BytesFeedParser.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.BytesFeedParser.feed", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.BytesHeaderParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.BytesParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.BytesParser.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.BytesParser.parsebytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.FeedParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.HeaderParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.Parser", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.Parser.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.parser.Parser.parsestr", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.parser.html#$", "dispname": "-"}, {"name": "email.policy", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.policy.html#module-$", "dispname": "-"}, {"name": "email.policy.Compat32", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Compat32.fold", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Compat32.fold_binary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Compat32.header_fetch_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Compat32.header_source_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Compat32.header_store_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Compat32.mangle_from_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.content_manager", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.fold", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.fold_binary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.header_factory", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.header_fetch_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.header_max_count", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.header_source_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.header_store_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.refold_source", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.EmailPolicy.utf8", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.HTTP", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy", "domain": "py", "role": "class", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.clone", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.cte_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.fold", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.fold_binary", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.handle_defect", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.header_fetch_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.header_max_count", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.header_source_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.header_store_parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.linesep", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.mangle_from_", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.max_line_length", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.message_factory", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.raise_on_defect", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.Policy.register_defect", "domain": "py", "role": "method", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.SMTP", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.SMTPUTF8", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.compat32", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.default", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.policy.strict", "domain": "py", "role": "data", "priority": "1", "uri": "library/email.policy.html#$", "dispname": "-"}, {"name": "email.utils", "domain": "py", "role": "module", "priority": "0", "uri": "library/email.utils.html#module-$", "dispname": "-"}, {"name": "email.utils.collapse_rfc2231_value", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.decode_params", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.decode_rfc2231", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.encode_rfc2231", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.format_datetime", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.formataddr", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.formatdate", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.getaddresses", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.localtime", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.make_msgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.mktime_tz", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.parseaddr", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.parsedate", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.parsedate_to_datetime", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.parsedate_tz", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.quote", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "email.utils.unquote", "domain": "py", "role": "function", "priority": "1", "uri": "library/email.utils.html#$", "dispname": "-"}, {"name": "encodings.idna", "domain": "py", "role": "module", "priority": "0", "uri": "library/codecs.html#module-$", "dispname": "-"}, {"name": "encodings.idna.ToASCII", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "encodings.idna.ToUnicode", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "encodings.idna.nameprep", "domain": "py", "role": "function", "priority": "1", "uri": "library/codecs.html#$", "dispname": "-"}, {"name": "encodings.mbcs", "domain": "py", "role": "module", "priority": "0", "uri": "library/codecs.html#module-$", "dispname": "-"}, {"name": "encodings.utf_8_sig", "domain": "py", "role": "module", "priority": "0", "uri": "library/codecs.html#module-$", "dispname": "-"}, {"name": "ensurepip", "domain": "py", "role": "module", "priority": "0", "uri": "library/ensurepip.html#module-$", "dispname": "-"}, {"name": "ensurepip.bootstrap", "domain": "py", "role": "function", "priority": "1", "uri": "library/ensurepip.html#$", "dispname": "-"}, {"name": "ensurepip.version", "domain": "py", "role": "function", "priority": "1", "uri": "library/ensurepip.html#$", "dispname": "-"}, {"name": "enum", "domain": "py", "role": "module", "priority": "0", "uri": "library/enum.html#module-$", "dispname": "-"}, {"name": "enum.Enum", "domain": "py", "role": "class", "priority": "1", "uri": "library/enum.html#$", "dispname": "-"}, {"name": "enum.Flag", "domain": "py", "role": "class", "priority": "1", "uri": "library/enum.html#$", "dispname": "-"}, {"name": "enum.IntEnum", "domain": "py", "role": "class", "priority": "1", "uri": "library/enum.html#$", "dispname": "-"}, {"name": "enum.IntFlag", "domain": "py", "role": "class", "priority": "1", "uri": "library/enum.html#$", "dispname": "-"}, {"name": "enum.auto", "domain": "py", "role": "class", "priority": "1", "uri": "library/enum.html#$", "dispname": "-"}, {"name": "enum.unique", "domain": "py", "role": "function", "priority": "1", "uri": "library/enum.html#$", "dispname": "-"}, {"name": "enumerate", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "errno", "domain": "py", "role": "module", "priority": "0", "uri": "library/errno.html#module-$", "dispname": "-"}, {"name": "errno.E2BIG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EACCES", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EADDRINUSE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EADDRNOTAVAIL", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EADV", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EAFNOSUPPORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EAGAIN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EALREADY", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADF", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADFD", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADMSG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADR", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADRQC", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBADSLT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBFONT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EBUSY", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ECHILD", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ECHRNG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ECOMM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ECONNABORTED", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ECONNREFUSED", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ECONNRESET", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EDEADLK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EDEADLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EDESTADDRREQ", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EDOM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EDOTDOT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EDQUOT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EEXIST", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EFAULT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EFBIG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EHOSTDOWN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EHOSTUNREACH", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EIDRM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EILSEQ", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EINPROGRESS", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EINTR", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EINVAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EIO", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EISCONN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EISDIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EISNAM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EL2HLT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EL2NSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EL3HLT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EL3RST", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELIBACC", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELIBBAD", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELIBEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELIBMAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELIBSCN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELNRNG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ELOOP", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EMFILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EMLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EMSGSIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EMULTIHOP", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENAMETOOLONG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENAVAIL", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENETDOWN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENETRESET", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENETUNREACH", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENFILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOANO", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOBUFS", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOCSI", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENODATA", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENODEV", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOLCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOMEM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOMSG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENONET", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOPKG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOPROTOOPT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOSPC", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOSR", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOSTR", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOSYS", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTBLK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTCONN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTDIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTEMPTY", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTNAM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTSOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTTY", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENOTUNIQ", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ENXIO", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EOPNOTSUPP", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EOVERFLOW", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EPERM", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EPFNOSUPPORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EPIPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EPROTO", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EPROTONOSUPPORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EPROTOTYPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ERANGE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EREMCHG", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EREMOTE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EREMOTEIO", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ERESTART", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EROFS", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESHUTDOWN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESOCKTNOSUPPORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESPIPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESRCH", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESRMNT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESTALE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ESTRPIPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ETIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ETIMEDOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ETOOMANYREFS", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.ETXTBSY", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EUCLEAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EUNATCH", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EUSERS", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EWOULDBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EXDEV", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.EXFULL", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "errno.errorcode", "domain": "py", "role": "data", "priority": "1", "uri": "library/errno.html#$", "dispname": "-"}, {"name": "eval", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "exec", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "exit", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "faulthandler", "domain": "py", "role": "module", "priority": "0", "uri": "library/faulthandler.html#module-$", "dispname": "-"}, {"name": "faulthandler.cancel_dump_traceback_later", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.disable", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.dump_traceback", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.dump_traceback_later", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.enable", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.is_enabled", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.register", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "faulthandler.unregister", "domain": "py", "role": "function", "priority": "1", "uri": "library/faulthandler.html#$", "dispname": "-"}, {"name": "fcntl", "domain": "py", "role": "module", "priority": "0", "uri": "library/fcntl.html#module-$", "dispname": "-"}, {"name": "fcntl.fcntl", "domain": "py", "role": "function", "priority": "1", "uri": "library/fcntl.html#$", "dispname": "-"}, {"name": "fcntl.flock", "domain": "py", "role": "function", "priority": "1", "uri": "library/fcntl.html#$", "dispname": "-"}, {"name": "fcntl.ioctl", "domain": "py", "role": "function", "priority": "1", "uri": "library/fcntl.html#$", "dispname": "-"}, {"name": "fcntl.lockf", "domain": "py", "role": "function", "priority": "1", "uri": "library/fcntl.html#$", "dispname": "-"}, {"name": "file_created", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/builtdist.html#$", "dispname": "-"}, {"name": "filecmp", "domain": "py", "role": "module", "priority": "0", "uri": "library/filecmp.html#module-$", "dispname": "-"}, {"name": "filecmp.DEFAULT_IGNORES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.clear_cache", "domain": "py", "role": "function", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.cmp", "domain": "py", "role": "function", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.cmpfiles", "domain": "py", "role": "function", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp", "domain": "py", "role": "class", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.common", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.common_dirs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.common_files", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.common_funny", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.diff_files", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.funny_files", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.left", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.left_list", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.left_only", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.report", "domain": "py", "role": "method", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.report_full_closure", "domain": "py", "role": "method", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.report_partial_closure", "domain": "py", "role": "method", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.right", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.right_list", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.right_only", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.same_files", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "filecmp.dircmp.subdirs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/filecmp.html#$", "dispname": "-"}, {"name": "fileinput", "domain": "py", "role": "module", "priority": "0", "uri": "library/fileinput.html#module-$", "dispname": "-"}, {"name": "fileinput.FileInput", "domain": "py", "role": "class", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.close", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.filelineno", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.filename", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.fileno", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.hook_compressed", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.hook_encoded", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.input", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.isfirstline", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.isstdin", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.lineno", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "fileinput.nextfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/fileinput.html#$", "dispname": "-"}, {"name": "filter", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "float", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "float.as_integer_ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "float.fromhex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "float.hex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "float.is_integer", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "fnmatch", "domain": "py", "role": "module", "priority": "0", "uri": "library/fnmatch.html#module-$", "dispname": "-"}, {"name": "fnmatch.filter", "domain": "py", "role": "function", "priority": "1", "uri": "library/fnmatch.html#$", "dispname": "-"}, {"name": "fnmatch.fnmatch", "domain": "py", "role": "function", "priority": "1", "uri": "library/fnmatch.html#$", "dispname": "-"}, {"name": "fnmatch.fnmatchcase", "domain": "py", "role": "function", "priority": "1", "uri": "library/fnmatch.html#$", "dispname": "-"}, {"name": "fnmatch.translate", "domain": "py", "role": "function", "priority": "1", "uri": "library/fnmatch.html#$", "dispname": "-"}, {"name": "format", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "fractions", "domain": "py", "role": "module", "priority": "0", "uri": "library/fractions.html#module-$", "dispname": "-"}, {"name": "fractions.Fraction", "domain": "py", "role": "class", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.__ceil__", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.__floor__", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.__round__", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.as_integer_ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.denominator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.from_decimal", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.from_float", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.limit_denominator", "domain": "py", "role": "method", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "fractions.Fraction.numerator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/fractions.html#$", "dispname": "-"}, {"name": "frame.clear", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "frozenset", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.difference", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.difference_update", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.discard", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.intersection", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.intersection_update", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.isdisjoint", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.issubset", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.issuperset", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.pop", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.symmetric_difference", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.symmetric_difference_update", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.union", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "frozenset.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "ftplib", "domain": "py", "role": "module", "priority": "0", "uri": "library/ftplib.html#module-$", "dispname": "-"}, {"name": "ftplib.FTP", "domain": "py", "role": "class", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.abort", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.cwd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.delete", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.dir", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.getwelcome", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.login", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.mkd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.mlsd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.nlst", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.ntransfercmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.pwd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.quit", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.rename", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.retrbinary", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.retrlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.rmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.sendcmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.set_debuglevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.set_pasv", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.size", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.storbinary", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.storlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.transfercmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP.voidcmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP_TLS", "domain": "py", "role": "class", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP_TLS.auth", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP_TLS.ccc", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP_TLS.prot_c", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP_TLS.prot_p", "domain": "py", "role": "method", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.FTP_TLS.ssl_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.all_errors", "domain": "py", "role": "data", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.error_perm", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.error_proto", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.error_reply", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "ftplib.error_temp", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ftplib.html#$", "dispname": "-"}, {"name": "functools", "domain": "py", "role": "module", "priority": "0", "uri": "library/functools.html#module-$", "dispname": "-"}, {"name": "functools.cache", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.cached_property", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.cmp_to_key", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.lru_cache", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.partial", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.partial.args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.partial.func", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.partial.keywords", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.partialmethod", "domain": "py", "role": "class", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.reduce", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.singledispatch", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.singledispatchmethod", "domain": "py", "role": "class", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.total_ordering", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.update_wrapper", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "functools.wraps", "domain": "py", "role": "function", "priority": "1", "uri": "library/functools.html#$", "dispname": "-"}, {"name": "gc", "domain": "py", "role": "module", "priority": "0", "uri": "library/gc.html#module-$", "dispname": "-"}, {"name": "gc.DEBUG_COLLECTABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.DEBUG_LEAK", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.DEBUG_SAVEALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.DEBUG_STATS", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.DEBUG_UNCOLLECTABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.callbacks", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.collect", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.disable", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.enable", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.freeze", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.garbage", "domain": "py", "role": "data", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_count", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_debug", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_freeze_count", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_objects", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_referents", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_referrers", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_stats", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.get_threshold", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.is_finalized", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.is_tracked", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.isenabled", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.set_debug", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.set_threshold", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "gc.unfreeze", "domain": "py", "role": "function", "priority": "1", "uri": "library/gc.html#$", "dispname": "-"}, {"name": "generator.__next__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "generator.close", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "generator.send", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "generator.throw", "domain": "py", "role": "method", "priority": "1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "genericalias.__args__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "genericalias.__origin__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "genericalias.__parameters__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "get_special_folder_path", "domain": "py", "role": "function", "priority": "1", "uri": "distutils/builtdist.html#$", "dispname": "-"}, {"name": "getattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "getopt", "domain": "py", "role": "module", "priority": "0", "uri": "library/getopt.html#module-$", "dispname": "-"}, {"name": "getopt.GetoptError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/getopt.html#$", "dispname": "-"}, {"name": "getopt.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/getopt.html#$", "dispname": "-"}, {"name": "getopt.getopt", "domain": "py", "role": "function", "priority": "1", "uri": "library/getopt.html#$", "dispname": "-"}, {"name": "getopt.gnu_getopt", "domain": "py", "role": "function", "priority": "1", "uri": "library/getopt.html#$", "dispname": "-"}, {"name": "getpass", "domain": "py", "role": "module", "priority": "0", "uri": "library/getpass.html#module-$", "dispname": "-"}, {"name": "getpass.GetPassWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/getpass.html#$", "dispname": "-"}, {"name": "getpass.getpass", "domain": "py", "role": "function", "priority": "1", "uri": "library/getpass.html#$", "dispname": "-"}, {"name": "getpass.getuser", "domain": "py", "role": "function", "priority": "1", "uri": "library/getpass.html#$", "dispname": "-"}, {"name": "gettext", "domain": "py", "role": "module", "priority": "0", "uri": "library/gettext.html#module-$", "dispname": "-"}, {"name": "gettext.GNUTranslations", "domain": "py", "role": "class", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.GNUTranslations.gettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.GNUTranslations.lgettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.GNUTranslations.lngettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.GNUTranslations.ngettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.GNUTranslations.npgettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.GNUTranslations.pgettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations", "domain": "py", "role": "class", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations._parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.add_fallback", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.gettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.info", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.install", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.lgettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.lngettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.ngettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.npgettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.output_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.pgettext", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.NullTranslations.set_output_charset", "domain": "py", "role": "method", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.bind_textdomain_codeset", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.bindtextdomain", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.dgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.dngettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.dnpgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.dpgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.find", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.gettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.install", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.ldgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.ldngettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.lgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.lngettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.ngettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.npgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.pgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.textdomain", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "gettext.translation", "domain": "py", "role": "function", "priority": "1", "uri": "library/gettext.html#$", "dispname": "-"}, {"name": "glob", "domain": "py", "role": "module", "priority": "0", "uri": "library/glob.html#module-$", "dispname": "-"}, {"name": "glob.escape", "domain": "py", "role": "function", "priority": "1", "uri": "library/glob.html#$", "dispname": "-"}, {"name": "glob.glob", "domain": "py", "role": "function", "priority": "1", "uri": "library/glob.html#$", "dispname": "-"}, {"name": "glob.iglob", "domain": "py", "role": "function", "priority": "1", "uri": "library/glob.html#$", "dispname": "-"}, {"name": "globals", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "graphlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/graphlib.html#module-$", "dispname": "-"}, {"name": "graphlib.CycleError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter", "domain": "py", "role": "class", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter.done", "domain": "py", "role": "method", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter.get_ready", "domain": "py", "role": "method", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter.is_active", "domain": "py", "role": "method", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter.prepare", "domain": "py", "role": "method", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "graphlib.TopologicalSorter.static_order", "domain": "py", "role": "method", "priority": "1", "uri": "library/graphlib.html#$", "dispname": "-"}, {"name": "grp", "domain": "py", "role": "module", "priority": "0", "uri": "library/grp.html#module-$", "dispname": "-"}, {"name": "grp.getgrall", "domain": "py", "role": "function", "priority": "1", "uri": "library/grp.html#$", "dispname": "-"}, {"name": "grp.getgrgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/grp.html#$", "dispname": "-"}, {"name": "grp.getgrnam", "domain": "py", "role": "function", "priority": "1", "uri": "library/grp.html#$", "dispname": "-"}, {"name": "gzip", "domain": "py", "role": "module", "priority": "0", "uri": "library/gzip.html#module-$", "dispname": "-"}, {"name": "gzip.BadGzipFile", "domain": "py", "role": "exception", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.GzipFile", "domain": "py", "role": "class", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.GzipFile.mtime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.GzipFile.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.GzipFile.peek", "domain": "py", "role": "method", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.compress", "domain": "py", "role": "function", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.decompress", "domain": "py", "role": "function", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "gzip.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/gzip.html#$", "dispname": "-"}, {"name": "hasattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "hash", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "hashlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/hashlib.html#module-$", "dispname": "-"}, {"name": "hashlib.algorithms_available", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.algorithms_guaranteed", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2b", "domain": "py", "role": "function", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2b.MAX_DIGEST_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2b.MAX_KEY_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2b.PERSON_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2b.SALT_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2s", "domain": "py", "role": "function", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2s.MAX_DIGEST_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2s.MAX_KEY_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2s.PERSON_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.blake2s.SALT_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.block_size", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.digest", "domain": "py", "role": "method", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.digest_size", "domain": "py", "role": "data", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.hexdigest", "domain": "py", "role": "method", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.hash.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.new", "domain": "py", "role": "function", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.pbkdf2_hmac", "domain": "py", "role": "function", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.scrypt", "domain": "py", "role": "function", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.shake.digest", "domain": "py", "role": "method", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "hashlib.shake.hexdigest", "domain": "py", "role": "method", "priority": "1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "heapq", "domain": "py", "role": "module", "priority": "0", "uri": "library/heapq.html#module-$", "dispname": "-"}, {"name": "heapq.heapify", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.heappop", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.heappush", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.heappushpop", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.heapreplace", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.merge", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.nlargest", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "heapq.nsmallest", "domain": "py", "role": "function", "priority": "1", "uri": "library/heapq.html#$", "dispname": "-"}, {"name": "help", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "hex", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "hmac", "domain": "py", "role": "module", "priority": "0", "uri": "library/hmac.html#module-$", "dispname": "-"}, {"name": "hmac.HMAC.block_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.HMAC.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.HMAC.digest", "domain": "py", "role": "method", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.HMAC.digest_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.HMAC.hexdigest", "domain": "py", "role": "method", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.HMAC.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.HMAC.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.compare_digest", "domain": "py", "role": "function", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.digest", "domain": "py", "role": "function", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "hmac.new", "domain": "py", "role": "function", "priority": "1", "uri": "library/hmac.html#$", "dispname": "-"}, {"name": "html", "domain": "py", "role": "module", "priority": "0", "uri": "library/html.html#module-$", "dispname": "-"}, {"name": "html.entities", "domain": "py", "role": "module", "priority": "0", "uri": "library/html.entities.html#module-$", "dispname": "-"}, {"name": "html.entities.codepoint2name", "domain": "py", "role": "data", "priority": "1", "uri": "library/html.entities.html#$", "dispname": "-"}, {"name": "html.entities.entitydefs", "domain": "py", "role": "data", "priority": "1", "uri": "library/html.entities.html#$", "dispname": "-"}, {"name": "html.entities.html5", "domain": "py", "role": "data", "priority": "1", "uri": "library/html.entities.html#$", "dispname": "-"}, {"name": "html.entities.name2codepoint", "domain": "py", "role": "data", "priority": "1", "uri": "library/html.entities.html#$", "dispname": "-"}, {"name": "html.escape", "domain": "py", "role": "function", "priority": "1", "uri": "library/html.html#$", "dispname": "-"}, {"name": "html.parser", "domain": "py", "role": "module", "priority": "0", "uri": "library/html.parser.html#module-$", "dispname": "-"}, {"name": "html.parser.HTMLParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.feed", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.get_starttag_text", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.getpos", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_charref", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_comment", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_decl", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_endtag", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_entityref", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_pi", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_startendtag", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.handle_starttag", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.parser.HTMLParser.unknown_decl", "domain": "py", "role": "method", "priority": "1", "uri": "library/html.parser.html#$", "dispname": "-"}, {"name": "html.unescape", "domain": "py", "role": "function", "priority": "1", "uri": "library/html.html#$", "dispname": "-"}, {"name": "http", "domain": "py", "role": "module", "priority": "0", "uri": "library/http.html#module-$", "dispname": "-"}, {"name": "http.HTTPStatus", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.html#$", "dispname": "-"}, {"name": "http.client", "domain": "py", "role": "module", "priority": "0", "uri": "library/http.client.html#module-$", "dispname": "-"}, {"name": "http.client.BadStatusLine", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.CannotSendHeader", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.CannotSendRequest", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.blocksize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.endheaders", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.getresponse", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.putheader", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.putrequest", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.request", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.set_debuglevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPConnection.set_tunnel", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.debuglevel", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.getcode", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.getheader", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.getheaders", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.geturl", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.info", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.msg", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.readinto", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.reason", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.status", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.url", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPResponse.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPSConnection", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTPS_PORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.HTTP_PORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.ImproperConnectionState", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.IncompleteRead", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.InvalidURL", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.LineTooLong", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.NotConnected", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.RemoteDisconnected", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.ResponseNotReady", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.UnimplementedFileMode", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.UnknownProtocol", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.UnknownTransferEncoding", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.parse_headers", "domain": "py", "role": "function", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.client.responses", "domain": "py", "role": "data", "priority": "1", "uri": "library/http.client.html#$", "dispname": "-"}, {"name": "http.cookiejar", "domain": "py", "role": "module", "priority": "0", "uri": "library/http.cookiejar.html#module-$", "dispname": "-"}, {"name": "http.cookiejar.Cookie", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.comment_url", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.discard", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.domain_initial_dot", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.domain_specified", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.expires", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.get_nonstandard_attr", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.has_nonstandard_attr", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.is_expired", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.port", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.port_specified", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.rfc2109", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.secure", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.set_nonstandard_attr", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.Cookie.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.add_cookie_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.clear_session_cookies", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.extract_cookies", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.make_cookies", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.set_cookie", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.set_cookie_if_ok", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookieJar.set_policy", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.domain_return_ok", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.hide_cookie2", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.netscape", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.path_return_ok", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.return_ok", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.rfc2965", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.CookiePolicy.set_ok", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.DomainLiberal", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.DomainRFC2965Match", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.DomainStrict", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.DomainStrictNoDots", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.DomainStrictNonDomain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.allowed_domains", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.blocked_domains", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.is_blocked", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.is_not_allowed", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.rfc2109_as_netscape", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.set_allowed_domains", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.set_blocked_domains", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.strict_domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.strict_ns_domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.strict_ns_set_initial_dollar", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.strict_ns_set_path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.strict_ns_unverifiable", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.DefaultCookiePolicy.strict_rfc2965_unverifiable", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.FileCookieJar", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.FileCookieJar.delayload", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.FileCookieJar.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.FileCookieJar.load", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.FileCookieJar.revert", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.FileCookieJar.save", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.LWPCookieJar", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.LoadError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookiejar.MozillaCookieJar", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookiejar.html#$", "dispname": "-"}, {"name": "http.cookies", "domain": "py", "role": "module", "priority": "0", "uri": "library/http.cookies.html#module-$", "dispname": "-"}, {"name": "http.cookies.BaseCookie", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.BaseCookie.js_output", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.BaseCookie.load", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.BaseCookie.output", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.BaseCookie.value_decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.BaseCookie.value_encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.CookieError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.OutputString", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.coded_value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.isReservedKey", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.js_output", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.key", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.output", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.setdefault", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.Morsel.value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.cookies.SimpleCookie", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.cookies.html#$", "dispname": "-"}, {"name": "http.server", "domain": "py", "role": "module", "priority": "0", "uri": "library/http.server.html#module-$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.MessageClass", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.address_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.client_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.close_connection", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.command", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.date_time_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.end_headers", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.error_content_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.error_message_format", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.flush_headers", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.handle_expect_100", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.handle_one_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.log_date_time_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.log_error", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.log_message", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.log_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.protocol_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.request_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.requestline", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.responses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.rfile", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.send_error", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.send_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.send_response", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.send_response_only", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.server", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.server_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.sys_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.version_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.BaseHTTPRequestHandler.wfile", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.CGIHTTPRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.CGIHTTPRequestHandler.cgi_directories", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.CGIHTTPRequestHandler.do_POST", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.HTTPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.SimpleHTTPRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.SimpleHTTPRequestHandler.do_GET", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.SimpleHTTPRequestHandler.do_HEAD", "domain": "py", "role": "method", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.SimpleHTTPRequestHandler.extensions_map", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.SimpleHTTPRequestHandler.server_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http.server.ThreadingHTTPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "id", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "idlelib", "domain": "py", "role": "module", "priority": "0", "uri": "library/idle.html#module-$", "dispname": "-"}, {"name": "imaplib", "domain": "py", "role": "module", "priority": "0", "uri": "library/imaplib.html#module-$", "dispname": "-"}, {"name": "imaplib.IMAP4", "domain": "py", "role": "class", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.PROTOCOL_VERSION", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.abort", "domain": "py", "role": "exception", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.authenticate", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.check", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.create", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.debug", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.delete", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.deleteacl", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.enable", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.expunge", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.fetch", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.getacl", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.getannotation", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.getquota", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.getquotaroot", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.list", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.login", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.login_cram_md5", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.logout", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.lsub", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.myrights", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.namespace", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.noop", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.partial", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.proxyauth", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.readline", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.readonly", "domain": "py", "role": "exception", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.recent", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.rename", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.response", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.search", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.select", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.setacl", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.setannotation", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.setquota", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.shutdown", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.socket", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.sort", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.starttls", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.status", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.store", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.subscribe", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.thread", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.uid", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.unselect", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.unsubscribe", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.utf8_enabled", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4.xatom", "domain": "py", "role": "method", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4_SSL", "domain": "py", "role": "class", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.IMAP4_stream", "domain": "py", "role": "class", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.Int2AP", "domain": "py", "role": "function", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.Internaldate2tuple", "domain": "py", "role": "function", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.ParseFlags", "domain": "py", "role": "function", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imaplib.Time2Internaldate", "domain": "py", "role": "function", "priority": "1", "uri": "library/imaplib.html#$", "dispname": "-"}, {"name": "imghdr", "domain": "py", "role": "module", "priority": "0", "uri": "library/imghdr.html#module-$", "dispname": "-"}, {"name": "imghdr.tests", "domain": "py", "role": "data", "priority": "1", "uri": "library/imghdr.html#$", "dispname": "-"}, {"name": "imghdr.what", "domain": "py", "role": "function", "priority": "1", "uri": "library/imghdr.html#$", "dispname": "-"}, {"name": "imp", "domain": "py", "role": "module", "priority": "0", "uri": "library/imp.html#module-$", "dispname": "-"}, {"name": "imp.C_BUILTIN", "domain": "py", "role": "data", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.C_EXTENSION", "domain": "py", "role": "data", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.NullImporter", "domain": "py", "role": "class", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.NullImporter.find_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.PKG_DIRECTORY", "domain": "py", "role": "data", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.PY_COMPILED", "domain": "py", "role": "data", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.PY_FROZEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.PY_SOURCE", "domain": "py", "role": "data", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.acquire_lock", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.cache_from_source", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.find_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.get_magic", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.get_suffixes", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.get_tag", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.load_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.lock_held", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.new_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.release_lock", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.reload", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "imp.source_from_cache", "domain": "py", "role": "function", "priority": "1", "uri": "library/imp.html#$", "dispname": "-"}, {"name": "importlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/importlib.html#module-$", "dispname": "-"}, {"name": "importlib.__import__", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc", "domain": "py", "role": "module", "priority": "0", "uri": "library/importlib.html#module-$", "dispname": "-"}, {"name": "importlib.abc.ExecutionLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ExecutionLoader.get_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.FileLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.FileLoader.get_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.FileLoader.get_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.FileLoader.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.FileLoader.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.FileLoader.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Finder", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Finder.find_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader.exec_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader.get_code", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader.get_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader.is_package", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.InspectLoader.source_to_code", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Loader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Loader.create_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Loader.exec_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Loader.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Loader.module_repr", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.MetaPathFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.MetaPathFinder.find_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.MetaPathFinder.find_spec", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.MetaPathFinder.invalidate_caches", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.PathEntryFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.PathEntryFinder.find_loader", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.PathEntryFinder.find_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.PathEntryFinder.find_spec", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.PathEntryFinder.invalidate_caches", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceLoader.get_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceReader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceReader.contents", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceReader.is_resource", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceReader.open_resource", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.ResourceReader.resource_path", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.exec_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.get_code", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.get_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.is_package", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.path_mtime", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.path_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.SourceLoader.set_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.__truediv__", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.is_dir", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.is_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.iterdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.joinpath", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.name", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.read_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.Traversable.read_text", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.abc.TraversableResources", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.find_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.import_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.invalidate_caches", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery", "domain": "py", "role": "module", "priority": "0", "uri": "library/importlib.html#module-$", "dispname": "-"}, {"name": "importlib.machinery.BYTECODE_SUFFIXES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.BuiltinImporter", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.DEBUG_BYTECODE_SUFFIXES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.EXTENSION_SUFFIXES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.create_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.exec_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.get_code", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.get_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.get_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.is_package", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ExtensionFileLoader.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FileFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FileFinder.find_loader", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FileFinder.find_spec", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FileFinder.invalidate_caches", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FileFinder.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FileFinder.path_hook", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.FrozenImporter", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.cached", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.has_location", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.loader", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.loader_state", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.origin", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.parent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.ModuleSpec.submodule_search_locations", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.PathFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.PathFinder.find_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.PathFinder.find_spec", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.PathFinder.invalidate_caches", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SOURCE_SUFFIXES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader.is_package", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader.path_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourceFileLoader.set_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader.get_code", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader.get_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader.is_package", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.SourcelessFileLoader.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.WindowsRegistryFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.machinery.all_suffixes", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.metadata", "domain": "py", "role": "module", "priority": "0", "uri": "library/importlib.metadata.html#module-$", "dispname": "-"}, {"name": "importlib.reload", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources", "domain": "py", "role": "module", "priority": "0", "uri": "library/importlib.html#module-$", "dispname": "-"}, {"name": "importlib.resources.Package", "domain": "py", "role": "data", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.Resource", "domain": "py", "role": "data", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.as_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.contents", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.files", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.is_resource", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.open_binary", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.open_text", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.path", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.read_binary", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.resources.read_text", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util", "domain": "py", "role": "module", "priority": "0", "uri": "library/importlib.html#module-$", "dispname": "-"}, {"name": "importlib.util.LazyLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.LazyLoader.factory", "domain": "py", "role": "method", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.MAGIC_NUMBER", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.cache_from_source", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.decode_source", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.find_spec", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.module_for_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.module_from_spec", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.resolve_name", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.set_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.set_package", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.source_from_cache", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.source_hash", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.spec_from_file_location", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "importlib.util.spec_from_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/importlib.html#$", "dispname": "-"}, {"name": "input", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "inspect", "domain": "py", "role": "module", "priority": "0", "uri": "library/inspect.html#module-$", "dispname": "-"}, {"name": "inspect.BoundArguments", "domain": "py", "role": "class", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.BoundArguments.apply_defaults", "domain": "py", "role": "method", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.BoundArguments.args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.BoundArguments.arguments", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.BoundArguments.kwargs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.BoundArguments.signature", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_ASYNC_GENERATOR", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_COROUTINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_GENERATOR", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_ITERABLE_COROUTINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_NESTED", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_NEWLOCALS", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_NOFREE", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_OPTIMIZED", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_VARARGS", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.CO_VARKEYWORDS", "domain": "py", "role": "data", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter", "domain": "py", "role": "class", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.annotation", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.default", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.empty", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.kind", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.kind.description", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Parameter.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature", "domain": "py", "role": "class", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.bind", "domain": "py", "role": "method", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.bind_partial", "domain": "py", "role": "method", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.empty", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.from_callable", "domain": "py", "role": "method", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.parameters", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.Signature.return_annotation", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.cleandoc", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.currentframe", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.formatargspec", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.formatargvalues", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.get_annotations", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getargspec", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getargvalues", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getattr_static", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getcallargs", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getclasstree", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getclosurevars", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getcomments", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getcoroutinelocals", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getcoroutinestate", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getdoc", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getframeinfo", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getfullargspec", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getgeneratorlocals", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getgeneratorstate", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getinnerframes", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getmembers", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getmodule", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getmodulename", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getmro", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getouterframes", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getsource", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getsourcefile", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.getsourcelines", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isabstract", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isasyncgen", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isasyncgenfunction", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isawaitable", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isbuiltin", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isclass", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.iscode", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.iscoroutine", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.iscoroutinefunction", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isdatadescriptor", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isframe", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isfunction", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isgenerator", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isgeneratorfunction", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isgetsetdescriptor", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.ismemberdescriptor", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.ismethod", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.ismethoddescriptor", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.ismodule", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.isroutine", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.istraceback", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.signature", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.stack", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.trace", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "inspect.unwrap", "domain": "py", "role": "function", "priority": "1", "uri": "library/inspect.html#$", "dispname": "-"}, {"name": "instance.__class__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "int", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "int.as_integer_ratio", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "int.bit_count", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "int.bit_length", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "int.from_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "int.to_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "io", "domain": "py", "role": "module", "priority": "0", "uri": "library/io.html#module-$", "dispname": "-"}, {"name": "io.BlockingIOError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.detach", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.raw", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.read1", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.readinto", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.readinto1", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedIOBase.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedRWPair", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedRandom", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedReader", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedReader.peek", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedReader.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedReader.read1", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedWriter", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedWriter.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BufferedWriter.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BytesIO", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BytesIO.getbuffer", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BytesIO.getvalue", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BytesIO.read1", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.BytesIO.readinto1", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.DEFAULT_BUFFER_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.FileIO", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.FileIO.mode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.FileIO.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.__del__", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.isatty", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.readable", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.readline", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.readlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.seek", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.seekable", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.truncate", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.writable", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IOBase.writelines", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.IncrementalNewlineDecoder", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.RawIOBase", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.RawIOBase.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.RawIOBase.readall", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.RawIOBase.readinto", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.RawIOBase.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.StringIO", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.StringIO.getvalue", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.buffer", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.detach", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.encoding", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.errors", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.newlines", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.readline", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.seek", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOBase.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOWrapper", "domain": "py", "role": "class", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOWrapper.line_buffering", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOWrapper.reconfigure", "domain": "py", "role": "method", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.TextIOWrapper.write_through", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.UnsupportedOperation", "domain": "py", "role": "exception", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.open_code", "domain": "py", "role": "function", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "io.text_encoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/io.html#$", "dispname": "-"}, {"name": "ipaddress", "domain": "py", "role": "module", "priority": "0", "uri": "library/ipaddress.html#module-$", "dispname": "-"}, {"name": "ipaddress.AddressValueError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address", "domain": "py", "role": "class", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.__format__", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.compressed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.exploded", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_global", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_link_local", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_loopback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_multicast", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_private", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_reserved", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.is_unspecified", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.max_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.packed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.reverse_pointer", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Address.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Interface", "domain": "py", "role": "class", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Interface.ip", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Interface.network", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Interface.with_hostmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Interface.with_netmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Interface.with_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network", "domain": "py", "role": "class", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.address_exclude", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.broadcast_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.compare_networks", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.compressed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.exploded", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.hostmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.hosts", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.is_link_local", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.is_loopback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.is_multicast", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.is_private", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.is_reserved", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.is_unspecified", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.max_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.netmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.network_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.num_addresses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.overlaps", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.subnet_of", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.subnets", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.supernet", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.supernet_of", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.with_hostmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.with_netmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv4Network.with_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address", "domain": "py", "role": "class", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.__format__", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.compressed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.exploded", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.ipv4_mapped", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_global", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_link_local", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_loopback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_multicast", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_private", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_reserved", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_site_local", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.is_unspecified", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.max_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.packed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.reverse_pointer", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.scope_id", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.sixtofour", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.teredo", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Address.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Interface", "domain": "py", "role": "class", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Interface.ip", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Interface.network", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Interface.with_hostmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Interface.with_netmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Interface.with_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network", "domain": "py", "role": "class", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.address_exclude", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.broadcast_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.compare_networks", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.compressed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.exploded", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.hostmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.hosts", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_link_local", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_loopback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_multicast", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_private", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_reserved", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_site_local", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.is_unspecified", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.max_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.netmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.network_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.num_addresses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.overlaps", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.subnet_of", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.subnets", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.supernet", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.supernet_of", "domain": "py", "role": "method", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.with_hostmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.with_netmask", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.IPv6Network.with_prefixlen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.NetmaskValueError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.collapse_addresses", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.get_mixed_type_key", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.ip_address", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.ip_interface", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.ip_network", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.summarize_address_range", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.v4_int_to_packed", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "ipaddress.v6_int_to_packed", "domain": "py", "role": "function", "priority": "1", "uri": "library/ipaddress.html#$", "dispname": "-"}, {"name": "isinstance", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "issubclass", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "iter", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "iterator.__iter__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "iterator.__next__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "itertools", "domain": "py", "role": "module", "priority": "0", "uri": "library/itertools.html#module-$", "dispname": "-"}, {"name": "itertools.accumulate", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.chain", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.chain.from_iterable", "domain": "py", "role": "method", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.combinations", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.combinations_with_replacement", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.compress", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.count", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.cycle", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.dropwhile", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.filterfalse", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.groupby", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.islice", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.pairwise", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.permutations", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.product", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.repeat", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.starmap", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.takewhile", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.tee", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "itertools.zip_longest", "domain": "py", "role": "function", "priority": "1", "uri": "library/itertools.html#$", "dispname": "-"}, {"name": "json", "domain": "py", "role": "module", "priority": "0", "uri": "library/json.html#module-$", "dispname": "-"}, {"name": "json.JSONDecodeError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecodeError.colno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecodeError.doc", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecodeError.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecodeError.msg", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecodeError.pos", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecoder", "domain": "py", "role": "class", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecoder.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONDecoder.raw_decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONEncoder", "domain": "py", "role": "class", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONEncoder.default", "domain": "py", "role": "method", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONEncoder.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.JSONEncoder.iterencode", "domain": "py", "role": "method", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.dump", "domain": "py", "role": "function", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.dumps", "domain": "py", "role": "function", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.load", "domain": "py", "role": "function", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.loads", "domain": "py", "role": "function", "priority": "1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.tool", "domain": "py", "role": "module", "priority": "0", "uri": "library/json.html#module-$", "dispname": "-"}, {"name": "keyword", "domain": "py", "role": "module", "priority": "0", "uri": "library/keyword.html#module-$", "dispname": "-"}, {"name": "keyword.iskeyword", "domain": "py", "role": "function", "priority": "1", "uri": "library/keyword.html#$", "dispname": "-"}, {"name": "keyword.issoftkeyword", "domain": "py", "role": "function", "priority": "1", "uri": "library/keyword.html#$", "dispname": "-"}, {"name": "keyword.kwlist", "domain": "py", "role": "data", "priority": "1", "uri": "library/keyword.html#$", "dispname": "-"}, {"name": "keyword.softkwlist", "domain": "py", "role": "data", "priority": "1", "uri": "library/keyword.html#$", "dispname": "-"}, {"name": "len", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "lib2to3", "domain": "py", "role": "module", "priority": "0", "uri": "library/2to3.html#module-$", "dispname": "-"}, {"name": "license", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "linecache", "domain": "py", "role": "module", "priority": "0", "uri": "library/linecache.html#module-$", "dispname": "-"}, {"name": "linecache.checkcache", "domain": "py", "role": "function", "priority": "1", "uri": "library/linecache.html#$", "dispname": "-"}, {"name": "linecache.clearcache", "domain": "py", "role": "function", "priority": "1", "uri": "library/linecache.html#$", "dispname": "-"}, {"name": "linecache.getline", "domain": "py", "role": "function", "priority": "1", "uri": "library/linecache.html#$", "dispname": "-"}, {"name": "linecache.lazycache", "domain": "py", "role": "function", "priority": "1", "uri": "library/linecache.html#$", "dispname": "-"}, {"name": "list", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "list.sort", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "locale", "domain": "py", "role": "module", "priority": "0", "uri": "library/locale.html#module-$", "dispname": "-"}, {"name": "locale.ALT_DIGITS", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.CHAR_MAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.CODESET", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.CRNCYSTR", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.D_FMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.D_T_FMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.ERA", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.ERA_D_FMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.ERA_D_T_FMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.ERA_T_FMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_ALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_COLLATE", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_CTYPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_MESSAGES", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_MONETARY", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_NUMERIC", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.LC_TIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.NOEXPR", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.RADIXCHAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.THOUSEP", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.T_FMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.T_FMT_AMPM", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.YESEXPR", "domain": "py", "role": "data", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.atof", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.atoi", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.bindtextdomain", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.currency", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.dcgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.delocalize", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.dgettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.format", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.format_string", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.getdefaultlocale", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.getlocale", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.getpreferredencoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.gettext", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.localeconv", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.localize", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.nl_langinfo", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.normalize", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.resetlocale", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.setlocale", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.str", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.strcoll", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.strxfrm", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locale.textdomain", "domain": "py", "role": "function", "priority": "1", "uri": "library/locale.html#$", "dispname": "-"}, {"name": "locals", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "logging", "domain": "py", "role": "module", "priority": "0", "uri": "library/logging.html#module-$", "dispname": "-"}, {"name": "logging.BufferingFormatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.BufferingFormatter.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.BufferingFormatter.formatFooter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.BufferingFormatter.formatHeader", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.FileHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.FileHandler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.FileHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.Filter", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Filter.filter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Formatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Formatter.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Formatter.formatException", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Formatter.formatStack", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Formatter.formatTime", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.__init__", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.addFilter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.createLock", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.filter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.handleError", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.removeFilter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.setFormatter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Handler.setLevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.LogRecord", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.LogRecord.getMessage", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.addFilter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.addHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.critical", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.debug", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.error", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.filter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.findCaller", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.getChild", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.getEffectiveLevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.hasHandlers", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.info", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.isEnabledFor", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.log", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.makeRecord", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.propagate", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.removeFilter", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.removeHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.setLevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.Logger.warning", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.LoggerAdapter", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.LoggerAdapter.process", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.NullHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.NullHandler.createLock", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.NullHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.NullHandler.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.StreamHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.StreamHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.StreamHandler.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.StreamHandler.setStream", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.StreamHandler.terminator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.addLevelName", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.basicConfig", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.captureWarnings", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.config", "domain": "py", "role": "module", "priority": "0", "uri": "library/logging.config.html#module-$", "dispname": "-"}, {"name": "logging.config.dictConfig", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.config.html#$", "dispname": "-"}, {"name": "logging.config.fileConfig", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.config.html#$", "dispname": "-"}, {"name": "logging.config.listen", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.config.html#$", "dispname": "-"}, {"name": "logging.config.stopListening", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.config.html#$", "dispname": "-"}, {"name": "logging.critical", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.debug", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.disable", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.error", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.exception", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.getLevelName", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.getLogRecordFactory", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.getLogger", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.getLoggerClass", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.handlers", "domain": "py", "role": "module", "priority": "0", "uri": "library/logging.handlers.html#module-$", "dispname": "-"}, {"name": "logging.handlers.BaseRotatingHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BaseRotatingHandler.namer", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BaseRotatingHandler.rotate", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BaseRotatingHandler.rotation_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BaseRotatingHandler.rotator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BufferingHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BufferingHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BufferingHandler.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.BufferingHandler.shouldFlush", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.DatagramHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.DatagramHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.DatagramHandler.makeSocket", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.DatagramHandler.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.HTTPHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.HTTPHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.HTTPHandler.mapLogRecord", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.MemoryHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.MemoryHandler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.MemoryHandler.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.MemoryHandler.setTarget", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.MemoryHandler.shouldFlush", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.NTEventLogHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.NTEventLogHandler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.NTEventLogHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.NTEventLogHandler.getEventCategory", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.NTEventLogHandler.getEventType", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.NTEventLogHandler.getMessageID", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueHandler.enqueue", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueHandler.listener", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueHandler.prepare", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener.dequeue", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener.enqueue_sentinel", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener.prepare", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.QueueListener.stop", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.RotatingFileHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.RotatingFileHandler.doRollover", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.RotatingFileHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SMTPHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SMTPHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SMTPHandler.getSubject", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.createSocket", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.handleError", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.makePickle", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.makeSocket", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SocketHandler.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SysLogHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SysLogHandler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SysLogHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SysLogHandler.encodePriority", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.SysLogHandler.mapPriority", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.TimedRotatingFileHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.TimedRotatingFileHandler.doRollover", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.TimedRotatingFileHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.TimedRotatingFileHandler.getFilesToDelete", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.WatchedFileHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.WatchedFileHandler.emit", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.handlers.WatchedFileHandler.reopenIfNeeded", "domain": "py", "role": "method", "priority": "1", "uri": "library/logging.handlers.html#$", "dispname": "-"}, {"name": "logging.info", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.lastResort", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.log", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.logging.Formatter.__init__", "domain": "py", "role": "method", "priority": "1", "uri": "howto/logging.html#$", "dispname": "-"}, {"name": "logging.makeLogRecord", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.setLogRecordFactory", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.setLoggerClass", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.shutdown", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "logging.warning", "domain": "py", "role": "function", "priority": "1", "uri": "library/logging.html#$", "dispname": "-"}, {"name": "lzma", "domain": "py", "role": "module", "priority": "0", "uri": "library/lzma.html#module-$", "dispname": "-"}, {"name": "lzma.LZMACompressor", "domain": "py", "role": "class", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMACompressor.compress", "domain": "py", "role": "method", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMACompressor.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMADecompressor", "domain": "py", "role": "class", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMADecompressor.check", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMADecompressor.decompress", "domain": "py", "role": "method", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMADecompressor.eof", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMADecompressor.needs_input", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMADecompressor.unused_data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMAError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMAFile", "domain": "py", "role": "class", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.LZMAFile.peek", "domain": "py", "role": "method", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.compress", "domain": "py", "role": "function", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.decompress", "domain": "py", "role": "function", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.is_check_supported", "domain": "py", "role": "function", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "lzma.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/lzma.html#$", "dispname": "-"}, {"name": "mailbox", "domain": "py", "role": "module", "priority": "0", "uri": "library/mailbox.html#module-$", "dispname": "-"}, {"name": "mailbox.Babyl", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Babyl.get_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Babyl.get_labels", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Babyl.lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Babyl.unlock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.add_label", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.get_labels", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.get_visible", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.remove_label", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.set_labels", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.set_visible", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.BabylMessage.update_visible", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.ExternalClashError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.FormatError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.__delitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.add_folder", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.discard", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.get_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.get_folder", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.get_sequences", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.list_folders", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.pack", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.remove_folder", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.set_sequences", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MH.unlock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MHMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MHMessage.add_sequence", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MHMessage.get_sequences", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MHMessage.remove_sequence", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MHMessage.set_sequences", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDF", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDF.get_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDF.lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDF.unlock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage.add_flag", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage.get_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage.get_from", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage.remove_flag", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage.set_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MMDFMessage.set_from", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.__contains__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.__delitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.__iter__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.__len__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.discard", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.get_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.get_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.get_message", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.get_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.iteritems", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.iterkeys", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.itervalues", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.pop", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.popitem", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.unlock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Mailbox.values", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.add_folder", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.clean", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.get_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.get_folder", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.list_folders", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.remove_folder", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.unlock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Maildir.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.add_flag", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.get_date", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.get_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.get_info", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.get_subdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.remove_flag", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.set_date", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.set_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.set_info", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.MaildirMessage.set_subdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.Message", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.NoSuchMailboxError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.NotEmptyError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mbox", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mbox.get_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mbox.lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mbox.unlock", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage", "domain": "py", "role": "class", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage.add_flag", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage.get_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage.get_from", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage.remove_flag", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage.set_flags", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailbox.mboxMessage.set_from", "domain": "py", "role": "method", "priority": "1", "uri": "library/mailbox.html#$", "dispname": "-"}, {"name": "mailcap", "domain": "py", "role": "module", "priority": "0", "uri": "library/mailcap.html#module-$", "dispname": "-"}, {"name": "mailcap.findmatch", "domain": "py", "role": "function", "priority": "1", "uri": "library/mailcap.html#$", "dispname": "-"}, {"name": "mailcap.getcaps", "domain": "py", "role": "function", "priority": "1", "uri": "library/mailcap.html#$", "dispname": "-"}, {"name": "map", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "marshal", "domain": "py", "role": "module", "priority": "0", "uri": "library/marshal.html#module-$", "dispname": "-"}, {"name": "marshal.dump", "domain": "py", "role": "function", "priority": "1", "uri": "library/marshal.html#$", "dispname": "-"}, {"name": "marshal.dumps", "domain": "py", "role": "function", "priority": "1", "uri": "library/marshal.html#$", "dispname": "-"}, {"name": "marshal.load", "domain": "py", "role": "function", "priority": "1", "uri": "library/marshal.html#$", "dispname": "-"}, {"name": "marshal.loads", "domain": "py", "role": "function", "priority": "1", "uri": "library/marshal.html#$", "dispname": "-"}, {"name": "marshal.version", "domain": "py", "role": "data", "priority": "1", "uri": "library/marshal.html#$", "dispname": "-"}, {"name": "math", "domain": "py", "role": "module", "priority": "0", "uri": "library/math.html#module-$", "dispname": "-"}, {"name": "math.acos", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.acosh", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.asin", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.asinh", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.atan", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.atan2", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.atanh", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.ceil", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.comb", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.copysign", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.cos", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.cosh", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.degrees", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.dist", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.e", "domain": "py", "role": "data", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.erf", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.erfc", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.exp", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.expm1", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.fabs", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.factorial", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.floor", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.fmod", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.frexp", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.fsum", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.gamma", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.gcd", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.hypot", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.inf", "domain": "py", "role": "data", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.isclose", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.isfinite", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.isinf", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.isnan", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.isqrt", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.lcm", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.ldexp", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.lgamma", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.log", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.log10", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.log1p", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.log2", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.modf", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.nan", "domain": "py", "role": "data", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.nextafter", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.perm", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.pi", "domain": "py", "role": "data", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.pow", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.prod", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.radians", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.remainder", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.sin", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.sinh", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.sqrt", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.tan", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.tanh", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.tau", "domain": "py", "role": "data", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.trunc", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "math.ulp", "domain": "py", "role": "function", "priority": "1", "uri": "library/math.html#$", "dispname": "-"}, {"name": "max", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "memoryview", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.__eq__", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.c_contiguous", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.cast", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.contiguous", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.f_contiguous", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.format", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.hex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.itemsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.nbytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.ndim", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.obj", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.readonly", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.shape", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.strides", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.suboffsets", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.tobytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.tolist", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "memoryview.toreadonly", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "mimetypes", "domain": "py", "role": "module", "priority": "0", "uri": "library/mimetypes.html#module-$", "dispname": "-"}, {"name": "mimetypes.MimeTypes", "domain": "py", "role": "class", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.encodings_map", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.guess_all_extensions", "domain": "py", "role": "method", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.guess_extension", "domain": "py", "role": "method", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.guess_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.read_windows_registry", "domain": "py", "role": "method", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.readfp", "domain": "py", "role": "method", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.suffix_map", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.types_map", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.MimeTypes.types_map_inv", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.add_type", "domain": "py", "role": "function", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.common_types", "domain": "py", "role": "data", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.encodings_map", "domain": "py", "role": "data", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.guess_all_extensions", "domain": "py", "role": "function", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.guess_extension", "domain": "py", "role": "function", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.guess_type", "domain": "py", "role": "function", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.init", "domain": "py", "role": "function", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.inited", "domain": "py", "role": "data", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.knownfiles", "domain": "py", "role": "data", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.read_mime_types", "domain": "py", "role": "function", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.suffix_map", "domain": "py", "role": "data", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "mimetypes.types_map", "domain": "py", "role": "data", "priority": "1", "uri": "library/mimetypes.html#$", "dispname": "-"}, {"name": "min", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "mmap", "domain": "py", "role": "module", "priority": "0", "uri": "library/mmap.html#module-$", "dispname": "-"}, {"name": "mmap.MADV_AUTOSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_CORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_DODUMP", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_DOFORK", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_DONTDUMP", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_DONTFORK", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_DONTNEED", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_FREE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_FREE_REUSABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_FREE_REUSE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_HUGEPAGE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_HWPOISON", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_MERGEABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_NOCORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_NOHUGEPAGE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_NORMAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_NOSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_PROTECT", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_RANDOM", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_REMOVE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_SEQUENTIAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_SOFT_OFFLINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_UNMERGEABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MADV_WILLNEED", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_ANON", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_ANONYMOUS", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_DENYWRITE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_EXECUTABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_POPULATE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_PRIVATE", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.MAP_SHARED", "domain": "py", "role": "data", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap", "domain": "py", "role": "class", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.madvise", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.move", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.read_byte", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.readline", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.resize", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.rfind", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.seek", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.size", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "mmap.mmap.write_byte", "domain": "py", "role": "method", "priority": "1", "uri": "library/mmap.html#$", "dispname": "-"}, {"name": "modulefinder", "domain": "py", "role": "module", "priority": "0", "uri": "library/modulefinder.html#module-$", "dispname": "-"}, {"name": "modulefinder.AddPackagePath", "domain": "py", "role": "function", "priority": "1", "uri": "library/modulefinder.html#$", "dispname": "-"}, {"name": "modulefinder.ModuleFinder", "domain": "py", "role": "class", "priority": "1", "uri": "library/modulefinder.html#$", "dispname": "-"}, {"name": "modulefinder.ModuleFinder.modules", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/modulefinder.html#$", "dispname": "-"}, {"name": "modulefinder.ModuleFinder.report", "domain": "py", "role": "method", "priority": "1", "uri": "library/modulefinder.html#$", "dispname": "-"}, {"name": "modulefinder.ModuleFinder.run_script", "domain": "py", "role": "method", "priority": "1", "uri": "library/modulefinder.html#$", "dispname": "-"}, {"name": "modulefinder.ReplacePackage", "domain": "py", "role": "function", "priority": "1", "uri": "library/modulefinder.html#$", "dispname": "-"}, {"name": "msilib", "domain": "py", "role": "module", "priority": "0", "uri": "library/msilib.html#module-$", "dispname": "-"}, {"name": "msilib.Binary", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.CAB", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.CAB.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.CAB.commit", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Control", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Control.condition", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Control.event", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Control.mapping", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.CreateRecord", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Database.Close", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Database.Commit", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Database.GetSummaryInformation", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Database.OpenView", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.bitmap", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.checkbox", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.control", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.line", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.pushbutton", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.radiogroup", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Dialog.text", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Directory", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Directory.add_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Directory.glob", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Directory.remove_pyc", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Directory.start_component", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.FCICreate", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Feature", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Feature.set_current", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.OpenDatabase", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.RadioButtonGroup", "domain": "py", "role": "class", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.RadioButtonGroup.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.ClearData", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.GetFieldCount", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.GetInteger", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.GetString", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.SetInteger", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.SetStream", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.Record.SetString", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.SummaryInformation.GetProperty", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.SummaryInformation.GetPropertyCount", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.SummaryInformation.Persist", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.SummaryInformation.SetProperty", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.UuidCreate", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.View.Close", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.View.Execute", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.View.Fetch", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.View.GetColumnInfo", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.View.Modify", "domain": "py", "role": "method", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.add_data", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.add_stream", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.add_tables", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.gen_uuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.init_database", "domain": "py", "role": "function", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.schema", "domain": "py", "role": "data", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.sequence", "domain": "py", "role": "data", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msilib.text", "domain": "py", "role": "data", "priority": "1", "uri": "library/msilib.html#$", "dispname": "-"}, {"name": "msvcrt", "domain": "py", "role": "module", "priority": "0", "uri": "library/msvcrt.html#module-$", "dispname": "-"}, {"name": "msvcrt.LK_LOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.LK_NBLCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.LK_NBRLCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.LK_RLCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.LK_UNLCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.get_osfhandle", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.getch", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.getche", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.getwch", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.getwche", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.heapmin", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.kbhit", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.locking", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.open_osfhandle", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.putch", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.putwch", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.setmode", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.ungetch", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "msvcrt.ungetwch", "domain": "py", "role": "function", "priority": "1", "uri": "library/msvcrt.html#$", "dispname": "-"}, {"name": "multiprocessing", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.html#module-$", "dispname": "-"}, {"name": "multiprocessing.Array", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.AuthenticationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Barrier", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.BoundedSemaphore", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.BufferTooShort", "domain": "py", "role": "exception", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Condition", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Event", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.JoinableQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.JoinableQueue.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.JoinableQueue.task_done", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Lock", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Lock.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Lock.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Manager", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Pipe", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.authkey", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.daemon", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.exitcode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.is_alive", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.kill", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.pid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.sentinel", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Process.terminate", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.ProcessError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.cancel_join_thread", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.empty", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.full", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.get_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.join_thread", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.put", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.put_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Queue.qsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.RLock", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.RLock.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.RLock.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Semaphore", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.SimpleQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.SimpleQueue.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.SimpleQueue.empty", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.SimpleQueue.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.SimpleQueue.put", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.TimeoutError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.Value", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.active_children", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.html#module-$", "dispname": "-"}, {"name": "multiprocessing.connection.Client", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.poll", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.recv", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.recv_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.recv_bytes_into", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Connection.send_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Listener", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Listener.accept", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Listener.address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Listener.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.Listener.last_accepted", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.answer_challenge", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.deliver_challenge", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.connection.wait", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.cpu_count", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.current_process", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.dummy", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.html#module-$", "dispname": "-"}, {"name": "multiprocessing.freeze_support", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.get_all_start_methods", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.get_context", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.get_logger", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.get_start_method", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.log_to_stderr", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.html#module-$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager.address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager.connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager.get_server", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager.register", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager.shutdown", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseManager.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseProxy", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseProxy.__repr__", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseProxy.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseProxy._callmethod", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.BaseProxy._getvalue", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.Namespace", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SharedMemoryManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SharedMemoryManager.ShareableList", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SharedMemoryManager.SharedMemory", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Array", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Barrier", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.BoundedSemaphore", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Condition", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Event", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Lock", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Namespace", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Queue", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.RLock", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Semaphore", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.Value", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.dict", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.managers.SyncManager.list", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.parent_process", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.html#module-$", "dispname": "-"}, {"name": "multiprocessing.pool.AsyncResult", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.AsyncResult.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.AsyncResult.ready", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.AsyncResult.successful", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.AsyncResult.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.apply", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.apply_async", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.imap", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.imap_unordered", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.map", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.map_async", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.starmap", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.starmap_async", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.Pool.terminate", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.pool.ThreadPool", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.set_executable", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.set_start_method", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.shared_memory.html#module-$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.ShareableList", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.ShareableList.count", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.ShareableList.format", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.ShareableList.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.ShareableList.shm", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.SharedMemory", "domain": "py", "role": "class", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.SharedMemory.buf", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.SharedMemory.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.SharedMemory.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.SharedMemory.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.shared_memory.SharedMemory.unlink", "domain": "py", "role": "method", "priority": "1", "uri": "library/multiprocessing.shared_memory.html#$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes", "domain": "py", "role": "module", "priority": "0", "uri": "library/multiprocessing.html#module-$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes.Array", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes.RawArray", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes.RawValue", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes.Value", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes.copy", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing.sharedctypes.synchronized", "domain": "py", "role": "function", "priority": "1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "netrc", "domain": "py", "role": "module", "priority": "0", "uri": "library/netrc.html#module-$", "dispname": "-"}, {"name": "netrc.NetrcParseError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/netrc.html#$", "dispname": "-"}, {"name": "netrc.netrc", "domain": "py", "role": "class", "priority": "1", "uri": "library/netrc.html#$", "dispname": "-"}, {"name": "netrc.netrc.__repr__", "domain": "py", "role": "method", "priority": "1", "uri": "library/netrc.html#$", "dispname": "-"}, {"name": "netrc.netrc.authenticators", "domain": "py", "role": "method", "priority": "1", "uri": "library/netrc.html#$", "dispname": "-"}, {"name": "netrc.netrc.hosts", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/netrc.html#$", "dispname": "-"}, {"name": "netrc.netrc.macros", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/netrc.html#$", "dispname": "-"}, {"name": "next", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "nis", "domain": "py", "role": "module", "priority": "0", "uri": "library/nis.html#module-$", "dispname": "-"}, {"name": "nis.cat", "domain": "py", "role": "function", "priority": "1", "uri": "library/nis.html#$", "dispname": "-"}, {"name": "nis.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nis.html#$", "dispname": "-"}, {"name": "nis.get_default_domain", "domain": "py", "role": "function", "priority": "1", "uri": "library/nis.html#$", "dispname": "-"}, {"name": "nis.maps", "domain": "py", "role": "function", "priority": "1", "uri": "library/nis.html#$", "dispname": "-"}, {"name": "nis.match", "domain": "py", "role": "function", "priority": "1", "uri": "library/nis.html#$", "dispname": "-"}, {"name": "nntplib", "domain": "py", "role": "module", "priority": "0", "uri": "library/nntplib.html#module-$", "dispname": "-"}, {"name": "nntplib.NNTP", "domain": "py", "role": "class", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.article", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.body", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.date", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.description", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.descriptions", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.getcapabilities", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.getwelcome", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.group", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.head", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.help", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.ihave", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.last", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.list", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.login", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.newgroups", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.newnews", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.next", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.nntp_implementation", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.nntp_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.over", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.post", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.quit", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.set_debuglevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.slave", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.starttls", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.stat", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.xhdr", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP.xover", "domain": "py", "role": "method", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPDataError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPError.response", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPPermanentError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPProtocolError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPReplyError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTPTemporaryError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.NNTP_SSL", "domain": "py", "role": "class", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "nntplib.decode_header", "domain": "py", "role": "function", "priority": "1", "uri": "library/nntplib.html#$", "dispname": "-"}, {"name": "numbers", "domain": "py", "role": "module", "priority": "0", "uri": "library/numbers.html#module-$", "dispname": "-"}, {"name": "numbers.Complex", "domain": "py", "role": "class", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Complex.conjugate", "domain": "py", "role": "method", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Complex.imag", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Complex.real", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Integral", "domain": "py", "role": "class", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Number", "domain": "py", "role": "class", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Rational", "domain": "py", "role": "class", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Rational.denominator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Rational.numerator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "numbers.Real", "domain": "py", "role": "class", "priority": "1", "uri": "library/numbers.html#$", "dispname": "-"}, {"name": "object", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "object.__abs__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__add__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__aenter__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__aexit__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__aiter__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__and__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__anext__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__await__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__bool__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__bytes__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ceil__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__class_getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__complex__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__contains__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__del__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__delattr__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__delete__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__delitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__dict__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "object.__dir__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__divmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__enter__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__eq__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__exit__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__float__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__floor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__floordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__format__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ge__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__get__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__getattr__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__getattribute__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__getnewargs__", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "object.__getnewargs_ex__", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "object.__getstate__", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "object.__gt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__hash__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__iadd__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__iand__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ifloordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ilshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__imatmul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__imod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__imul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__index__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__init__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__init_subclass__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__int__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__invert__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ior__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ipow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__irshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__isub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__iter__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__itruediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ixor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__le__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__len__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__length_hint__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__lshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__lt__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__match_args__", "domain": "py", "role": "data", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__matmul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__missing__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__mod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__mul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ne__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__neg__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__new__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__or__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__pos__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__pow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__radd__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rand__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rdivmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__reduce__", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "object.__reduce_ex__", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "object.__repr__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__reversed__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rfloordiv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rlshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rmatmul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rmod__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rmul__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__ror__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__round__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rpow__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rrshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rshift__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rsub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rtruediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__rxor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__set__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__set_name__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__setattr__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__setitem__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__setstate__", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "object.__slots__", "domain": "py", "role": "data", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__str__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__sub__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__truediv__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__trunc__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "object.__xor__", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "oct", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "open", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "operator", "domain": "py", "role": "module", "priority": "0", "uri": "library/operator.html#module-$", "dispname": "-"}, {"name": "operator.__abs__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__add__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__and__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__concat__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__contains__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__delitem__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__eq__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__floordiv__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ge__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__getitem__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__gt__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__iadd__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__iand__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__iconcat__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ifloordiv__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ilshift__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__imatmul__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__imod__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__imul__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__index__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__inv__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__invert__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ior__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ipow__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__irshift__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__isub__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__itruediv__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ixor__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__le__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__lshift__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__lt__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__matmul__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__mod__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__mul__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__ne__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__neg__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__not__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__or__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__pos__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__pow__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__rshift__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__setitem__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__sub__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__truediv__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.__xor__", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.abs", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.add", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.and_", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.attrgetter", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.concat", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.contains", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.countOf", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.delitem", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.eq", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.floordiv", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ge", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.getitem", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.gt", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.iadd", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.iand", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.iconcat", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ifloordiv", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ilshift", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.imatmul", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.imod", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.imul", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.index", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.indexOf", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.inv", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.invert", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ior", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ipow", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.irshift", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.is_", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.is_not", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.isub", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.itemgetter", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.itruediv", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ixor", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.le", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.length_hint", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.lshift", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.lt", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.matmul", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.methodcaller", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.mod", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.mul", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.ne", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.neg", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.not_", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.or_", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.pos", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.pow", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.rshift", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.setitem", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.sub", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.truediv", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.truth", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "operator.xor", "domain": "py", "role": "function", "priority": "1", "uri": "library/operator.html#$", "dispname": "-"}, {"name": "optparse", "domain": "py", "role": "module", "priority": "0", "uri": "library/optparse.html#module-$", "dispname": "-"}, {"name": "optparse.Option.ACTIONS", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.ALWAYS_TYPED_ACTIONS", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.STORE_ACTIONS", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.TYPED_ACTIONS", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.TYPES", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.TYPE_CHECKER", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.action", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.callback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.callback_args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.callback_kwargs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.choices", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.const", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.default", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.dest", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.help", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.metavar", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.nargs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.Option.type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionGroup", "domain": "py", "role": "class", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.add_option", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.disable_interspersed_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.enable_interspersed_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.get_option", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.get_option_group", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.get_usage", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.get_version", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.has_option", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.print_usage", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.print_version", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.remove_option", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.set_defaults", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "optparse.OptionParser.set_usage", "domain": "py", "role": "method", "priority": "1", "uri": "library/optparse.html#$", "dispname": "-"}, {"name": "ord", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "os", "domain": "py", "role": "module", "priority": "0", "uri": "library/os.html#module-$", "dispname": "-"}, {"name": "os.CLD_CONTINUED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.CLD_DUMPED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.CLD_EXITED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.CLD_KILLED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.CLD_STOPPED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.CLD_TRAPPED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry", "domain": "py", "role": "class", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.inode", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.is_dir", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.is_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.is_symlink", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.path", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.DirEntry.stat", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EFD_CLOEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EFD_NONBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EFD_SEMAPHORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_CANTCREAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_CONFIG", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_DATAERR", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_IOERR", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_NOHOST", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_NOINPUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_NOPERM", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_NOTFOUND", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_NOUSER", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_OSERR", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_OSFILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_PROTOCOL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_SOFTWARE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_TEMPFAIL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_UNAVAILABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.EX_USAGE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.F_LOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.F_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.F_TEST", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.F_TLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.F_ULOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.GRND_NONBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.GRND_RANDOM", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_ALLOW_SEALING", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_CLOEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGETLB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_16GB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_16MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_1GB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_1MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_256MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_2GB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_2MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_32MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_512KB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_512MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_64KB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_8MB", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_MASK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.MFD_HUGE_SHIFT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_APPEND", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_ASYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_BINARY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_CLOEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_CREAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_DIRECT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_DIRECTORY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_DSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_EVTONLY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_EXCL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_EXLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_FSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NDELAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NOATIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NOCTTY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NOFOLLOW", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NOFOLLOW_ANY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NOINHERIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_NONBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_PATH", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_RANDOM", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_RDONLY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_RDWR", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_RSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_SEQUENTIAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_SHLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_SHORT_LIVED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_SYMLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_SYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_TEMPORARY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_TEXT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_TMPFILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_TRUNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.O_WRONLY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_FADV_DONTNEED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_FADV_NOREUSE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_FADV_NORMAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_FADV_RANDOM", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_FADV_SEQUENTIAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_FADV_WILLNEED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_SPAWN_CLOSE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_SPAWN_DUP2", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.POSIX_SPAWN_OPEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.PRIO_PGRP", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.PRIO_PROCESS", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.PRIO_USER", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_ALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_DETACH", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_NOWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_NOWAITO", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_OVERLAY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_PGID", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_PID", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_PIDFD", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.P_WAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.PathLike", "domain": "py", "role": "class", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.PathLike.__fspath__", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_DEEPBIND", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_GLOBAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_LAZY", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_LOCAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_NODELETE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_NOLOAD", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RTLD_NOW", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RWF_APPEND", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RWF_DSYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RWF_HIPRI", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RWF_NOWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.RWF_SYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.R_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_BATCH", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_FIFO", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_IDLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_OTHER", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_RESET_ON_FORK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_RR", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SCHED_SPORADIC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SEEK_CUR", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SEEK_END", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SEEK_SET", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SF_MNOWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SF_NODISKIO", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SF_SYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SPLICE_F_MORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SPLICE_F_MOVE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.SPLICE_F_NONBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WCONTINUED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WCOREDUMP", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WEXITED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WEXITSTATUS", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WIFCONTINUED", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WIFEXITED", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WIFSIGNALED", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WIFSTOPPED", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WNOHANG", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WNOWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WSTOPPED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WSTOPSIG", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WTERMSIG", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.WUNTRACED", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.W_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.XATTR_CREATE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.XATTR_REPLACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.XATTR_SIZE_MAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.X_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os._exit", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.abort", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.access", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.add_dll_directory", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.altsep", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.chdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.chflags", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.chmod", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.chown", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.chroot", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.close", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.closerange", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.confstr", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.confstr_names", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.copy_file_range", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.cpu_count", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.ctermid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.curdir", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.defpath", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.device_encoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.devnull", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.dup", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.dup2", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.environ", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.environb", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.eventfd", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.eventfd_read", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.eventfd_write", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execl", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execle", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execlp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execlpe", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execve", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execvp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.execvpe", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.extsep", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fchdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fchmod", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fchown", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fdatasync", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fdopen", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fork", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.forkpty", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fpathconf", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fsdecode", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fsencode", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fspath", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fstat", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fstatvfs", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fsync", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.ftruncate", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.fwalk", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.get_blocking", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.get_exec_path", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.get_handle_inheritable", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.get_inheritable", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.get_terminal_size", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getcwd", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getcwdb", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getegid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getenv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getenvb", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.geteuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getgrouplist", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getgroups", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getloadavg", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getlogin", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getpgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getpgrp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getpid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getppid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getpriority", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getrandom", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getresgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getresuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getsid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.getxattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.initgroups", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.isatty", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.kill", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.killpg", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.lchflags", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.lchmod", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.lchown", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.linesep", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.link", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.listdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.listxattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.lockf", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.lseek", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.lstat", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.major", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.makedev", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.makedirs", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.memfd_create", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.minor", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.mkdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.mkfifo", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.mknod", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.name", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.nice", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.openpty", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pardir", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.path", "domain": "py", "role": "module", "priority": "0", "uri": "library/os.path.html#module-$", "dispname": "-"}, {"name": "os.path.abspath", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.basename", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.commonpath", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.commonprefix", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.dirname", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.exists", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.expanduser", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.expandvars", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.getatime", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.getctime", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.getmtime", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.getsize", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.isabs", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.isdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.isfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.islink", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.ismount", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.join", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.lexists", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.normcase", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.normpath", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.realpath", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.relpath", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.samefile", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.sameopenfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.samestat", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.split", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.splitdrive", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.splitext", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.path.supports_unicode_filenames", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.path.html#$", "dispname": "-"}, {"name": "os.pathconf", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pathconf_names", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pathsep", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pidfd_open", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pipe", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pipe2", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.plock", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.popen", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.posix_fadvise", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.posix_fallocate", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.posix_spawn", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.posix_spawnp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pread", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.preadv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.putenv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pwrite", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.pwritev", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.read", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.readlink", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.readv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.register_at_fork", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.remove", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.removedirs", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.removexattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.rename", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.renames", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.replace", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.rmdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.scandir", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.scandir.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_get_priority_max", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_get_priority_min", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_getaffinity", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_getparam", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_getscheduler", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_param", "domain": "py", "role": "class", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_param.sched_priority", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_rr_get_interval", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_setaffinity", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_setparam", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_setscheduler", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sched_yield", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sendfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sep", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.set_blocking", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.set_handle_inheritable", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.set_inheritable", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setegid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.seteuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setgroups", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setpgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setpgrp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setpriority", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setregid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setresgid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setresuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setreuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setsid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.setxattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnl", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnle", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnlp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnlpe", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnve", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnvp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.spawnvpe", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.splice", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.startfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result", "domain": "py", "role": "class", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_atime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_atime_ns", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_birthtime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_blksize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_blocks", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_creator", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_ctime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_ctime_ns", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_dev", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_file_attributes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_fstype", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_gen", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_gid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_ino", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_mode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_mtime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_mtime_ns", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_nlink", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_rdev", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_reparse_tag", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_rsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.stat_result.st_uid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.statvfs", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.strerror", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.supports_bytes_environ", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.supports_dir_fd", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.supports_effective_ids", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.supports_fd", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.supports_follow_symlinks", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.symlink", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sync", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sysconf", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.sysconf_names", "domain": "py", "role": "data", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.system", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.tcgetpgrp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.tcsetpgrp", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.terminal_size", "domain": "py", "role": "class", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.terminal_size.columns", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.terminal_size.lines", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.times", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.truncate", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.ttyname", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.umask", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.uname", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.unlink", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.unsetenv", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.urandom", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.utime", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.wait", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.wait3", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.wait4", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.waitid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.waitpid", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.waitstatus_to_exitcode", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.walk", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.write", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "os.writev", "domain": "py", "role": "function", "priority": "1", "uri": "library/os.html#$", "dispname": "-"}, {"name": "ossaudiodev", "domain": "py", "role": "module", "priority": "0", "uri": "library/ossaudiodev.html#module-$", "dispname": "-"}, {"name": "ossaudiodev.OSSAudioError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.openmixer", "domain": "py", "role": "function", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.bufsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.channels", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.getfmts", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.mode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.nonblock", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.obufcount", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.obuffree", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.post", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.setfmt", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.setparameters", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.speed", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.sync", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_audio_device.writeall", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.controls", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.get_recsrc", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.reccontrols", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.set_recsrc", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "ossaudiodev.oss_mixer_device.stereocontrols", "domain": "py", "role": "method", "priority": "1", "uri": "library/ossaudiodev.html#$", "dispname": "-"}, {"name": "pathlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/pathlib.html#module-$", "dispname": "-"}, {"name": "pathlib.Path", "domain": "py", "role": "class", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.chmod", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.cwd", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.exists", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.expanduser", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.glob", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.group", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.hardlink_to", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.home", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_block_device", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_char_device", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_dir", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_fifo", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_mount", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_socket", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.is_symlink", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.iterdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.lchmod", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.link_to", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.lstat", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.mkdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.owner", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.read_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.read_text", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.readlink", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.rename", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.resolve", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.rglob", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.rmdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.samefile", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.stat", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.symlink_to", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.touch", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.unlink", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.write_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.Path.write_text", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PosixPath", "domain": "py", "role": "class", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath", "domain": "py", "role": "class", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.anchor", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.as_posix", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.as_uri", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.drive", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.is_absolute", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.is_relative_to", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.is_reserved", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.joinpath", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.match", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.parent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.parents", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.parts", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.relative_to", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.root", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.stem", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.suffix", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.suffixes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.with_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.with_stem", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePath.with_suffix", "domain": "py", "role": "method", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PurePosixPath", "domain": "py", "role": "class", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.PureWindowsPath", "domain": "py", "role": "class", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pathlib.WindowsPath", "domain": "py", "role": "class", "priority": "1", "uri": "library/pathlib.html#$", "dispname": "-"}, {"name": "pdb", "domain": "py", "role": "module", "priority": "0", "uri": "library/pdb.html#module-$", "dispname": "-"}, {"name": "pdb.Pdb", "domain": "py", "role": "class", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.Pdb.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.Pdb.runcall", "domain": "py", "role": "method", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.Pdb.runeval", "domain": "py", "role": "method", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.Pdb.set_trace", "domain": "py", "role": "method", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.pm", "domain": "py", "role": "function", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.post_mortem", "domain": "py", "role": "function", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.run", "domain": "py", "role": "function", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.runcall", "domain": "py", "role": "function", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.runeval", "domain": "py", "role": "function", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pdb.set_trace", "domain": "py", "role": "function", "priority": "1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "pickle", "domain": "py", "role": "module", "priority": "0", "uri": "library/pickle.html#module-$", "dispname": "-"}, {"name": "pickle.DEFAULT_PROTOCOL", "domain": "py", "role": "data", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.HIGHEST_PROTOCOL", "domain": "py", "role": "data", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.PickleBuffer", "domain": "py", "role": "class", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.PickleBuffer.raw", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.PickleBuffer.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.PickleError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Pickler", "domain": "py", "role": "class", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Pickler.dispatch_table", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Pickler.dump", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Pickler.fast", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Pickler.persistent_id", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Pickler.reducer_override", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.PicklingError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Unpickler", "domain": "py", "role": "class", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Unpickler.find_class", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Unpickler.load", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.Unpickler.persistent_load", "domain": "py", "role": "method", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.UnpicklingError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.dump", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.dumps", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.load", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickle.loads", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickle.html#$", "dispname": "-"}, {"name": "pickletools", "domain": "py", "role": "module", "priority": "0", "uri": "library/pickletools.html#module-$", "dispname": "-"}, {"name": "pickletools.dis", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickletools.html#$", "dispname": "-"}, {"name": "pickletools.genops", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickletools.html#$", "dispname": "-"}, {"name": "pickletools.optimize", "domain": "py", "role": "function", "priority": "1", "uri": "library/pickletools.html#$", "dispname": "-"}, {"name": "pipes", "domain": "py", "role": "module", "priority": "0", "uri": "library/pipes.html#module-$", "dispname": "-"}, {"name": "pipes.Template", "domain": "py", "role": "class", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.clone", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.debug", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.prepend", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pipes.Template.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/pipes.html#$", "dispname": "-"}, {"name": "pkgutil", "domain": "py", "role": "module", "priority": "0", "uri": "library/pkgutil.html#module-$", "dispname": "-"}, {"name": "pkgutil.ImpImporter", "domain": "py", "role": "class", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.ImpLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.ModuleInfo", "domain": "py", "role": "class", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.extend_path", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.find_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.get_data", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.get_importer", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.get_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.iter_importers", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.iter_modules", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.resolve_name", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "pkgutil.walk_packages", "domain": "py", "role": "function", "priority": "1", "uri": "library/pkgutil.html#$", "dispname": "-"}, {"name": "platform", "domain": "py", "role": "module", "priority": "0", "uri": "library/platform.html#module-$", "dispname": "-"}, {"name": "platform.architecture", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.freedesktop_os_release", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.java_ver", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.libc_ver", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.mac_ver", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.machine", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.node", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.platform", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.processor", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_branch", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_build", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_compiler", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_implementation", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_revision", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_version", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.python_version_tuple", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.release", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.system", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.system_alias", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.uname", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.version", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.win32_edition", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.win32_is_iot", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "platform.win32_ver", "domain": "py", "role": "function", "priority": "1", "uri": "library/platform.html#$", "dispname": "-"}, {"name": "plistlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/plistlib.html#module-$", "dispname": "-"}, {"name": "plistlib.FMT_BINARY", "domain": "py", "role": "data", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "plistlib.FMT_XML", "domain": "py", "role": "data", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "plistlib.UID", "domain": "py", "role": "class", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "plistlib.dump", "domain": "py", "role": "function", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "plistlib.dumps", "domain": "py", "role": "function", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "plistlib.load", "domain": "py", "role": "function", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "plistlib.loads", "domain": "py", "role": "function", "priority": "1", "uri": "library/plistlib.html#$", "dispname": "-"}, {"name": "poplib", "domain": "py", "role": "module", "priority": "0", "uri": "library/poplib.html#module-$", "dispname": "-"}, {"name": "poplib.POP3", "domain": "py", "role": "class", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.apop", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.capa", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.dele", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.getwelcome", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.list", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.noop", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.pass_", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.quit", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.retr", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.rpop", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.rset", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.set_debuglevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.stat", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.stls", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.top", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.uidl", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.user", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3.utf8", "domain": "py", "role": "method", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.POP3_SSL", "domain": "py", "role": "class", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "poplib.error_proto", "domain": "py", "role": "exception", "priority": "1", "uri": "library/poplib.html#$", "dispname": "-"}, {"name": "posix", "domain": "py", "role": "module", "priority": "0", "uri": "library/posix.html#module-$", "dispname": "-"}, {"name": "posix.environ", "domain": "py", "role": "data", "priority": "1", "uri": "library/posix.html#$", "dispname": "-"}, {"name": "pow", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "pprint", "domain": "py", "role": "module", "priority": "0", "uri": "library/pprint.html#module-$", "dispname": "-"}, {"name": "pprint.PrettyPrinter", "domain": "py", "role": "class", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.PrettyPrinter.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.PrettyPrinter.isreadable", "domain": "py", "role": "method", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.PrettyPrinter.isrecursive", "domain": "py", "role": "method", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.PrettyPrinter.pformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.PrettyPrinter.pprint", "domain": "py", "role": "method", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.isreadable", "domain": "py", "role": "function", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.isrecursive", "domain": "py", "role": "function", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.pformat", "domain": "py", "role": "function", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.pp", "domain": "py", "role": "function", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.pprint", "domain": "py", "role": "function", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "pprint.saferepr", "domain": "py", "role": "function", "priority": "1", "uri": "library/pprint.html#$", "dispname": "-"}, {"name": "print", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "profile", "domain": "py", "role": "module", "priority": "0", "uri": "library/profile.html#module-$", "dispname": "-"}, {"name": "profile.Profile", "domain": "py", "role": "class", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.create_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.disable", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.dump_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.enable", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.print_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.runcall", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.Profile.runctx", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.run", "domain": "py", "role": "function", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "profile.runctx", "domain": "py", "role": "function", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "property", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "pstats", "domain": "py", "role": "module", "priority": "0", "uri": "library/profile.html#module-$", "dispname": "-"}, {"name": "pstats.Stats", "domain": "py", "role": "class", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.dump_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.get_stats_profile", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.print_callees", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.print_callers", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.print_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.reverse_order", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.sort_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pstats.Stats.strip_dirs", "domain": "py", "role": "method", "priority": "1", "uri": "library/profile.html#$", "dispname": "-"}, {"name": "pty", "domain": "py", "role": "module", "priority": "0", "uri": "library/pty.html#module-$", "dispname": "-"}, {"name": "pty.fork", "domain": "py", "role": "function", "priority": "1", "uri": "library/pty.html#$", "dispname": "-"}, {"name": "pty.openpty", "domain": "py", "role": "function", "priority": "1", "uri": "library/pty.html#$", "dispname": "-"}, {"name": "pty.spawn", "domain": "py", "role": "function", "priority": "1", "uri": "library/pty.html#$", "dispname": "-"}, {"name": "pwd", "domain": "py", "role": "module", "priority": "0", "uri": "library/pwd.html#module-$", "dispname": "-"}, {"name": "pwd.getpwall", "domain": "py", "role": "function", "priority": "1", "uri": "library/pwd.html#$", "dispname": "-"}, {"name": "pwd.getpwnam", "domain": "py", "role": "function", "priority": "1", "uri": "library/pwd.html#$", "dispname": "-"}, {"name": "pwd.getpwuid", "domain": "py", "role": "function", "priority": "1", "uri": "library/pwd.html#$", "dispname": "-"}, {"name": "py_compile", "domain": "py", "role": "module", "priority": "0", "uri": "library/py_compile.html#module-$", "dispname": "-"}, {"name": "py_compile.PyCompileError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/py_compile.html#$", "dispname": "-"}, {"name": "py_compile.PycInvalidationMode", "domain": "py", "role": "class", "priority": "1", "uri": "library/py_compile.html#$", "dispname": "-"}, {"name": "py_compile.PycInvalidationMode.CHECKED_HASH", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/py_compile.html#$", "dispname": "-"}, {"name": "py_compile.PycInvalidationMode.TIMESTAMP", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/py_compile.html#$", "dispname": "-"}, {"name": "py_compile.PycInvalidationMode.UNCHECKED_HASH", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/py_compile.html#$", "dispname": "-"}, {"name": "py_compile.compile", "domain": "py", "role": "function", "priority": "1", "uri": "library/py_compile.html#$", "dispname": "-"}, {"name": "pyclbr", "domain": "py", "role": "module", "priority": "0", "uri": "library/pyclbr.html#module-$", "dispname": "-"}, {"name": "pyclbr.Class.children", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.file", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.methods", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.module", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.parent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Class.super", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.children", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.file", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.is_async", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.module", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.Function.parent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.readmodule", "domain": "py", "role": "function", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pyclbr.readmodule_ex", "domain": "py", "role": "function", "priority": "1", "uri": "library/pyclbr.html#$", "dispname": "-"}, {"name": "pydoc", "domain": "py", "role": "module", "priority": "0", "uri": "library/pydoc.html#module-$", "dispname": "-"}, {"name": "queue", "domain": "py", "role": "module", "priority": "0", "uri": "library/queue.html#module-$", "dispname": "-"}, {"name": "queue.Empty", "domain": "py", "role": "exception", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Full", "domain": "py", "role": "exception", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.LifoQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.PriorityQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue", "domain": "py", "role": "class", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.empty", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.full", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.get_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.put", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.put_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.qsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.Queue.task_done", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue", "domain": "py", "role": "class", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue.empty", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue.get_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue.put", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue.put_nowait", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "queue.SimpleQueue.qsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/queue.html#$", "dispname": "-"}, {"name": "quit", "domain": "py", "role": "data", "priority": "1", "uri": "library/constants.html#$", "dispname": "-"}, {"name": "quopri", "domain": "py", "role": "module", "priority": "0", "uri": "library/quopri.html#module-$", "dispname": "-"}, {"name": "quopri.decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/quopri.html#$", "dispname": "-"}, {"name": "quopri.decodestring", "domain": "py", "role": "function", "priority": "1", "uri": "library/quopri.html#$", "dispname": "-"}, {"name": "quopri.encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/quopri.html#$", "dispname": "-"}, {"name": "quopri.encodestring", "domain": "py", "role": "function", "priority": "1", "uri": "library/quopri.html#$", "dispname": "-"}, {"name": "random", "domain": "py", "role": "module", "priority": "0", "uri": "library/random.html#module-$", "dispname": "-"}, {"name": "random.Random", "domain": "py", "role": "class", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.SystemRandom", "domain": "py", "role": "class", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.betavariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.choice", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.choices", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.expovariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.gammavariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.gauss", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.getrandbits", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.getstate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.lognormvariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.normalvariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.paretovariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.randbytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.randint", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.random", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.randrange", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.sample", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.seed", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.setstate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.shuffle", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.triangular", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.uniform", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.vonmisesvariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "random.weibullvariate", "domain": "py", "role": "function", "priority": "1", "uri": "library/random.html#$", "dispname": "-"}, {"name": "range", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "range.start", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "range.step", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "range.stop", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "re", "domain": "py", "role": "module", "priority": "0", "uri": "library/re.html#module-$", "dispname": "-"}, {"name": "re.A", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.ASCII", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.DEBUG", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.DOTALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.I", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.IGNORECASE", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.L", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.LOCALE", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.M", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.MULTILINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.__getitem__", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.end", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.endpos", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.expand", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.group", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.groupdict", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.groups", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.lastgroup", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.lastindex", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.pos", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.re", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.span", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Match.string", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.findall", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.finditer", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.fullmatch", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.groupindex", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.groups", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.match", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.pattern", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.search", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.split", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.sub", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.Pattern.subn", "domain": "py", "role": "method", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.S", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.VERBOSE", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.X", "domain": "py", "role": "data", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.compile", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.error.colno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.error.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.error.msg", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.error.pattern", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.error.pos", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.escape", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.findall", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.finditer", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.fullmatch", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.match", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.purge", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.search", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.split", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.sub", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re.subn", "domain": "py", "role": "function", "priority": "1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "readline", "domain": "py", "role": "module", "priority": "0", "uri": "library/readline.html#module-$", "dispname": "-"}, {"name": "readline.add_history", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.append_history_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.clear_history", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_begidx", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_completer", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_completer_delims", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_completion_type", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_current_history_length", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_endidx", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_history_item", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_history_length", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.get_line_buffer", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.insert_text", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.parse_and_bind", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.read_history_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.read_init_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.redisplay", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.remove_history_item", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.replace_history_item", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_auto_history", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_completer", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_completer_delims", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_completion_display_matches_hook", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_history_length", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_pre_input_hook", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.set_startup_hook", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "readline.write_history_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/readline.html#$", "dispname": "-"}, {"name": "repr", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "reprlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/reprlib.html#module-$", "dispname": "-"}, {"name": "reprlib.Repr", "domain": "py", "role": "class", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxarray", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxdeque", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxdict", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxfrozenset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxlevel", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxlist", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxlong", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxother", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxstring", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.maxtuple", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.repr", "domain": "py", "role": "method", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.Repr.repr1", "domain": "py", "role": "method", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.aRepr", "domain": "py", "role": "data", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.recursive_repr", "domain": "py", "role": "function", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "reprlib.repr", "domain": "py", "role": "function", "priority": "1", "uri": "library/reprlib.html#$", "dispname": "-"}, {"name": "resource", "domain": "py", "role": "module", "priority": "0", "uri": "library/resource.html#module-$", "dispname": "-"}, {"name": "resource.RLIMIT_AS", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_CORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_CPU", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_DATA", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_FSIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_KQUEUES", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_MEMLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_MSGQUEUE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_NICE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_NOFILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_NPROC", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_NPTS", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_OFILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_RSS", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_RTPRIO", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_RTTIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_SBSIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_SIGPENDING", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_STACK", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_SWAP", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIMIT_VMEM", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RLIM_INFINITY", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RUSAGE_BOTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RUSAGE_CHILDREN", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RUSAGE_SELF", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.RUSAGE_THREAD", "domain": "py", "role": "data", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.getpagesize", "domain": "py", "role": "function", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.getrlimit", "domain": "py", "role": "function", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.getrusage", "domain": "py", "role": "function", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.prlimit", "domain": "py", "role": "function", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "resource.setrlimit", "domain": "py", "role": "function", "priority": "1", "uri": "library/resource.html#$", "dispname": "-"}, {"name": "reversed", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "rlcompleter", "domain": "py", "role": "module", "priority": "0", "uri": "library/rlcompleter.html#module-$", "dispname": "-"}, {"name": "rlcompleter.Completer.complete", "domain": "py", "role": "method", "priority": "1", "uri": "library/rlcompleter.html#$", "dispname": "-"}, {"name": "round", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "runpy", "domain": "py", "role": "module", "priority": "0", "uri": "library/runpy.html#module-$", "dispname": "-"}, {"name": "runpy.run_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/runpy.html#$", "dispname": "-"}, {"name": "runpy.run_path", "domain": "py", "role": "function", "priority": "1", "uri": "library/runpy.html#$", "dispname": "-"}, {"name": "sched", "domain": "py", "role": "module", "priority": "0", "uri": "library/sched.html#module-$", "dispname": "-"}, {"name": "sched.scheduler", "domain": "py", "role": "class", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "sched.scheduler.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "sched.scheduler.empty", "domain": "py", "role": "method", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "sched.scheduler.enter", "domain": "py", "role": "method", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "sched.scheduler.enterabs", "domain": "py", "role": "method", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "sched.scheduler.queue", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "sched.scheduler.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/sched.html#$", "dispname": "-"}, {"name": "secrets", "domain": "py", "role": "module", "priority": "0", "uri": "library/secrets.html#module-$", "dispname": "-"}, {"name": "secrets.SystemRandom", "domain": "py", "role": "class", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.choice", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.compare_digest", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.randbelow", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.randbits", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.token_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.token_hex", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "secrets.token_urlsafe", "domain": "py", "role": "function", "priority": "1", "uri": "library/secrets.html#$", "dispname": "-"}, {"name": "select", "domain": "py", "role": "module", "priority": "0", "uri": "library/select.html#module-$", "dispname": "-"}, {"name": "select.PIPE_BUF", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll", "domain": "py", "role": "function", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.modify", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.poll", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.register", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.devpoll.unregister", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll", "domain": "py", "role": "function", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.fromfd", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.modify", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.poll", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.register", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.epoll.unregister", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent", "domain": "py", "role": "function", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent.fflags", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent.filter", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent.flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent.ident", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kevent.udata", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kqueue", "domain": "py", "role": "function", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kqueue.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kqueue.closed", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kqueue.control", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kqueue.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.kqueue.fromfd", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.poll", "domain": "py", "role": "function", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.poll.modify", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.poll.poll", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.poll.register", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.poll.unregister", "domain": "py", "role": "method", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "select.select", "domain": "py", "role": "function", "priority": "1", "uri": "library/select.html#$", "dispname": "-"}, {"name": "selectors", "domain": "py", "role": "module", "priority": "0", "uri": "library/selectors.html#module-$", "dispname": "-"}, {"name": "selectors.BaseSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.get_key", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.get_map", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.modify", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.register", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.select", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.BaseSelector.unregister", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.DefaultSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.DevpollSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.DevpollSelector.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.EpollSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.EpollSelector.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.KqueueSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.KqueueSelector.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.PollSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.SelectSelector", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.SelectorKey", "domain": "py", "role": "class", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.SelectorKey.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.SelectorKey.events", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.SelectorKey.fd", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "selectors.SelectorKey.fileobj", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/selectors.html#$", "dispname": "-"}, {"name": "set", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "setattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "shelve", "domain": "py", "role": "module", "priority": "0", "uri": "library/shelve.html#module-$", "dispname": "-"}, {"name": "shelve.BsdDbShelf", "domain": "py", "role": "class", "priority": "1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shelve.DbfilenameShelf", "domain": "py", "role": "class", "priority": "1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shelve.Shelf", "domain": "py", "role": "class", "priority": "1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shelve.Shelf.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shelve.Shelf.sync", "domain": "py", "role": "method", "priority": "1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shelve.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shlex", "domain": "py", "role": "module", "priority": "0", "uri": "library/shlex.html#module-$", "dispname": "-"}, {"name": "shlex.join", "domain": "py", "role": "function", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.quote", "domain": "py", "role": "function", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex", "domain": "py", "role": "class", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.commenters", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.debug", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.eof", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.error_leader", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.escape", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.escapedquotes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.get_token", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.infile", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.instream", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.pop_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.punctuation_chars", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.push_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.push_token", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.quotes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.read_token", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.source", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.sourcehook", "domain": "py", "role": "method", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.token", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.whitespace", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.whitespace_split", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.shlex.wordchars", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shlex.split", "domain": "py", "role": "function", "priority": "1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shutil", "domain": "py", "role": "module", "priority": "0", "uri": "library/shutil.html#module-$", "dispname": "-"}, {"name": "shutil.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.SameFileError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.chown", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copy", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copy2", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copyfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copyfileobj", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copymode", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copystat", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.copytree", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.disk_usage", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.get_archive_formats", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.get_terminal_size", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.get_unpack_formats", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.ignore_patterns", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.make_archive", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.move", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.register_archive_format", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.register_unpack_format", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.rmtree", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.rmtree.avoids_symlink_attacks", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.unpack_archive", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.unregister_archive_format", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.unregister_unpack_format", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "shutil.which", "domain": "py", "role": "function", "priority": "1", "uri": "library/shutil.html#$", "dispname": "-"}, {"name": "signal", "domain": "py", "role": "module", "priority": "0", "uri": "library/signal.html#module-$", "dispname": "-"}, {"name": "signal.CTRL_BREAK_EVENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.CTRL_C_EVENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.ITIMER_PROF", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.ITIMER_REAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.ITIMER_VIRTUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.ItimerError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.NSIG", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGABRT", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGALRM", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGBREAK", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGBUS", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGCHLD", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGCLD", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGCONT", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGFPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGHUP", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGILL", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGINT", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGKILL", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGPIPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGSEGV", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGTERM", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGUSR1", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGUSR2", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIGWINCH", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIG_BLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIG_DFL", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIG_IGN", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIG_SETMASK", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.SIG_UNBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.alarm", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.getitimer", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.getsignal", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.pause", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.pidfd_send_signal", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.pthread_kill", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.pthread_sigmask", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.raise_signal", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.set_wakeup_fd", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.setitimer", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.siginterrupt", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.signal", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.sigpending", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.sigtimedwait", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.sigwait", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.sigwaitinfo", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.strsignal", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "signal.valid_signals", "domain": "py", "role": "function", "priority": "1", "uri": "library/signal.html#$", "dispname": "-"}, {"name": "site", "domain": "py", "role": "module", "priority": "0", "uri": "library/site.html#module-$", "dispname": "-"}, {"name": "site.ENABLE_USER_SITE", "domain": "py", "role": "data", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.PREFIXES", "domain": "py", "role": "data", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.USER_BASE", "domain": "py", "role": "data", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.USER_SITE", "domain": "py", "role": "data", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.addsitedir", "domain": "py", "role": "function", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.getsitepackages", "domain": "py", "role": "function", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.getuserbase", "domain": "py", "role": "function", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.getusersitepackages", "domain": "py", "role": "function", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "site.main", "domain": "py", "role": "function", "priority": "1", "uri": "library/site.html#$", "dispname": "-"}, {"name": "slice", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "slice.indices", "domain": "py", "role": "method", "priority": "1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "smtpd", "domain": "py", "role": "module", "priority": "0", "uri": "library/smtpd.html#module-$", "dispname": "-"}, {"name": "smtpd.DebuggingServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.MailmanProxy", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.PureProxy", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.addr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.conn", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.fqdn", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.mailfrom", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.peer", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.rcpttos", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.received_data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.received_lines", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.seen_greeting", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.smtp_server", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPChannel.smtp_state", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPServer.channel_class", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtpd.SMTPServer.process_message", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtpd.html#$", "dispname": "-"}, {"name": "smtplib", "domain": "py", "role": "module", "priority": "0", "uri": "library/smtplib.html#module-$", "dispname": "-"}, {"name": "smtplib.LMTP", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.auth", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.docmd", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.ehlo", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.ehlo_or_helo_if_needed", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.has_extn", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.helo", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.login", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.quit", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.send_message", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.sendmail", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.set_debuglevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.starttls", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP.verify", "domain": "py", "role": "method", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPAuthenticationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPConnectError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPDataError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPHeloError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPNotSupportedError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPRecipientsRefused", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPResponseException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPSenderRefused", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTPServerDisconnected", "domain": "py", "role": "exception", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "smtplib.SMTP_SSL", "domain": "py", "role": "class", "priority": "1", "uri": "library/smtplib.html#$", "dispname": "-"}, {"name": "sndhdr", "domain": "py", "role": "module", "priority": "0", "uri": "library/sndhdr.html#module-$", "dispname": "-"}, {"name": "sndhdr.what", "domain": "py", "role": "function", "priority": "1", "uri": "library/sndhdr.html#$", "dispname": "-"}, {"name": "sndhdr.whathdr", "domain": "py", "role": "function", "priority": "1", "uri": "library/sndhdr.html#$", "dispname": "-"}, {"name": "socket", "domain": "py", "role": "module", "priority": "0", "uri": "library/socket.html#module-$", "dispname": "-"}, {"name": "socket.AF_ALG", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_CAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_INET", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_INET6", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_LINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_PACKET", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_QIPCRTR", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_RDS", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_UNIX", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.AF_VSOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.BDADDR_ANY", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.BDADDR_LOCAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CAN_BCM", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CAN_ISOTP", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CAN_J1939", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CAN_RAW_FD_FRAMES", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CAN_RAW_JOIN_FILTERS", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CMSG_LEN", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.CMSG_SPACE", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.HCI_DATA_DIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.HCI_FILTER", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.HCI_TIME_STAMP", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.IOCTL_VM_SOCKETS_GET_LOCAL_CID", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.PF_CAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.PF_PACKET", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.PF_RDS", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SIO_KEEPALIVE_VALS", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SIO_LOOPBACK_FAST_PATH", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SIO_RCVALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_CLOEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_DGRAM", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_NONBLOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_RAW", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_RDM", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_SEQPACKET", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOCK_STREAM", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOL_ALG", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOL_RDS", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SOMAXCONN", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.SocketType", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.close", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.create_connection", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.create_server", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.fromfd", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.fromshare", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.gaierror", "domain": "py", "role": "exception", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getaddrinfo", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getdefaulttimeout", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getfqdn", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.gethostbyaddr", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.gethostbyname", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.gethostbyname_ex", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.gethostname", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getnameinfo", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getprotobyname", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getservbyname", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.getservbyport", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.has_dualstack_ipv6", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.has_ipv6", "domain": "py", "role": "data", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.herror", "domain": "py", "role": "exception", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.htonl", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.htons", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.if_indextoname", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.if_nameindex", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.if_nametoindex", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.inet_aton", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.inet_ntoa", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.inet_ntop", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.inet_pton", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.ntohl", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.ntohs", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.recv_fds", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.send_fds", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.setdefaulttimeout", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.sethostname", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket", "domain": "py", "role": "class", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.accept", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.bind", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.connect", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.connect_ex", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.detach", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.dup", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.family", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.get_inheritable", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.getblocking", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.getpeername", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.getsockname", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.getsockopt", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.gettimeout", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.ioctl", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.listen", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.makefile", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.proto", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.recv", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.recv_into", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.recvfrom", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.recvfrom_into", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.recvmsg", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.recvmsg_into", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.send", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.sendall", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.sendfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.sendmsg", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.sendmsg_afalg", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.sendto", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.set_inheritable", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.setblocking", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.setsockopt", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.settimeout", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.share", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.shutdown", "domain": "py", "role": "method", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socket.type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.socketpair", "domain": "py", "role": "function", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socket.timeout", "domain": "py", "role": "exception", "priority": "1", "uri": "library/socket.html#$", "dispname": "-"}, {"name": "socketserver", "domain": "py", "role": "module", "priority": "0", "uri": "library/socketserver.html#module-$", "dispname": "-"}, {"name": "socketserver.BaseRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseRequestHandler.finish", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseRequestHandler.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseRequestHandler.setup", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.RequestHandlerClass", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.address_family", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.allow_reuse_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.finish_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.get_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.handle_error", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.handle_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.handle_timeout", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.process_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.request_queue_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.serve_forever", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.server_activate", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.server_address", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.server_bind", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.server_close", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.service_actions", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.shutdown", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.socket", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.socket_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.timeout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.BaseServer.verify_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.DatagramRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.ForkingMixIn", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.ForkingTCPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.ForkingUDPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.StreamRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.TCPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.ThreadingMixIn", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.ThreadingTCPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.ThreadingUDPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.UDPServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.UnixDatagramServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "socketserver.UnixStreamServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/socketserver.html#$", "dispname": "-"}, {"name": "sorted", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "spwd", "domain": "py", "role": "module", "priority": "0", "uri": "library/spwd.html#module-$", "dispname": "-"}, {"name": "spwd.getspall", "domain": "py", "role": "function", "priority": "1", "uri": "library/spwd.html#$", "dispname": "-"}, {"name": "spwd.getspnam", "domain": "py", "role": "function", "priority": "1", "uri": "library/spwd.html#$", "dispname": "-"}, {"name": "sqlite3", "domain": "py", "role": "module", "priority": "0", "uri": "library/sqlite3.html#module-$", "dispname": "-"}, {"name": "sqlite3.Connection", "domain": "py", "role": "class", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.backup", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.commit", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.create_aggregate", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.create_collation", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.create_function", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.cursor", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.enable_load_extension", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.execute", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.executemany", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.executescript", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.in_transaction", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.interrupt", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.isolation_level", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.iterdump", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.load_extension", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.rollback", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.row_factory", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.set_authorizer", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.set_progress_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.set_trace_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.text_factory", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Connection.total_changes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor", "domain": "py", "role": "class", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.arraysize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.connection", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.description", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.execute", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.executemany", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.executescript", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.fetchall", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.fetchmany", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.fetchone", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.lastrowid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.row_factory", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.rowcount", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.setinputsizes", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Cursor.setoutputsize", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.DataError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.DatabaseError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.IntegrityError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.InterfaceError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.InternalError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.NotSupportedError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.OperationalError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.PARSE_COLNAMES", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.PARSE_DECLTYPES", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.PrepareProtocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.ProgrammingError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Row", "domain": "py", "role": "class", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Row.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.SQLITE_DENY", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.SQLITE_IGNORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.SQLITE_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.Warning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.apilevel", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.complete_statement", "domain": "py", "role": "function", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.connect", "domain": "py", "role": "function", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.enable_callback_tracebacks", "domain": "py", "role": "function", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.paramstyle", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.register_adapter", "domain": "py", "role": "function", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.register_converter", "domain": "py", "role": "function", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.sqlite_version", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.sqlite_version_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.threadsafety", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.version", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3.version_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "ssl", "domain": "py", "role": "module", "priority": "0", "uri": "library/ssl.html#module-$", "dispname": "-"}, {"name": "ssl.ALERT_DESCRIPTION_HANDSHAKE_FAILURE", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.ALERT_DESCRIPTION_INTERNAL_ERROR", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.AlertDescription", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.CERT_NONE", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.CERT_OPTIONAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.CERT_REQUIRED", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.CHANNEL_BINDING_TYPES", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.CertificateError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.DER_cert_to_PEM_cert", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_ALPN", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_ECDH", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_NEVER_CHECK_COMMON_NAME", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_NPN", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_SNI", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_SSLv2", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_SSLv3", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_TLSv1", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_TLSv1_1", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_TLSv1_2", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.HAS_TLSv1_3", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.MemoryBIO", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.MemoryBIO.eof", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.MemoryBIO.pending", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.MemoryBIO.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.MemoryBIO.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.MemoryBIO.write_eof", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OPENSSL_VERSION", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OPENSSL_VERSION_INFO", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OPENSSL_VERSION_NUMBER", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_ALL", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_CIPHER_SERVER_PREFERENCE", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_ENABLE_MIDDLEBOX_COMPAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_IGNORE_UNEXPECTED_EOF", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_COMPRESSION", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_RENEGOTIATION", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_SSLv2", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_SSLv3", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_TICKET", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_TLSv1", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_TLSv1_1", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_TLSv1_2", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_NO_TLSv1_3", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_SINGLE_DH_USE", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.OP_SINGLE_ECDH_USE", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.Options", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PEM_cert_to_DER_cert", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_SSLv2", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_SSLv23", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_SSLv3", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_TLS", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_TLS_CLIENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_TLS_SERVER", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_TLSv1", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_TLSv1_1", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.PROTOCOL_TLSv1_2", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.Purpose.CLIENT_AUTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.Purpose.SERVER_AUTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.RAND_add", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.RAND_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.RAND_pseudo_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.RAND_status", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLCertVerificationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLCertVerificationError.verify_code", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLCertVerificationError.verify_message", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.cert_store_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.check_hostname", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.get_ca_certs", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.get_ciphers", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.hostname_checks_common_name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.keylog_filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.load_cert_chain", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.load_default_certs", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.load_dh_params", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.load_verify_locations", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.maximum_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.minimum_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.num_tickets", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.options", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.post_handshake_auth", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.protocol", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.security_level", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.session_stats", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.set_alpn_protocols", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.set_ciphers", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.set_default_verify_paths", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.set_ecdh_curve", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.set_npn_protocols", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.set_servername_callback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.sni_callback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.sslobject_class", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.sslsocket_class", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.verify_flags", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.verify_mode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.wrap_bio", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLContext.wrap_socket", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLEOFError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLError.library", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLError.reason", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLErrorNumber", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLObject", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSession", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSession.has_ticket", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSession.id", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSession.ticket_lifetime_hint", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSession.time", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSession.timeout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.cipher", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.compression", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.context", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.do_handshake", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.get_channel_binding", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.getpeercert", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.pending", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.selected_alpn_protocol", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.selected_npn_protocol", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.server_hostname", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.server_side", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.session", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.session_reused", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.shared_ciphers", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.unwrap", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.verify_client_post_handshake", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.version", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSocket.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLSyscallError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLWantReadError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLWantWriteError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.SSLZeroReturnError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.MAXIMUM_SUPPORTED", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.MINIMUM_SUPPORTED", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.SSLv3", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.TLSv1", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.TLSv1_1", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.TLSv1_2", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.TLSVersion.TLSv1_3", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_ALLOW_PROXY_CERTS", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_CRL_CHECK_CHAIN", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_CRL_CHECK_LEAF", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_DEFAULT", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_X509_PARTIAL_CHAIN", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_X509_STRICT", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VERIFY_X509_TRUSTED_FIRST", "domain": "py", "role": "data", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VerifyFlags", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.VerifyMode", "domain": "py", "role": "class", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.cert_time_to_seconds", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.create_default_context", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.enum_certificates", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.enum_crls", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.get_default_verify_paths", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.get_server_certificate", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.match_hostname", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "ssl.wrap_socket", "domain": "py", "role": "function", "priority": "1", "uri": "library/ssl.html#$", "dispname": "-"}, {"name": "stat", "domain": "py", "role": "module", "priority": "0", "uri": "library/stat.html#module-$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_ARCHIVE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_COMPRESSED", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_DEVICE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_DIRECTORY", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_ENCRYPTED", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_HIDDEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_INTEGRITY_STREAM", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_NORMAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_NOT_CONTENT_INDEXED", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_NO_SCRUB_DATA", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_OFFLINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_READONLY", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_REPARSE_POINT", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_SPARSE_FILE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_SYSTEM", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_TEMPORARY", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.FILE_ATTRIBUTE_VIRTUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.IO_REPARSE_TAG_APPEXECLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.IO_REPARSE_TAG_MOUNT_POINT", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.IO_REPARSE_TAG_SYMLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.SF_APPEND", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.SF_ARCHIVED", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.SF_IMMUTABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.SF_NOUNLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.SF_SNAPSHOT", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_ATIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_CTIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_DEV", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_GID", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_INO", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_MODE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_MTIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_NLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.ST_UID", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ENFMT", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IEXEC", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFBLK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFCHR", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFDIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFDOOR", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFIFO", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFLNK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFMT", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFPORT", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFREG", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFSOCK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IFWHT", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IMODE", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IREAD", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IRGRP", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IROTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IRUSR", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IRWXG", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IRWXO", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IRWXU", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISBLK", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISCHR", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISDIR", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISDOOR", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISFIFO", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISGID", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISLNK", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISPORT", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISREG", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISSOCK", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISUID", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISVTX", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_ISWHT", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IWGRP", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IWOTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IWRITE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IWUSR", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IXGRP", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IXOTH", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.S_IXUSR", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_APPEND", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_COMPRESSED", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_HIDDEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_IMMUTABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_NODUMP", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_NOUNLINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.UF_OPAQUE", "domain": "py", "role": "data", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "stat.filemode", "domain": "py", "role": "function", "priority": "1", "uri": "library/stat.html#$", "dispname": "-"}, {"name": "staticmethod", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "statistics", "domain": "py", "role": "module", "priority": "0", "uri": "library/statistics.html#module-$", "dispname": "-"}, {"name": "statistics.NormalDist", "domain": "py", "role": "class", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.cdf", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.from_samples", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.inv_cdf", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.mean", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.median", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.mode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.overlap", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.pdf", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.quantiles", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.samples", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.stdev", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.variance", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.NormalDist.zscore", "domain": "py", "role": "method", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.StatisticsError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.correlation", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.covariance", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.fmean", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.geometric_mean", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.harmonic_mean", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.linear_regression", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.mean", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.median", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.median_grouped", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.median_high", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.median_low", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.mode", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.multimode", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.pstdev", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.pvariance", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.quantiles", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.stdev", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "statistics.variance", "domain": "py", "role": "function", "priority": "1", "uri": "library/statistics.html#$", "dispname": "-"}, {"name": "str", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.capitalize", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.casefold", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.center", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.count", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.endswith", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.expandtabs", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.format_map", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isalnum", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isalpha", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isascii", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isdecimal", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isdigit", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isidentifier", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.islower", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isnumeric", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isprintable", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isspace", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.istitle", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.isupper", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.ljust", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.lower", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.lstrip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.maketrans", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.partition", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.removeprefix", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.removesuffix", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.rfind", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.rindex", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.rjust", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.rpartition", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.rsplit", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.rstrip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.split", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.splitlines", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.startswith", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.strip", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.swapcase", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.title", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.translate", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.upper", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "str.zfill", "domain": "py", "role": "method", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "string", "domain": "py", "role": "module", "priority": "0", "uri": "library/string.html#module-$", "dispname": "-"}, {"name": "string.Formatter", "domain": "py", "role": "class", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.check_unused_args", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.convert_field", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.format_field", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.get_field", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.get_value", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Formatter.vformat", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Template", "domain": "py", "role": "class", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Template.safe_substitute", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Template.substitute", "domain": "py", "role": "method", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.Template.template", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.ascii_letters", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.ascii_lowercase", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.ascii_uppercase", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.capwords", "domain": "py", "role": "function", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.digits", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.hexdigits", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.octdigits", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.printable", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.punctuation", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "string.whitespace", "domain": "py", "role": "data", "priority": "1", "uri": "library/string.html#$", "dispname": "-"}, {"name": "stringprep", "domain": "py", "role": "module", "priority": "0", "uri": "library/stringprep.html#module-$", "dispname": "-"}, {"name": "stringprep.in_table_a1", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_b1", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c11", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c11_c12", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c12", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c21", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c21_c22", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c22", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c3", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c4", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c5", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c6", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c7", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c8", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_c9", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_d1", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.in_table_d2", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.map_table_b2", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "stringprep.map_table_b3", "domain": "py", "role": "function", "priority": "1", "uri": "library/stringprep.html#$", "dispname": "-"}, {"name": "struct", "domain": "py", "role": "module", "priority": "0", "uri": "library/struct.html#module-$", "dispname": "-"}, {"name": "struct.Struct", "domain": "py", "role": "class", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.format", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.iter_unpack", "domain": "py", "role": "method", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.pack", "domain": "py", "role": "method", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.pack_into", "domain": "py", "role": "method", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.unpack", "domain": "py", "role": "method", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.Struct.unpack_from", "domain": "py", "role": "method", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.calcsize", "domain": "py", "role": "function", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.iter_unpack", "domain": "py", "role": "function", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.pack", "domain": "py", "role": "function", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.pack_into", "domain": "py", "role": "function", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.unpack", "domain": "py", "role": "function", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "struct.unpack_from", "domain": "py", "role": "function", "priority": "1", "uri": "library/struct.html#$", "dispname": "-"}, {"name": "subprocess", "domain": "py", "role": "module", "priority": "0", "uri": "library/subprocess.html#module-$", "dispname": "-"}, {"name": "subprocess.ABOVE_NORMAL_PRIORITY_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.BELOW_NORMAL_PRIORITY_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CREATE_BREAKAWAY_FROM_JOB", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CREATE_DEFAULT_ERROR_MODE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CREATE_NEW_CONSOLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CREATE_NEW_PROCESS_GROUP", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CREATE_NO_WINDOW", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CalledProcessError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CalledProcessError.cmd", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CalledProcessError.output", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CalledProcessError.returncode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CalledProcessError.stderr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CalledProcessError.stdout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CompletedProcess", "domain": "py", "role": "class", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CompletedProcess.args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CompletedProcess.check_returncode", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CompletedProcess.returncode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CompletedProcess.stderr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.CompletedProcess.stdout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.DETACHED_PROCESS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.DEVNULL", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.HIGH_PRIORITY_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.IDLE_PRIORITY_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.NORMAL_PRIORITY_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.PIPE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen", "domain": "py", "role": "class", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.communicate", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.kill", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.pid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.poll", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.returncode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.send_signal", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.stderr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.stdin", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.stdout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.terminate", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.Popen.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.REALTIME_PRIORITY_CLASS", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTF_USESHOWWINDOW", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTF_USESTDHANDLES", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO", "domain": "py", "role": "class", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO.dwFlags", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO.hStdError", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO.hStdInput", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO.hStdOutput", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO.lpAttributeList", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STARTUPINFO.wShowWindow", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STDOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STD_ERROR_HANDLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STD_INPUT_HANDLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.STD_OUTPUT_HANDLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.SW_HIDE", "domain": "py", "role": "data", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.SubprocessError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.TimeoutExpired", "domain": "py", "role": "exception", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.TimeoutExpired.cmd", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.TimeoutExpired.output", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.TimeoutExpired.stderr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.TimeoutExpired.stdout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.TimeoutExpired.timeout", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.call", "domain": "py", "role": "function", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.check_call", "domain": "py", "role": "function", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.check_output", "domain": "py", "role": "function", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.getoutput", "domain": "py", "role": "function", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.getstatusoutput", "domain": "py", "role": "function", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "subprocess.run", "domain": "py", "role": "function", "priority": "1", "uri": "library/subprocess.html#$", "dispname": "-"}, {"name": "sum", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "sunau", "domain": "py", "role": "module", "priority": "0", "uri": "library/sunau.html#module-$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_ADPCM_G721", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_ADPCM_G722", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_ADPCM_G723_3", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_ADPCM_G723_5", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_ALAW_8", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_DOUBLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_FLOAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_LINEAR_16", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_LINEAR_24", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_LINEAR_32", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_LINEAR_8", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_ENCODING_MULAW_8", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AUDIO_FILE_MAGIC", "domain": "py", "role": "data", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getcompname", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getcomptype", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getframerate", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getmark", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getmarkers", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getnchannels", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getnframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getparams", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.getsampwidth", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.readframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.rewind", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.setpos", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_read.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.setcomptype", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.setframerate", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.setnchannels", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.setnframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.setparams", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.setsampwidth", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.writeframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.AU_write.writeframesraw", "domain": "py", "role": "method", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "sunau.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/sunau.html#$", "dispname": "-"}, {"name": "super", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "symtable", "domain": "py", "role": "module", "priority": "0", "uri": "library/symtable.html#module-$", "dispname": "-"}, {"name": "symtable.Class", "domain": "py", "role": "class", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Class.get_methods", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Function", "domain": "py", "role": "class", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Function.get_frees", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Function.get_globals", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Function.get_locals", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Function.get_nonlocals", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Function.get_parameters", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol", "domain": "py", "role": "class", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.get_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.get_namespace", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.get_namespaces", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_annotated", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_assigned", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_declared_global", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_free", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_global", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_imported", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_local", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_namespace", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_nonlocal", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_parameter", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.Symbol.is_referenced", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable", "domain": "py", "role": "class", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_children", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_id", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_identifiers", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_lineno", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_symbols", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.get_type", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.has_children", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.is_nested", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.is_optimized", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.SymbolTable.lookup", "domain": "py", "role": "method", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "symtable.symtable", "domain": "py", "role": "function", "priority": "1", "uri": "library/symtable.html#$", "dispname": "-"}, {"name": "sys", "domain": "py", "role": "module", "priority": "0", "uri": "library/sys.html#module-$", "dispname": "-"}, {"name": "sys.__breakpointhook__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__displayhook__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__excepthook__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__interactivehook__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__stderr__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__stdin__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__stdout__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.__unraisablehook__", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._clear_type_cache", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._current_exceptions", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._current_frames", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._debugmallocstats", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._enablelegacywindowsfsencoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._getframe", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys._xoptions", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.abiflags", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.addaudithook", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.api_version", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.argv", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.audit", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.base_exec_prefix", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.base_prefix", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.breakpointhook", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.builtin_module_names", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.byteorder", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.call_tracing", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.copyright", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.displayhook", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.dllhandle", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.dont_write_bytecode", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.exc_info", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.excepthook", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.exec_prefix", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.executable", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.exit", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.flags", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.float_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.float_repr_style", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.get_asyncgen_hooks", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.get_coroutine_origin_tracking_depth", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.get_int_max_str_digits", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getallocatedblocks", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getandroidapilevel", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getdefaultencoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getdlopenflags", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getfilesystemencodeerrors", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getfilesystemencoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getprofile", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getrecursionlimit", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getrefcount", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getsizeof", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getswitchinterval", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.gettrace", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.getwindowsversion", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.hash_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.hexversion", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.implementation", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.int_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.intern", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.is_finalizing", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.last_traceback", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.last_type", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.last_value", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.maxsize", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.maxunicode", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.meta_path", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.modules", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.orig_argv", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.path", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.path_hooks", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.path_importer_cache", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.platform", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.platlibdir", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.prefix", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.ps1", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.ps2", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.pycache_prefix", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.set_asyncgen_hooks", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.set_coroutine_origin_tracking_depth", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.set_int_max_str_digits", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.setdlopenflags", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.setprofile", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.setrecursionlimit", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.setswitchinterval", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.settrace", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.stderr", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.stdin", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.stdlib_module_names", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.stdout", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.thread_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.tracebacklimit", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.unraisablehook", "domain": "py", "role": "function", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.version", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.version_info", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.warnoptions", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sys.winver", "domain": "py", "role": "data", "priority": "1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "sysconfig", "domain": "py", "role": "module", "priority": "0", "uri": "library/sysconfig.html#module-$", "dispname": "-"}, {"name": "sysconfig._get_preferred_schemes", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_config_h_filename", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_config_var", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_config_vars", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_default_scheme", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_makefile_filename", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_path", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_path_names", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_paths", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_platform", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_preferred_scheme", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_python_version", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.get_scheme_names", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.is_python_build", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "sysconfig.parse_config_h", "domain": "py", "role": "function", "priority": "1", "uri": "library/sysconfig.html#$", "dispname": "-"}, {"name": "syslog", "domain": "py", "role": "module", "priority": "0", "uri": "library/syslog.html#module-$", "dispname": "-"}, {"name": "syslog.closelog", "domain": "py", "role": "function", "priority": "1", "uri": "library/syslog.html#$", "dispname": "-"}, {"name": "syslog.openlog", "domain": "py", "role": "function", "priority": "1", "uri": "library/syslog.html#$", "dispname": "-"}, {"name": "syslog.setlogmask", "domain": "py", "role": "function", "priority": "1", "uri": "library/syslog.html#$", "dispname": "-"}, {"name": "syslog.syslog", "domain": "py", "role": "function", "priority": "1", "uri": "library/syslog.html#$", "dispname": "-"}, {"name": "tabnanny", "domain": "py", "role": "module", "priority": "0", "uri": "library/tabnanny.html#module-$", "dispname": "-"}, {"name": "tabnanny.NannyNag", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tabnanny.html#$", "dispname": "-"}, {"name": "tabnanny.check", "domain": "py", "role": "function", "priority": "1", "uri": "library/tabnanny.html#$", "dispname": "-"}, {"name": "tabnanny.filename_only", "domain": "py", "role": "data", "priority": "1", "uri": "library/tabnanny.html#$", "dispname": "-"}, {"name": "tabnanny.process_tokens", "domain": "py", "role": "function", "priority": "1", "uri": "library/tabnanny.html#$", "dispname": "-"}, {"name": "tabnanny.verbose", "domain": "py", "role": "data", "priority": "1", "uri": "library/tabnanny.html#$", "dispname": "-"}, {"name": "tarfile", "domain": "py", "role": "module", "priority": "0", "uri": "library/tarfile.html#module-$", "dispname": "-"}, {"name": "tarfile.AbsoluteLinkError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.AbsolutePathError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.CompressionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.DEFAULT_FORMAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.ENCODING", "domain": "py", "role": "data", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.ExtractError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.FilterError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.FilterError.tarinfo", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.GNU_FORMAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.HeaderError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.LinkOutsideDestinationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.OutsideDestinationError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.PAX_FORMAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.ReadError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.SpecialFileError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.StreamError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile", "domain": "py", "role": "class", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.addfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.errorlevel", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.extract", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.extractall", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.extractfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.extraction_filter", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.getmember", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.getmembers", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.getnames", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.gettarinfo", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.list", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.next", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarFile.pax_headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo", "domain": "py", "role": "class", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.frombuf", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.fromtarfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.gid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.gname", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.isblk", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.ischr", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.isdev", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.isdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.isfifo", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.isfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.islnk", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.isreg", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.issym", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.linkname", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.mode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.mtime", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.pax_headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.tobuf", "domain": "py", "role": "method", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.uid", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.TarInfo.uname", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.USTAR_FORMAT", "domain": "py", "role": "data", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.data_filter", "domain": "py", "role": "function", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.fully_trusted_filter", "domain": "py", "role": "function", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.is_tarfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "tarfile.tar_filter", "domain": "py", "role": "function", "priority": "1", "uri": "library/tarfile.html#$", "dispname": "-"}, {"name": "telnetlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/telnetlib.html#module-$", "dispname": "-"}, {"name": "telnetlib.Telnet", "domain": "py", "role": "class", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.expect", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.fileno", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.get_socket", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.interact", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.msg", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.mt_interact", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_eager", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_lazy", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_sb_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_some", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_until", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_very_eager", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.read_very_lazy", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.set_debuglevel", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.set_option_negotiation_callback", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "telnetlib.Telnet.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/telnetlib.html#$", "dispname": "-"}, {"name": "tempfile", "domain": "py", "role": "module", "priority": "0", "uri": "library/tempfile.html#module-$", "dispname": "-"}, {"name": "tempfile.NamedTemporaryFile", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.SpooledTemporaryFile", "domain": "py", "role": "class", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.TemporaryDirectory", "domain": "py", "role": "class", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.TemporaryFile", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.gettempdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.gettempdirb", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.gettempprefix", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.gettempprefixb", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.mkdtemp", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.mkstemp", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.mktemp", "domain": "py", "role": "function", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "tempfile.tempdir", "domain": "py", "role": "data", "priority": "1", "uri": "library/tempfile.html#$", "dispname": "-"}, {"name": "termios", "domain": "py", "role": "module", "priority": "0", "uri": "library/termios.html#module-$", "dispname": "-"}, {"name": "termios.tcdrain", "domain": "py", "role": "function", "priority": "1", "uri": "library/termios.html#$", "dispname": "-"}, {"name": "termios.tcflow", "domain": "py", "role": "function", "priority": "1", "uri": "library/termios.html#$", "dispname": "-"}, {"name": "termios.tcflush", "domain": "py", "role": "function", "priority": "1", "uri": "library/termios.html#$", "dispname": "-"}, {"name": "termios.tcgetattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/termios.html#$", "dispname": "-"}, {"name": "termios.tcsendbreak", "domain": "py", "role": "function", "priority": "1", "uri": "library/termios.html#$", "dispname": "-"}, {"name": "termios.tcsetattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/termios.html#$", "dispname": "-"}, {"name": "test", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.ALWAYS_EQ", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.BasicTestRunner", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.BasicTestRunner.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.HAVE_DOCSTRINGS", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.INTERNET_TIMEOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.LARGEST", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.LONG_TIMEOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.LOOPBACK_TIMEOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.MAX_Py_ssize_t", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.MISSING_C_DOCSTRINGS", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.Matcher", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.Matcher.match_value", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.Matcher.matches", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.NEVER_EQ", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.PGO", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.PIPE_MAX_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.ResourceDenied", "domain": "py", "role": "exception", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SHORT_TIMEOUT", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SMALLEST", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SOCK_MAX_SIZE", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SaveSignals", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SaveSignals.restore", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SaveSignals.save", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.SuppressCrashReport", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.TEST_DATA_DIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.TEST_HOME_DIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.TEST_HTTP_URL", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.TEST_SUPPORT_DIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.TestFailed", "domain": "py", "role": "exception", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.adjust_int_max_str_digits", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.anticipate_failure", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.args_from_interpreter_flags", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.bigaddrspacetest", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.bigmemtest", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.bytecode_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.bytecode_helper.BytecodeTestCase", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.bytecode_helper.BytecodeTestCase.assertInBytecode", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.bytecode_helper.BytecodeTestCase.assertNotInBytecode", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.bytecode_helper.BytecodeTestCase.get_disassembly_as_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.calcobjsize", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.calcvobjsize", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.captured_stderr", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.captured_stdin", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.captured_stdout", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.catch_unraisable_exception", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.check__all__", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.check_disallow_instantiation", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.check_free_after_iterating", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.check_impl_detail", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.check_syntax_error", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.checksizeof", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.cpython_only", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.detect_api_mismatch", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.disable_faulthandler", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.disable_gc", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.findfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.gc_collect", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.get_attribute", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.get_original_stdout", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.impl_detail", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.import_helper.CleanImport", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.DirsOnSysPath", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.forget", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.import_fresh_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.import_module", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.make_legacy_pyc", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.modules_cleanup", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.modules_setup", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.import_helper.unload", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.is_android", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.is_jython", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.is_resource_enabled", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.load_package_tests", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.match_test", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.max_memuse", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.missing_compiler_executable", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.no_tracing", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.open_urlresource", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.optim_args_from_interpreter_flags", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.os_helper.EnvironmentVarGuard", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.EnvironmentVarGuard.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.EnvironmentVarGuard.unset", "domain": "py", "role": "method", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.FS_NONASCII", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.FakePath", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.SAVEDCWD", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.TESTFN", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.TESTFN_NONASCII", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.TESTFN_UNDECODABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.TESTFN_UNENCODABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.TESTFN_UNICODE", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.can_symlink", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.can_xattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.change_cwd", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.create_empty_file", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.fd_count", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.fs_is_case_insensitive", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.make_bad_fd", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.rmdir", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.rmtree", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.skip_unless_symlink", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.skip_unless_xattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.temp_cwd", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.temp_dir", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.temp_umask", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.os_helper.unlink", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.patch", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.print_warning", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.python_is_optimized", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.real_max_memuse", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.reap_children", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.record_original_stdout", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.refcount_test", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_IEEE_754", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_bz2", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_docstrings", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_freebsd_version", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_gzip", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_linux_version", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_lzma", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_mac_version", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_resource", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.requires_zlib", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.run_doctest", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.run_in_subinterp", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.run_unittest", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.run_with_locale", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.run_with_tz", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.script_helper.assert_python_failure", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.assert_python_ok", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.interpreter_requires_environment", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.kill_python", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.make_pkg", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.make_script", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.make_zip_pkg", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.make_zip_script", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.run_python_until_end", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.script_helper.spawn_python", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.set_match_tests", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.set_memlimit", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.setswitchinterval", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.skip_if_broken_multiprocessing_synchronize", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.socket_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.socket_helper.IPV6_ENABLED", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.socket_helper.bind_port", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.socket_helper.bind_unix_socket", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.socket_helper.find_unused_port", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.socket_helper.skip_unless_bind_unix_socket", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.socket_helper.transient_internet", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.sortdict", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.swap_attr", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.swap_item", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.system_must_validate_cert", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.threading_helper.catch_threading_exception", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper.join_thread", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper.reap_threads", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper.start_threads", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper.threading_cleanup", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper.threading_setup", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.threading_helper.wait_threads_exit", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.unix_shell", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.verbose", "domain": "py", "role": "data", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.wait_process", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.warnings_helper", "domain": "py", "role": "module", "priority": "0", "uri": "library/test.html#module-$", "dispname": "-"}, {"name": "test.support.warnings_helper.WarningsRecorder", "domain": "py", "role": "class", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.warnings_helper.check_no_resource_warning", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.warnings_helper.check_syntax_warning", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.warnings_helper.check_warnings", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.warnings_helper.ignore_warnings", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "test.support.with_pymalloc", "domain": "py", "role": "function", "priority": "1", "uri": "library/test.html#$", "dispname": "-"}, {"name": "textwrap", "domain": "py", "role": "module", "priority": "0", "uri": "library/textwrap.html#module-$", "dispname": "-"}, {"name": "textwrap.TextWrapper", "domain": "py", "role": "class", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.break_long_words", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.break_on_hyphens", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.drop_whitespace", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.expand_tabs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.fill", "domain": "py", "role": "method", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.fix_sentence_endings", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.initial_indent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.max_lines", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.placeholder", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.replace_whitespace", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.subsequent_indent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.tabsize", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.width", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.TextWrapper.wrap", "domain": "py", "role": "method", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.dedent", "domain": "py", "role": "function", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.fill", "domain": "py", "role": "function", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.indent", "domain": "py", "role": "function", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.shorten", "domain": "py", "role": "function", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "textwrap.wrap", "domain": "py", "role": "function", "priority": "1", "uri": "library/textwrap.html#$", "dispname": "-"}, {"name": "threading", "domain": "py", "role": "module", "priority": "0", "uri": "library/threading.html#module-$", "dispname": "-"}, {"name": "threading.Barrier", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Barrier.abort", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Barrier.broken", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Barrier.n_waiting", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Barrier.parties", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Barrier.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Barrier.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.BoundedSemaphore", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.BrokenBarrierError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition.notify", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition.notify_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Condition.wait_for", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Event", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Event.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Event.is_set", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Event.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Event.wait", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Lock", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Lock.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Lock.locked", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Lock.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.RLock", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.RLock.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.RLock.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Semaphore", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Semaphore.acquire", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Semaphore.release", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.TIMEOUT_MAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.daemon", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.getName", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.ident", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.isDaemon", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.is_alive", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.join", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.native_id", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.setDaemon", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.setName", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Thread.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Timer", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.Timer.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.__excepthook__", "domain": "py", "role": "data", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.active_count", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.current_thread", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.enumerate", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.excepthook", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.get_ident", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.get_native_id", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.getprofile", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.gettrace", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.local", "domain": "py", "role": "class", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.main_thread", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.setprofile", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.settrace", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "threading.stack_size", "domain": "py", "role": "function", "priority": "1", "uri": "library/threading.html#$", "dispname": "-"}, {"name": "time", "domain": "py", "role": "module", "priority": "0", "uri": "library/time.html#module-$", "dispname": "-"}, {"name": "time.CLOCK_BOOTTIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_HIGHRES", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_MONOTONIC", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_MONOTONIC_RAW", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_PROCESS_CPUTIME_ID", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_PROF", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_REALTIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_TAI", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_THREAD_CPUTIME_ID", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_UPTIME", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.CLOCK_UPTIME_RAW", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.altzone", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.asctime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.clock_getres", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.clock_gettime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.clock_gettime_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.clock_settime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.clock_settime_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.ctime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.daylight", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.get_clock_info", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.gmtime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.localtime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.mktime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.monotonic", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.monotonic_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.perf_counter", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.perf_counter_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.process_time", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.process_time_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.pthread_getcpuclockid", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.sleep", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.strftime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.strptime", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.struct_time", "domain": "py", "role": "class", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.thread_time", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.thread_time_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.time", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.time_ns", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.timezone", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.tzname", "domain": "py", "role": "data", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "time.tzset", "domain": "py", "role": "function", "priority": "1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "timeit", "domain": "py", "role": "module", "priority": "0", "uri": "library/timeit.html#module-$", "dispname": "-"}, {"name": "timeit.Timer", "domain": "py", "role": "class", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.Timer.autorange", "domain": "py", "role": "method", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.Timer.print_exc", "domain": "py", "role": "method", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.Timer.repeat", "domain": "py", "role": "method", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.Timer.timeit", "domain": "py", "role": "method", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.default_timer", "domain": "py", "role": "function", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.repeat", "domain": "py", "role": "function", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "timeit.timeit", "domain": "py", "role": "function", "priority": "1", "uri": "library/timeit.html#$", "dispname": "-"}, {"name": "tkinter", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.html#module-$", "dispname": "-"}, {"name": "tkinter.EXCEPTION", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.READABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Tcl", "domain": "py", "role": "function", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Tk", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Tk.children", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Tk.master", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Tk.tk", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.WRITABLE", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Widget.tk.createfilehandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.Widget.tk.deletefilehandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.html#$", "dispname": "-"}, {"name": "tkinter.colorchooser", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.colorchooser.html#module-$", "dispname": "-"}, {"name": "tkinter.colorchooser.Chooser", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.colorchooser.html#$", "dispname": "-"}, {"name": "tkinter.colorchooser.askcolor", "domain": "py", "role": "function", "priority": "1", "uri": "library/tkinter.colorchooser.html#$", "dispname": "-"}, {"name": "tkinter.commondialog", "domain": "py", "role": "module", "priority": "0", "uri": "library/dialog.html#module-$", "dispname": "-"}, {"name": "tkinter.commondialog.Dialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.commondialog.Dialog.show", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.dnd", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.dnd.html#module-$", "dispname": "-"}, {"name": "tkinter.dnd.DndHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.dnd.html#$", "dispname": "-"}, {"name": "tkinter.dnd.DndHandler.cancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.dnd.html#$", "dispname": "-"}, {"name": "tkinter.dnd.DndHandler.finish", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.dnd.html#$", "dispname": "-"}, {"name": "tkinter.dnd.DndHandler.on_motion", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.dnd.html#$", "dispname": "-"}, {"name": "tkinter.dnd.DndHandler.on_release", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.dnd.html#$", "dispname": "-"}, {"name": "tkinter.dnd.dnd_start", "domain": "py", "role": "function", "priority": "1", "uri": "library/tkinter.dnd.html#$", "dispname": "-"}, {"name": "tkinter.filedialog", "domain": "py", "role": "module", "priority": "0", "uri": "library/dialog.html#module-$", "dispname": "-"}, {"name": "tkinter.filedialog.Directory", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.cancel_command", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.dirs_double_event", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.dirs_select_event", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.files_double_event", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.files_select_event", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.filter_command", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.get_filter", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.get_selection", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.go", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.ok_event", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.quit", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.set_filter", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.FileDialog.set_selection", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.LoadFileDialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.LoadFileDialog.ok_command", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.Open", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.SaveAs", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.SaveFileDialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.SaveFileDialog.ok_command", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.askdirectory", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.askopenfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.askopenfilename", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.askopenfilenames", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.askopenfiles", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.asksaveasfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.filedialog.asksaveasfilename", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.font", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.font.html#module-$", "dispname": "-"}, {"name": "tkinter.font.BOLD", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font.actual", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font.cget", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font.config", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font.measure", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.Font.metrics", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.ITALIC", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.NORMAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.ROMAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.families", "domain": "py", "role": "function", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.names", "domain": "py", "role": "function", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.font.nametofont", "domain": "py", "role": "function", "priority": "1", "uri": "library/tkinter.font.html#$", "dispname": "-"}, {"name": "tkinter.messagebox", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.messagebox.html#module-$", "dispname": "-"}, {"name": "tkinter.messagebox.Message", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.askokcancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.askquestion", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.askretrycancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.askyesno", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.askyesnocancel", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.showerror", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.showinfo", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.messagebox.showwarning", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.messagebox.html#$", "dispname": "-"}, {"name": "tkinter.scrolledtext", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.scrolledtext.html#module-$", "dispname": "-"}, {"name": "tkinter.scrolledtext.ScrolledText", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.scrolledtext.html#$", "dispname": "-"}, {"name": "tkinter.scrolledtext.ScrolledText.frame", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tkinter.scrolledtext.html#$", "dispname": "-"}, {"name": "tkinter.scrolledtext.ScrolledText.vbar", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tkinter.scrolledtext.html#$", "dispname": "-"}, {"name": "tkinter.simpledialog", "domain": "py", "role": "module", "priority": "0", "uri": "library/dialog.html#module-$", "dispname": "-"}, {"name": "tkinter.simpledialog.Dialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.simpledialog.Dialog.body", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.simpledialog.Dialog.buttonbox", "domain": "py", "role": "method", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.simpledialog.askfloat", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.simpledialog.askinteger", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.simpledialog.askstring", "domain": "py", "role": "function", "priority": "1", "uri": "library/dialog.html#$", "dispname": "-"}, {"name": "tkinter.tix", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.tix.html#module-$", "dispname": "-"}, {"name": "tkinter.tix.Balloon", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.ButtonBox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.CheckList", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.ComboBox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.Control", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.DirList", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.DirSelectBox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.DirSelectDialog", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.DirTree", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.ExFileSelectBox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.FileEntry", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.FileSelectBox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.Form", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.HList", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.InputOnly", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.LabelEntry", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.LabelFrame", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.ListNoteBook", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.Meter", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.NoteBook", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.OptionMenu", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.PanedWindow", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.PopupMenu", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.Select", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.StdButtonBox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.TList", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.Tk", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.Tree", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_addbitmapdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_cget", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_configure", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_filedialog", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_getbitmap", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_getimage", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_option_get", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.tix.tixCommand.tix_resetoptions", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.tix.html#$", "dispname": "-"}, {"name": "tkinter.ttk", "domain": "py", "role": "module", "priority": "0", "uri": "library/tkinter.ttk.html#module-$", "dispname": "-"}, {"name": "tkinter.ttk.Combobox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Combobox.current", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Combobox.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Combobox.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.add", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.enable_traversal", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.forget", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.hide", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.identify", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.insert", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.select", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.tab", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Notebook.tabs", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Progressbar", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Progressbar.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Progressbar.step", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Progressbar.stop", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Spinbox", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Spinbox.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Spinbox.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.configure", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.element_create", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.element_names", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.element_options", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.layout", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.lookup", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.map", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.theme_create", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.theme_names", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.theme_settings", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Style.theme_use", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.bbox", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.column", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.delete", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.detach", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.exists", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.focus", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.get_children", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.heading", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.identify", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.identify_column", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.identify_element", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.identify_region", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.identify_row", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.index", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.insert", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.item", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.move", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.next", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.parent", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.prev", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.reattach", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.see", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.selection", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.selection_add", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.selection_remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.selection_set", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.selection_toggle", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.set_children", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.tag_bind", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.tag_configure", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.tag_has", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.xview", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Treeview.yview", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Widget", "domain": "py", "role": "class", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Widget.identify", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Widget.instate", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "tkinter.ttk.Widget.state", "domain": "py", "role": "method", "priority": "1", "uri": "library/tkinter.ttk.html#$", "dispname": "-"}, {"name": "token", "domain": "py", "role": "module", "priority": "0", "uri": "library/token.html#module-$", "dispname": "-"}, {"name": "token.AMPER", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.AMPEREQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ASYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.AT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ATEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.AWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.CIRCUMFLEX", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.CIRCUMFLEXEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.COLON", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.COLONEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.COMMA", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.COMMENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.DEDENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.DOT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.DOUBLESLASH", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.DOUBLESLASHEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.DOUBLESTAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.DOUBLESTAREQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ELLIPSIS", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ENCODING", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ENDMARKER", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.EQEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.EQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ERRORTOKEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.GREATER", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.GREATEREQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.INDENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ISEOF", "domain": "py", "role": "function", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ISNONTERMINAL", "domain": "py", "role": "function", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.ISTERMINAL", "domain": "py", "role": "function", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LBRACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LEFTSHIFT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LEFTSHIFTEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LESS", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LESSEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LPAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.LSQB", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.MINEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.MINUS", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.NAME", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.NEWLINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.NL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.NOTEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.NT_OFFSET", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.NUMBER", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.N_TOKENS", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.OP", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.PERCENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.PERCENTEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.PLUS", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.PLUSEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.RARROW", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.RBRACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.RIGHTSHIFT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.RIGHTSHIFTEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.RPAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.RSQB", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.SEMI", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.SLASH", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.SLASHEQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.SOFT_KEYWORD", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.STAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.STAREQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.STRING", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.TILDE", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.TYPE_COMMENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.TYPE_IGNORE", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.VBAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.VBAREQUAL", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "token.tok_name", "domain": "py", "role": "data", "priority": "1", "uri": "library/token.html#$", "dispname": "-"}, {"name": "tokenize", "domain": "py", "role": "module", "priority": "0", "uri": "library/tokenize.html#module-$", "dispname": "-"}, {"name": "tokenize.TokenError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/tokenize.html#$", "dispname": "-"}, {"name": "tokenize.detect_encoding", "domain": "py", "role": "function", "priority": "1", "uri": "library/tokenize.html#$", "dispname": "-"}, {"name": "tokenize.generate_tokens", "domain": "py", "role": "function", "priority": "1", "uri": "library/tokenize.html#$", "dispname": "-"}, {"name": "tokenize.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/tokenize.html#$", "dispname": "-"}, {"name": "tokenize.tokenize", "domain": "py", "role": "function", "priority": "1", "uri": "library/tokenize.html#$", "dispname": "-"}, {"name": "tokenize.untokenize", "domain": "py", "role": "function", "priority": "1", "uri": "library/tokenize.html#$", "dispname": "-"}, {"name": "trace", "domain": "py", "role": "module", "priority": "0", "uri": "library/trace.html#module-$", "dispname": "-"}, {"name": "trace.CoverageResults", "domain": "py", "role": "class", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.CoverageResults.update", "domain": "py", "role": "method", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.CoverageResults.write_results", "domain": "py", "role": "method", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.Trace", "domain": "py", "role": "class", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.Trace.results", "domain": "py", "role": "method", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.Trace.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.Trace.runctx", "domain": "py", "role": "method", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "trace.Trace.runfunc", "domain": "py", "role": "method", "priority": "1", "uri": "library/trace.html#$", "dispname": "-"}, {"name": "traceback", "domain": "py", "role": "module", "priority": "0", "uri": "library/traceback.html#module-$", "dispname": "-"}, {"name": "traceback.FrameSummary", "domain": "py", "role": "class", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.StackSummary", "domain": "py", "role": "class", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.StackSummary.extract", "domain": "py", "role": "method", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.StackSummary.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.StackSummary.from_list", "domain": "py", "role": "method", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException", "domain": "py", "role": "class", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.__cause__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.__context__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.__suppress_context__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.end_lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.end_offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.exc_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.format_exception_only", "domain": "py", "role": "method", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.from_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.msg", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.stack", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.TracebackException.text", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.clear_frames", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.extract_stack", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.extract_tb", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.format_exc", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.format_exception", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.format_exception_only", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.format_list", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.format_stack", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.format_tb", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.print_exc", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.print_exception", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.print_last", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.print_stack", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.print_tb", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.walk_stack", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "traceback.walk_tb", "domain": "py", "role": "function", "priority": "1", "uri": "library/traceback.html#$", "dispname": "-"}, {"name": "tracemalloc", "domain": "py", "role": "module", "priority": "0", "uri": "library/tracemalloc.html#module-$", "dispname": "-"}, {"name": "tracemalloc.DomainFilter", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.DomainFilter.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.DomainFilter.inclusive", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Filter", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Filter.all_frames", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Filter.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Filter.filename_pattern", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Filter.inclusive", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Filter.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Frame", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Frame.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Frame.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.compare_to", "domain": "py", "role": "method", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.dump", "domain": "py", "role": "method", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.filter_traces", "domain": "py", "role": "method", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.load", "domain": "py", "role": "method", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.statistics", "domain": "py", "role": "method", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.traceback_limit", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Snapshot.traces", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Statistic", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Statistic.count", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Statistic.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Statistic.traceback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.StatisticDiff", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.StatisticDiff.count", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.StatisticDiff.count_diff", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.StatisticDiff.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.StatisticDiff.size_diff", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.StatisticDiff.traceback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Trace", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Trace.domain", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Trace.size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Trace.traceback", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Traceback", "domain": "py", "role": "class", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Traceback.format", "domain": "py", "role": "method", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.Traceback.total_nframe", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.clear_traces", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.get_object_traceback", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.get_traceback_limit", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.get_traced_memory", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.get_tracemalloc_memory", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.is_tracing", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.reset_peak", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.start", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.stop", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tracemalloc.take_snapshot", "domain": "py", "role": "function", "priority": "1", "uri": "library/tracemalloc.html#$", "dispname": "-"}, {"name": "tty", "domain": "py", "role": "module", "priority": "0", "uri": "library/tty.html#module-$", "dispname": "-"}, {"name": "tty.setcbreak", "domain": "py", "role": "function", "priority": "1", "uri": "library/tty.html#$", "dispname": "-"}, {"name": "tty.setraw", "domain": "py", "role": "function", "priority": "1", "uri": "library/tty.html#$", "dispname": "-"}, {"name": "tuple", "domain": "py", "role": "class", "priority": "1", "uri": "library/stdtypes.html#$", "dispname": "-"}, {"name": "turtle", "domain": "py", "role": "module", "priority": "0", "uri": "library/turtle.html#module-$", "dispname": "-"}, {"name": "turtle.RawPen", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.RawTurtle", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.Screen", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.ScrolledCanvas", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.Shape", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.Shape.addcomponent", "domain": "py", "role": "method", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.Turtle", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.TurtleScreen", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.Vec2D", "domain": "py", "role": "class", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.addshape", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.back", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.backward", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.begin_fill", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.begin_poly", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.bgcolor", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.bgpic", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.bk", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.bye", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.circle", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.clear", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.clearscreen", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.clearstamp", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.clearstamps", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.clone", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.color", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.colormode", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.degrees", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.delay", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.distance", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.done", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.dot", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.down", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.end_fill", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.end_poly", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.exitonclick", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.fd", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.fillcolor", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.filling", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.forward", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.get_poly", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.get_shapepoly", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.getcanvas", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.getpen", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.getscreen", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.getshapes", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.getturtle", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.goto", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.heading", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.hideturtle", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.home", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.ht", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.isdown", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.isvisible", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.left", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.listen", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.lt", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.mainloop", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.mode", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.numinput", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.onclick", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.ondrag", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.onkey", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.onkeypress", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.onkeyrelease", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.onrelease", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.onscreenclick", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.ontimer", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pd", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pen", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pencolor", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pendown", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pensize", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.penup", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pos", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.position", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.pu", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.radians", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.register_shape", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.reset", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.resetscreen", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.resizemode", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.right", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.rt", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.screensize", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.seth", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setheading", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setpos", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setposition", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.settiltangle", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setundobuffer", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setup", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setworldcoordinates", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.setx", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.sety", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.shape", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.shapesize", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.shapetransform", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.shearfactor", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.showturtle", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.speed", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.st", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.stamp", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.textinput", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.tilt", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.tiltangle", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.title", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.towards", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.tracer", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.turtles", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.turtlesize", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.undo", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.undobufferentries", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.up", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.update", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.width", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.window_height", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.window_width", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.write", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.write_docstringdict", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.xcor", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtle.ycor", "domain": "py", "role": "function", "priority": "1", "uri": "library/turtle.html#$", "dispname": "-"}, {"name": "turtledemo", "domain": "py", "role": "module", "priority": "0", "uri": "library/turtle.html#module-$", "dispname": "-"}, {"name": "type", "domain": "py", "role": "class", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "types", "domain": "py", "role": "module", "priority": "0", "uri": "library/types.html#module-$", "dispname": "-"}, {"name": "types.AsyncGeneratorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.BuiltinFunctionType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.BuiltinMethodType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.CellType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ClassMethodDescriptorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.CodeType", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.CodeType.replace", "domain": "py", "role": "method", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.CoroutineType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.DynamicClassAttribute", "domain": "py", "role": "function", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.EllipsisType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.FrameType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.FunctionType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.GeneratorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.GenericAlias", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.GetSetDescriptorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.LambdaType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MappingProxyType", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MappingProxyType.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MappingProxyType.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MappingProxyType.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MappingProxyType.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MappingProxyType.values", "domain": "py", "role": "method", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MemberDescriptorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MethodDescriptorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MethodType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.MethodWrapperType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ModuleType", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ModuleType.__doc__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ModuleType.__loader__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ModuleType.__name__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ModuleType.__package__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.ModuleType.__spec__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.NoneType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.NotImplementedType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.SimpleNamespace", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.TracebackType", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.UnionType", "domain": "py", "role": "class", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.WrapperDescriptorType", "domain": "py", "role": "data", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.coroutine", "domain": "py", "role": "function", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.new_class", "domain": "py", "role": "function", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.prepare_class", "domain": "py", "role": "function", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "types.resolve_bases", "domain": "py", "role": "function", "priority": "1", "uri": "library/types.html#$", "dispname": "-"}, {"name": "typing", "domain": "py", "role": "module", "priority": "0", "uri": "library/typing.html#module-$", "dispname": "-"}, {"name": "typing.AbstractSet", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Annotated", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Any", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.AnyStr", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.AsyncContextManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.AsyncGenerator", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.AsyncIterable", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.AsyncIterator", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Awaitable", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.BinaryIO", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ByteString", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Callable", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ChainMap", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ClassVar", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Collection", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Concatenate", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Container", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ContextManager", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Coroutine", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Counter", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.DefaultDict", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Deque", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Dict", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Final", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ForwardRef", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.FrozenSet", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Generator", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Generic", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Hashable", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.IO", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ItemsView", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Iterable", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Iterator", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.KeysView", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.List", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Literal", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Mapping", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.MappingView", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Match", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.MutableMapping", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.MutableSequence", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.MutableSet", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.NamedTuple", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.NewType", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.NoReturn", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Optional", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.OrderedDict", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ParamSpec", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ParamSpec.args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ParamSpec.kwargs", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ParamSpecArgs", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ParamSpecKwargs", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Pattern", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Protocol", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Reversible", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Sequence", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Set", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Sized", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsAbs", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsBytes", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsComplex", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsFloat", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsIndex", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsInt", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.SupportsRound", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TYPE_CHECKING", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Text", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TextIO", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Tuple", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Type", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypeAlias", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypeGuard", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypeVar", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypedDict", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypedDict.__optional_keys__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypedDict.__required_keys__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.TypedDict.__total__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.Union", "domain": "py", "role": "data", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.ValuesView", "domain": "py", "role": "class", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.cast", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.final", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.get_args", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.get_origin", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.get_type_hints", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.is_typeddict", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.no_type_check", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.no_type_check_decorator", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.overload", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.runtime_checkable", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "typing.type_check_only", "domain": "py", "role": "function", "priority": "1", "uri": "library/typing.html#$", "dispname": "-"}, {"name": "unicodedata", "domain": "py", "role": "module", "priority": "0", "uri": "library/unicodedata.html#module-$", "dispname": "-"}, {"name": "unicodedata.bidirectional", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.category", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.combining", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.decimal", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.decomposition", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.digit", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.east_asian_width", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.is_normalized", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.lookup", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.mirrored", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.name", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.normalize", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.numeric", "domain": "py", "role": "function", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.ucd_3_2_0", "domain": "py", "role": "data", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unicodedata.unidata_version", "domain": "py", "role": "data", "priority": "1", "uri": "library/unicodedata.html#$", "dispname": "-"}, {"name": "unittest", "domain": "py", "role": "module", "priority": "0", "uri": "library/unittest.html#module-$", "dispname": "-"}, {"name": "unittest.FunctionTestCase", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.IsolatedAsyncioTestCase", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.IsolatedAsyncioTestCase.addAsyncCleanup", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.IsolatedAsyncioTestCase.asyncSetUp", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.IsolatedAsyncioTestCase.asyncTearDown", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.IsolatedAsyncioTestCase.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.SkipTest", "domain": "py", "role": "exception", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.addClassCleanup", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.addCleanup", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.addTypeEqualityFunc", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertAlmostEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertCountEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertDictEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertFalse", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertGreater", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertGreaterEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertIn", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertIs", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertIsInstance", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertIsNone", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertIsNot", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertIsNotNone", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertLess", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertLessEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertListEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertLogs", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertMultiLineEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertNoLogs", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertNotAlmostEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertNotEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertNotIn", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertNotIsInstance", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertNotRegex", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertRaises", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertRaisesRegex", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertRegex", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertSequenceEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertSetEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertTrue", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertTupleEqual", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertWarns", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.assertWarnsRegex", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.countTestCases", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.debug", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.defaultTestResult", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.doClassCleanups", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.doCleanups", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.fail", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.failureException", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.id", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.longMessage", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.maxDiff", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.output", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.records", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.setUp", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.setUpClass", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.shortDescription", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.skipTest", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.subTest", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.tearDown", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestCase.tearDownClass", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.discover", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.errors", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.getTestCaseNames", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.loadTestsFromModule", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.loadTestsFromName", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.loadTestsFromNames", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.loadTestsFromTestCase", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.sortTestMethodsUsing", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.suiteClass", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.testMethodPrefix", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestLoader.testNamePatterns", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addError", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addExpectedFailure", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addFailure", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addSkip", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addSubTest", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addSuccess", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.addUnexpectedSuccess", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.buffer", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.errors", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.expectedFailures", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.failfast", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.failures", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.shouldStop", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.skipped", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.startTest", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.startTestRun", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.stop", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.stopTest", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.stopTestRun", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.tb_locals", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.testsRun", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.unexpectedSuccesses", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestResult.wasSuccessful", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite.__iter__", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite.addTest", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite.addTests", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite.countTestCases", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite.debug", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TestSuite.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TextTestResult", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TextTestRunner", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TextTestRunner._makeResult", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.TextTestRunner.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.addModuleCleanup", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.defaultTestLoader", "domain": "py", "role": "data", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.doModuleCleanups", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.expectedFailure", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.installHandler", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.main", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.mock", "domain": "py", "role": "module", "priority": "0", "uri": "library/unittest.mock.html#module-$", "dispname": "-"}, {"name": "unittest.mock.ANY", "domain": "py", "role": "data", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_any_await", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_awaited", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_awaited_once", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_awaited_once_with", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_awaited_with", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_has_awaits", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.assert_not_awaited", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.await_args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.await_args_list", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.await_count", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.AsyncMock.reset_mock", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.DEFAULT", "domain": "py", "role": "data", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.FILTER_DIR", "domain": "py", "role": "data", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.MagicMock", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.__class__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.__dir__", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock._get_child_mock", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_any_call", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_called", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_called_once", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_called_once_with", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_called_with", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_has_calls", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.assert_not_called", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.attach_mock", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.call_args", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.call_args_list", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.call_count", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.called", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.configure_mock", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.method_calls", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.mock_add_spec", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.mock_calls", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.reset_mock", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.return_value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.Mock.side_effect", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.NonCallableMagicMock", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.NonCallableMock", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.PropertyMock", "domain": "py", "role": "class", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.call", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.call.call_list", "domain": "py", "role": "method", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.create_autospec", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.mock_open", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.patch", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.patch.dict", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.patch.multiple", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.patch.object", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.patch.stopall", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.seal", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.mock.sentinel", "domain": "py", "role": "data", "priority": "1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "unittest.registerResult", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.removeHandler", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.removeResult", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.skip", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.skipIf", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "unittest.skipUnless", "domain": "py", "role": "function", "priority": "1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "urllib", "domain": "py", "role": "module", "priority": "0", "uri": "library/urllib.html#module-$", "dispname": "-"}, {"name": "urllib.error", "domain": "py", "role": "module", "priority": "0", "uri": "library/urllib.error.html#module-$", "dispname": "-"}, {"name": "urllib.error.ContentTooShortError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.error.HTTPError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.error.HTTPError.code", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.error.HTTPError.headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.error.HTTPError.reason", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.error.URLError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.error.URLError.reason", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.error.html#$", "dispname": "-"}, {"name": "urllib.parse", "domain": "py", "role": "module", "priority": "0", "uri": "library/urllib.parse.html#module-$", "dispname": "-"}, {"name": "urllib.parse.DefragResult", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.DefragResultBytes", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.ParseResult", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.ParseResultBytes", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.SplitResult", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.SplitResultBytes", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.parse_qs", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.parse_qsl", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.quote", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.quote_from_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.quote_plus", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.unquote", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.unquote_plus", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.unquote_to_bytes", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.unwrap", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urldefrag", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urlencode", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urljoin", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urllib.parse.SplitResult.geturl", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urlparse", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urlsplit", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urlunparse", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.parse.urlunsplit", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.parse.html#$", "dispname": "-"}, {"name": "urllib.request", "domain": "py", "role": "module", "priority": "0", "uri": "library/urllib.request.html#module-$", "dispname": "-"}, {"name": "urllib.request.AbstractBasicAuthHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.AbstractBasicAuthHandler.http_error_auth_reqed", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.AbstractDigestAuthHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.AbstractDigestAuthHandler.http_error_auth_reqed", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler.add_parent", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler.default_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler.http_error_default", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler.parent", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.BaseHandler.unknown_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.CacheFTPHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.CacheFTPHandler.setMaxConns", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.CacheFTPHandler.setTimeout", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.DataHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.DataHandler.data_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.FTPHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.FTPHandler.ftp_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.FancyURLopener", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.FancyURLopener.prompt_user_passwd", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.FileHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.FileHandler.file_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPBasicAuthHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPBasicAuthHandler.http_error_401", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPCookieProcessor", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPCookieProcessor.cookiejar", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPDefaultErrorHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPDigestAuthHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPDigestAuthHandler.http_error_401", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPErrorProcessor", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPErrorProcessor.http_response", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPErrorProcessor.https_response", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPHandler.http_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgr", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgr.add_password", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgr.find_user_password", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgrWithDefaultRealm", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgrWithPriorAuth", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgrWithPriorAuth.add_password", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgrWithPriorAuth.find_user_password", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPPasswordMgrWithPriorAuth.update_authenticated", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPRedirectHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPRedirectHandler.http_error_301", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPRedirectHandler.http_error_302", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPRedirectHandler.http_error_303", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPRedirectHandler.http_error_307", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPRedirectHandler.redirect_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPSHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.HTTPSHandler.https_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.OpenerDirector", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.OpenerDirector.add_handler", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.OpenerDirector.error", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.OpenerDirector.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.ProxyBasicAuthHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.ProxyBasicAuthHandler.http_error_407", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.ProxyDigestAuthHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.ProxyDigestAuthHandler.http_error_407", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.ProxyHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.add_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.add_unredirected_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.full_url", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.get_full_url", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.get_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.get_method", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.has_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.header_items", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.host", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.method", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.origin_req_host", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.remove_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.selector", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.set_proxy", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.Request.unverifiable", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.URLopener", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.URLopener.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.URLopener.open_unknown", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.URLopener.retrieve", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.URLopener.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.UnknownHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.UnknownHandler.unknown_open", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.build_opener", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.getproxies", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.install_opener", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.pathname2url", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.url2pathname", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.urlcleanup", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.urlopen", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.request.urlretrieve", "domain": "py", "role": "function", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response", "domain": "py", "role": "module", "priority": "0", "uri": "library/urllib.request.html#module-$", "dispname": "-"}, {"name": "urllib.response.addinfourl", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.code", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.getcode", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.geturl", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.info", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.status", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.response.addinfourl.url", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib.robotparser", "domain": "py", "role": "module", "priority": "0", "uri": "library/urllib.robotparser.html#module-$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.can_fetch", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.crawl_delay", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.modified", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.mtime", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.request_rate", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.set_url", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "urllib.robotparser.RobotFileParser.site_maps", "domain": "py", "role": "method", "priority": "1", "uri": "library/urllib.robotparser.html#$", "dispname": "-"}, {"name": "uu", "domain": "py", "role": "module", "priority": "0", "uri": "library/uu.html#module-$", "dispname": "-"}, {"name": "uu.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/uu.html#$", "dispname": "-"}, {"name": "uu.decode", "domain": "py", "role": "function", "priority": "1", "uri": "library/uu.html#$", "dispname": "-"}, {"name": "uu.encode", "domain": "py", "role": "function", "priority": "1", "uri": "library/uu.html#$", "dispname": "-"}, {"name": "uuid", "domain": "py", "role": "module", "priority": "0", "uri": "library/uuid.html#module-$", "dispname": "-"}, {"name": "uuid.NAMESPACE_DNS", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.NAMESPACE_OID", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.NAMESPACE_URL", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.NAMESPACE_X500", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.RESERVED_FUTURE", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.RESERVED_MICROSOFT", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.RESERVED_NCS", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.RFC_4122", "domain": "py", "role": "data", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.SafeUUID", "domain": "py", "role": "class", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.SafeUUID.safe", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.SafeUUID.unknown", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.SafeUUID.unsafe", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID", "domain": "py", "role": "class", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.bytes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.bytes_le", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.fields", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.hex", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.int", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.is_safe", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.urn", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.variant", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.UUID.version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.getnode", "domain": "py", "role": "function", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.uuid1", "domain": "py", "role": "function", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.uuid3", "domain": "py", "role": "function", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.uuid4", "domain": "py", "role": "function", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "uuid.uuid5", "domain": "py", "role": "function", "priority": "1", "uri": "library/uuid.html#$", "dispname": "-"}, {"name": "vars", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "venv", "domain": "py", "role": "module", "priority": "0", "uri": "library/venv.html#module-$", "dispname": "-"}, {"name": "venv.EnvBuilder", "domain": "py", "role": "class", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.create", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.create_configuration", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.ensure_directories", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.install_scripts", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.post_setup", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.setup_python", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.setup_scripts", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.EnvBuilder.upgrade_dependencies", "domain": "py", "role": "method", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv.create", "domain": "py", "role": "function", "priority": "1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "warnings", "domain": "py", "role": "module", "priority": "0", "uri": "library/warnings.html#module-$", "dispname": "-"}, {"name": "warnings.catch_warnings", "domain": "py", "role": "class", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.filterwarnings", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.formatwarning", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.resetwarnings", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.showwarning", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.simplefilter", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.warn", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "warnings.warn_explicit", "domain": "py", "role": "function", "priority": "1", "uri": "library/warnings.html#$", "dispname": "-"}, {"name": "wave", "domain": "py", "role": "module", "priority": "0", "uri": "library/wave.html#module-$", "dispname": "-"}, {"name": "wave.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getcompname", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getcomptype", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getframerate", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getmark", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getmarkers", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getnchannels", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getnframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getparams", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.getsampwidth", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.readframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.rewind", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.setpos", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_read.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.setcomptype", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.setframerate", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.setnchannels", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.setnframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.setparams", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.setsampwidth", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.tell", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.writeframes", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.Wave_write.writeframesraw", "domain": "py", "role": "method", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "wave.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/wave.html#$", "dispname": "-"}, {"name": "weakref", "domain": "py", "role": "module", "priority": "0", "uri": "library/weakref.html#module-$", "dispname": "-"}, {"name": "weakref.CallableProxyType", "domain": "py", "role": "data", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.ProxyType", "domain": "py", "role": "data", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.ProxyTypes", "domain": "py", "role": "data", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.ReferenceType", "domain": "py", "role": "data", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.WeakKeyDictionary", "domain": "py", "role": "class", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.WeakKeyDictionary.keyrefs", "domain": "py", "role": "method", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.WeakMethod", "domain": "py", "role": "class", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.WeakSet", "domain": "py", "role": "class", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.WeakValueDictionary", "domain": "py", "role": "class", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.WeakValueDictionary.valuerefs", "domain": "py", "role": "method", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.finalize", "domain": "py", "role": "class", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.finalize.__call__", "domain": "py", "role": "method", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.finalize.alive", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.finalize.atexit", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.finalize.detach", "domain": "py", "role": "method", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.finalize.peek", "domain": "py", "role": "method", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.getweakrefcount", "domain": "py", "role": "function", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.getweakrefs", "domain": "py", "role": "function", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.proxy", "domain": "py", "role": "function", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.ref", "domain": "py", "role": "class", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "weakref.ref.__callback__", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/weakref.html#$", "dispname": "-"}, {"name": "webbrowser", "domain": "py", "role": "module", "priority": "0", "uri": "library/webbrowser.html#module-$", "dispname": "-"}, {"name": "webbrowser.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.controller.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.controller.open_new", "domain": "py", "role": "method", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.controller.open_new_tab", "domain": "py", "role": "method", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.get", "domain": "py", "role": "function", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.open", "domain": "py", "role": "function", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.open_new", "domain": "py", "role": "function", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.open_new_tab", "domain": "py", "role": "function", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "webbrowser.register", "domain": "py", "role": "function", "priority": "1", "uri": "library/webbrowser.html#$", "dispname": "-"}, {"name": "winreg", "domain": "py", "role": "module", "priority": "0", "uri": "library/winreg.html#module-$", "dispname": "-"}, {"name": "winreg.CloseKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.ConnectRegistry", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.CreateKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.CreateKeyEx", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.DeleteKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.DeleteKeyEx", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.DeleteValue", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.DisableReflectionKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.EnableReflectionKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.EnumKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.EnumValue", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.ExpandEnvironmentStrings", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.FlushKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_CLASSES_ROOT", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_CURRENT_CONFIG", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_CURRENT_USER", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_DYN_DATA", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_LOCAL_MACHINE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_PERFORMANCE_DATA", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.HKEY_USERS", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_ALL_ACCESS", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_CREATE_LINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_CREATE_SUB_KEY", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_ENUMERATE_SUB_KEYS", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_EXECUTE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_NOTIFY", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_QUERY_VALUE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_READ", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_SET_VALUE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_WOW64_32KEY", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_WOW64_64KEY", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.KEY_WRITE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.LoadKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.OpenKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.OpenKeyEx", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.PyHKEY.Close", "domain": "py", "role": "method", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.PyHKEY.Detach", "domain": "py", "role": "method", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.PyHKEY.__enter__", "domain": "py", "role": "method", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.PyHKEY.__exit__", "domain": "py", "role": "method", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.QueryInfoKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.QueryReflectionKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.QueryValue", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.QueryValueEx", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_BINARY", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_DWORD", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_DWORD_BIG_ENDIAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_DWORD_LITTLE_ENDIAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_EXPAND_SZ", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_FULL_RESOURCE_DESCRIPTOR", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_LINK", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_MULTI_SZ", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_NONE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_QWORD", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_QWORD_LITTLE_ENDIAN", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_RESOURCE_LIST", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_RESOURCE_REQUIREMENTS_LIST", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.REG_SZ", "domain": "py", "role": "data", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.SaveKey", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.SetValue", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winreg.SetValueEx", "domain": "py", "role": "function", "priority": "1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "winsound", "domain": "py", "role": "module", "priority": "0", "uri": "library/winsound.html#module-$", "dispname": "-"}, {"name": "winsound.Beep", "domain": "py", "role": "function", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.MB_ICONASTERISK", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.MB_ICONEXCLAMATION", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.MB_ICONHAND", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.MB_ICONQUESTION", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.MB_OK", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.MessageBeep", "domain": "py", "role": "function", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.PlaySound", "domain": "py", "role": "function", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_ALIAS", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_ASYNC", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_FILENAME", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_LOOP", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_MEMORY", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_NODEFAULT", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_NOSTOP", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_NOWAIT", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "winsound.SND_PURGE", "domain": "py", "role": "data", "priority": "1", "uri": "library/winsound.html#$", "dispname": "-"}, {"name": "wsgiref", "domain": "py", "role": "module", "priority": "0", "uri": "library/wsgiref.html#module-$", "dispname": "-"}, {"name": "wsgiref.handlers", "domain": "py", "role": "module", "priority": "0", "uri": "library/wsgiref.html#module-$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseCGIHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler._flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler._write", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.add_cgi_vars", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.error_body", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.error_headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.error_output", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.error_status", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.get_scheme", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.get_stderr", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.get_stdin", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.http_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.log_exception", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.origin_server", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.os_environ", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.run", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.sendfile", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.server_software", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.setup_environ", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.traceback_limit", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.wsgi_file_wrapper", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.wsgi_multiprocess", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.wsgi_multithread", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.BaseHandler.wsgi_run_once", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.CGIHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.IISCGIHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.SimpleHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.handlers.read_environ", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.headers", "domain": "py", "role": "module", "priority": "0", "uri": "library/wsgiref.html#module-$", "dispname": "-"}, {"name": "wsgiref.headers.Headers", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.headers.Headers.add_header", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.headers.Headers.get_all", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server", "domain": "py", "role": "module", "priority": "0", "uri": "library/wsgiref.html#module-$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIRequestHandler.get_environ", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIRequestHandler.get_stderr", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIRequestHandler.handle", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIServer.get_app", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.WSGIServer.set_app", "domain": "py", "role": "method", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.demo_app", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.simple_server.make_server", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util", "domain": "py", "role": "module", "priority": "0", "uri": "library/wsgiref.html#module-$", "dispname": "-"}, {"name": "wsgiref.util.FileWrapper", "domain": "py", "role": "class", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util.application_uri", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util.guess_scheme", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util.is_hop_by_hop", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util.request_uri", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util.setup_testing_defaults", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.util.shift_path_info", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "wsgiref.validate", "domain": "py", "role": "module", "priority": "0", "uri": "library/wsgiref.html#module-$", "dispname": "-"}, {"name": "wsgiref.validate.validator", "domain": "py", "role": "function", "priority": "1", "uri": "library/wsgiref.html#$", "dispname": "-"}, {"name": "xdrlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/xdrlib.html#module-$", "dispname": "-"}, {"name": "xdrlib.ConversionError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer", "domain": "py", "role": "class", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.get_buffer", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_array", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_double", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_farray", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_float", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_fopaque", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_fstring", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_list", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_opaque", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.pack_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Packer.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker", "domain": "py", "role": "class", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.done", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.get_buffer", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.get_position", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.set_position", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_array", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_double", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_farray", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_float", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_fopaque", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_fstring", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_list", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_opaque", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xdrlib.Unpacker.unpack_string", "domain": "py", "role": "method", "priority": "1", "uri": "library/xdrlib.html#$", "dispname": "-"}, {"name": "xml", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.html#module-$", "dispname": "-"}, {"name": "xml.dom", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.dom.html#module-$", "dispname": "-"}, {"name": "xml.dom.Attr.localName", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Attr.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Attr.prefix", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Attr.value", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Comment.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DOMException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DOMImplementation.createDocument", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DOMImplementation.createDocumentType", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DOMImplementation.hasFeature", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createAttribute", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createAttributeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createComment", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createElement", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createElementNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createProcessingInstruction", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.createTextNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.documentElement", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.getElementsByTagName", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Document.getElementsByTagNameNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DocumentType.entities", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DocumentType.internalSubset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DocumentType.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DocumentType.notations", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DocumentType.publicId", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DocumentType.systemId", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.DomstringSizeErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.EMPTY_NAMESPACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.getAttribute", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.getAttributeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.getAttributeNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.getAttributeNodeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.getElementsByTagName", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.getElementsByTagNameNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.hasAttribute", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.hasAttributeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.removeAttribute", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.removeAttributeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.removeAttributeNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.setAttribute", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.setAttributeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.setAttributeNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.setAttributeNodeNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Element.tagName", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.HierarchyRequestErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.IndexSizeErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.InuseAttributeErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.InvalidAccessErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.InvalidCharacterErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.InvalidModificationErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.InvalidStateErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NamedNodeMap.item", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NamedNodeMap.length", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NamespaceErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NoDataAllowedErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NoModificationAllowedErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.appendChild", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.attributes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.childNodes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.cloneNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.firstChild", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.hasAttributes", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.hasChildNodes", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.insertBefore", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.isSameNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.lastChild", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.localName", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.namespaceURI", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.nextSibling", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.nodeName", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.nodeType", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.nodeValue", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.normalize", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.parentNode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.prefix", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.previousSibling", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.removeChild", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Node.replaceChild", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NodeList.item", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NodeList.length", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NotFoundErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.NotSupportedErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.ProcessingInstruction.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.ProcessingInstruction.target", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.SyntaxErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.Text.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.WrongDocumentErr", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.XHTML_NAMESPACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.XMLNS_NAMESPACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.XML_NAMESPACE", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.getDOMImplementation", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.dom.minidom", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.dom.minidom.html#module-$", "dispname": "-"}, {"name": "xml.dom.minidom.Node.toprettyxml", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.minidom.html#$", "dispname": "-"}, {"name": "xml.dom.minidom.Node.toxml", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.minidom.html#$", "dispname": "-"}, {"name": "xml.dom.minidom.Node.unlink", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.minidom.html#$", "dispname": "-"}, {"name": "xml.dom.minidom.Node.writexml", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.minidom.html#$", "dispname": "-"}, {"name": "xml.dom.minidom.parse", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.dom.minidom.html#$", "dispname": "-"}, {"name": "xml.dom.minidom.parseString", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.dom.minidom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.dom.pulldom.html#module-$", "dispname": "-"}, {"name": "xml.dom.pulldom.DOMEventStream", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.DOMEventStream.expandNode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.DOMEventStream.getEvent", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.DOMEventStream.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.PullDom", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.SAX2DOM", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.default_bufsize", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.parse", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.pulldom.parseString", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "-"}, {"name": "xml.dom.registerDOMImplementation", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.dom.html#$", "dispname": "-"}, {"name": "xml.etree.ElementInclude.default_loader", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementInclude.include", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.etree.elementtree.html#module-$", "dispname": "-"}, {"name": "xml.etree.ElementTree.C14NWriterTarget", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Comment", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.append", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.attrib", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.clear", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.extend", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.findall", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.findtext", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.get", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.insert", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.items", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.iter", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.iterfind", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.itertext", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.keys", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.makeelement", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.remove", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.set", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.tag", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.tail", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.Element.text", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree._setroot", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.find", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.findall", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.findtext", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.getroot", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.iter", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.iterfind", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ElementTree.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ParseError", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ParseError.code", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ParseError.position", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.ProcessingInstruction", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.QName", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.SubElement", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.comment", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.data", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.doctype", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.end", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.end_ns", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.pi", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.start", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.TreeBuilder.start_ns", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XML", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLID", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLParser.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLParser.feed", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLPullParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLPullParser.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLPullParser.feed", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.XMLPullParser.read_events", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.canonicalize", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.dump", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.fromstring", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.fromstringlist", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.indent", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.iselement", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.iterparse", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.parse", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.register_namespace", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.tostring", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.etree.ElementTree.tostringlist", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "-"}, {"name": "xml.parsers.expat", "domain": "py", "role": "module", "priority": "0", "uri": "library/pyexpat.html#module-$", "dispname": "-"}, {"name": "xml.parsers.expat.ErrorString", "domain": "py", "role": "function", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.ExpatError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.ExpatError.code", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.ExpatError.lineno", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.ExpatError.offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.ParserCreate", "domain": "py", "role": "function", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.XMLParserType", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors", "domain": "py", "role": "module", "priority": "0", "uri": "library/pyexpat.html#module-$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_ABORTED", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_ASYNC_ENTITY", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_BAD_CHAR_REF", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_BINARY_ENTITY_REF", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_DUPLICATE_ATTRIBUTE", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_ENTITY_DECLARED_IN_PE", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_EXTERNAL_ENTITY_HANDLING", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_FEATURE_REQUIRES_XML_DTD", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_FINISHED", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_INCOMPLETE_PE", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_INCORRECT_ENCODING", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_INVALID_TOKEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_JUNK_AFTER_DOC_ELEMENT", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_MISPLACED_XML_PI", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_NOT_STANDALONE", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_NOT_SUSPENDED", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_NO_MEMORY", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_PARAM_ENTITY_REF", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_PARTIAL_CHAR", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_PUBLICID", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_RECURSIVE_ENTITY_REF", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_SUSPENDED", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_SUSPEND_PE", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_SYNTAX", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_TAG_MISMATCH", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_TEXT_DECL", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNBOUND_PREFIX", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_CDATA_SECTION", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNCLOSED_TOKEN", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNDECLARING_PREFIX", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNDEFINED_ENTITY", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNEXPECTED_STATE", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_UNKNOWN_ENCODING", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.XML_ERROR_XML_DECL", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.codes", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.errors.messages", "domain": "py", "role": "data", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.model", "domain": "py", "role": "module", "priority": "0", "uri": "library/pyexpat.html#module-$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.AttlistDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.CharacterDataHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.CommentHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.CurrentByteIndex", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.CurrentColumnNumber", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.CurrentLineNumber", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.DefaultHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.DefaultHandlerExpand", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ElementDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.EndCdataSectionHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.EndDoctypeDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.EndElementHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.EndNamespaceDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.EntityDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ErrorByteIndex", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ErrorCode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ErrorColumnNumber", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ErrorLineNumber", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ExternalEntityParserCreate", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ExternalEntityRefHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.GetBase", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.GetInputContext", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.NotStandaloneHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.NotationDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.Parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ParseFile", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ProcessingInstructionHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.SetBase", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.SetParamEntityParsing", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.StartCdataSectionHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.StartDoctypeDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.StartElementHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.StartNamespaceDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.UnparsedEntityDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.UseForeignDTD", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.XmlDeclHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.buffer_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.buffer_text", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.buffer_used", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.ordered_attributes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.parsers.expat.xmlparser.specified_attributes", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/pyexpat.html#$", "dispname": "-"}, {"name": "xml.sax", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.sax.html#module-$", "dispname": "-"}, {"name": "xml.sax.SAXException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.SAXException.getException", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.SAXException.getMessage", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.SAXNotRecognizedException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.SAXNotSupportedException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.SAXParseException", "domain": "py", "role": "exception", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.handler", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.sax.handler.html#module-$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.characters", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.endDocument", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.endElement", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.endElementNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.endPrefixMapping", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.ignorableWhitespace", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.processingInstruction", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.setDocumentLocator", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.skippedEntity", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.startDocument", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.startElement", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.startElementNS", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ContentHandler.startPrefixMapping", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.DTDHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.DTDHandler.notationDecl", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.DTDHandler.unparsedEntityDecl", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.EntityResolver", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.EntityResolver.resolveEntity", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ErrorHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ErrorHandler.error", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ErrorHandler.fatalError", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.ErrorHandler.warning", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.LexicalHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.LexicalHandler.comment", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.LexicalHandler.endCDATA", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.LexicalHandler.endDTD", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.LexicalHandler.startCDATA", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.LexicalHandler.startDTD", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.all_features", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.all_properties", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.feature_external_ges", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.feature_external_pes", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.feature_namespace_prefixes", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.feature_namespaces", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.feature_string_interning", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.feature_validation", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.property_declaration_handler", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.property_dom_node", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.property_lexical_handler", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.handler.property_xml_string", "domain": "py", "role": "data", "priority": "1", "uri": "library/xml.sax.handler.html#$", "dispname": "-"}, {"name": "xml.sax.make_parser", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.parse", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.parseString", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.html#$", "dispname": "-"}, {"name": "xml.sax.saxutils", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.sax.utils.html#module-$", "dispname": "-"}, {"name": "xml.sax.saxutils.XMLFilterBase", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.utils.html#$", "dispname": "-"}, {"name": "xml.sax.saxutils.XMLGenerator", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.utils.html#$", "dispname": "-"}, {"name": "xml.sax.saxutils.escape", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.utils.html#$", "dispname": "-"}, {"name": "xml.sax.saxutils.prepare_input_source", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.utils.html#$", "dispname": "-"}, {"name": "xml.sax.saxutils.quoteattr", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.utils.html#$", "dispname": "-"}, {"name": "xml.sax.saxutils.unescape", "domain": "py", "role": "function", "priority": "1", "uri": "library/xml.sax.utils.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader", "domain": "py", "role": "module", "priority": "0", "uri": "library/xml.sax.reader.html#module-$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Attributes.getLength", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Attributes.getNames", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Attributes.getType", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Attributes.getValue", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.AttributesImpl", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.AttributesNS.getNameByQName", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.AttributesNS.getQNameByName", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.AttributesNS.getQNames", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.AttributesNS.getValueByQName", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.AttributesNSImpl", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.IncrementalParser", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.IncrementalParser.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.IncrementalParser.feed", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.IncrementalParser.reset", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.getByteStream", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.getCharacterStream", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.getEncoding", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.getPublicId", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.getSystemId", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.setByteStream", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.setCharacterStream", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.setEncoding", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.setPublicId", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.InputSource.setSystemId", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Locator", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Locator.getColumnNumber", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Locator.getLineNumber", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Locator.getPublicId", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.Locator.getSystemId", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader", "domain": "py", "role": "class", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.getContentHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.getDTDHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.getEntityResolver", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.getErrorHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.getFeature", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.getProperty", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.parse", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setContentHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setDTDHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setEntityResolver", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setErrorHandler", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setFeature", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setLocale", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xml.sax.xmlreader.XMLReader.setProperty", "domain": "py", "role": "method", "priority": "1", "uri": "library/xml.sax.reader.html#$", "dispname": "-"}, {"name": "xmlrpc.client", "domain": "py", "role": "module", "priority": "0", "uri": "library/xmlrpc.client.html#module-$", "dispname": "-"}, {"name": "xmlrpc.client.Binary", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.Binary.data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.Binary.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.Binary.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.DateTime", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.DateTime.decode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.DateTime.encode", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.Fault", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.Fault.faultCode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.Fault.faultString", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.MultiCall", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ProtocolError", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ProtocolError.errcode", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ProtocolError.errmsg", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ProtocolError.headers", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ProtocolError.url", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ServerProxy", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ServerProxy.system.listMethods", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ServerProxy.system.methodHelp", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.ServerProxy.system.methodSignature", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.dumps", "domain": "py", "role": "function", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.client.loads", "domain": "py", "role": "function", "priority": "1", "uri": "library/xmlrpc.client.html#$", "dispname": "-"}, {"name": "xmlrpc.server", "domain": "py", "role": "module", "priority": "0", "uri": "library/xmlrpc.server.html#module-$", "dispname": "-"}, {"name": "xmlrpc.server.CGIXMLRPCRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.CGIXMLRPCRequestHandler.handle_request", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.CGIXMLRPCRequestHandler.register_function", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.CGIXMLRPCRequestHandler.register_instance", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.CGIXMLRPCRequestHandler.register_introspection_functions", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.CGIXMLRPCRequestHandler.register_multicall_functions", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocCGIXMLRPCRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_documentation", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_title", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocXMLRPCRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocXMLRPCServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocXMLRPCServer.set_server_documentation", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocXMLRPCServer.set_server_name", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.DocXMLRPCServer.set_server_title", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCRequestHandler", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCRequestHandler.rpc_paths", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCServer", "domain": "py", "role": "class", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCServer.register_function", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCServer.register_instance", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCServer.register_introspection_functions", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "xmlrpc.server.SimpleXMLRPCServer.register_multicall_functions", "domain": "py", "role": "method", "priority": "1", "uri": "library/xmlrpc.server.html#$", "dispname": "-"}, {"name": "zip", "domain": "py", "role": "function", "priority": "1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "zipapp", "domain": "py", "role": "module", "priority": "0", "uri": "library/zipapp.html#module-$", "dispname": "-"}, {"name": "zipapp.create_archive", "domain": "py", "role": "function", "priority": "1", "uri": "library/zipapp.html#$", "dispname": "-"}, {"name": "zipapp.get_interpreter", "domain": "py", "role": "function", "priority": "1", "uri": "library/zipapp.html#$", "dispname": "-"}, {"name": "zipfile", "domain": "py", "role": "module", "priority": "0", "uri": "library/zipfile.html#module-$", "dispname": "-"}, {"name": "zipfile.BadZipFile", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.BadZipfile", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.LargeZipFile", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path", "domain": "py", "role": "class", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.exists", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.is_dir", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.is_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.iterdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.joinpath", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.name", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.read_bytes", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.Path.read_text", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.PyZipFile", "domain": "py", "role": "class", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.PyZipFile.writepy", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZIP_BZIP2", "domain": "py", "role": "data", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZIP_DEFLATED", "domain": "py", "role": "data", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZIP_LZMA", "domain": "py", "role": "data", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZIP_STORED", "domain": "py", "role": "data", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile", "domain": "py", "role": "class", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.close", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.debug", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.extract", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.extractall", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.getinfo", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.infolist", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.namelist", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.open", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.printdir", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.read", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.setpassword", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.testzip", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.write", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipFile.writestr", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo", "domain": "py", "role": "class", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.CRC", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.comment", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.compress_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.compress_type", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.create_system", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.create_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.date_time", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.external_attr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.extra", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.extract_version", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.file_size", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.filename", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.flag_bits", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.from_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.header_offset", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.internal_attr", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.is_dir", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.reserved", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.ZipInfo.volume", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipfile.is_zipfile", "domain": "py", "role": "function", "priority": "1", "uri": "library/zipfile.html#$", "dispname": "-"}, {"name": "zipimport", "domain": "py", "role": "module", "priority": "0", "uri": "library/zipimport.html#module-$", "dispname": "-"}, {"name": "zipimport.ZipImportError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter", "domain": "py", "role": "class", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.archive", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.create_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.exec_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.find_loader", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.find_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.find_spec", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.get_code", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.get_data", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.get_filename", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.get_source", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.invalidate_caches", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.is_package", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.load_module", "domain": "py", "role": "method", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zipimport.zipimporter.prefix", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zipimport.html#$", "dispname": "-"}, {"name": "zlib", "domain": "py", "role": "module", "priority": "0", "uri": "library/zlib.html#module-$", "dispname": "-"}, {"name": "zlib.Compress.compress", "domain": "py", "role": "method", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Compress.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Compress.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Decompress.copy", "domain": "py", "role": "method", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Decompress.decompress", "domain": "py", "role": "method", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Decompress.eof", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Decompress.flush", "domain": "py", "role": "method", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Decompress.unconsumed_tail", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.Decompress.unused_data", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.ZLIB_RUNTIME_VERSION", "domain": "py", "role": "data", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.ZLIB_VERSION", "domain": "py", "role": "data", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.adler32", "domain": "py", "role": "function", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.compress", "domain": "py", "role": "function", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.compressobj", "domain": "py", "role": "function", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.crc32", "domain": "py", "role": "function", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.decompress", "domain": "py", "role": "function", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.decompressobj", "domain": "py", "role": "function", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zlib.error", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "zoneinfo", "domain": "py", "role": "module", "priority": "0", "uri": "library/zoneinfo.html#module-$", "dispname": "-"}, {"name": "zoneinfo.InvalidTZPathWarning", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.TZPATH", "domain": "py", "role": "data", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.ZoneInfo", "domain": "py", "role": "class", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.ZoneInfo.clear_cache", "domain": "py", "role": "method", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.ZoneInfo.from_file", "domain": "py", "role": "method", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.ZoneInfo.key", "domain": "py", "role": "attribute", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.ZoneInfo.no_cache", "domain": "py", "role": "method", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.ZoneInfoNotFoundError", "domain": "py", "role": "exception", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.available_timezones", "domain": "py", "role": "function", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "zoneinfo.reset_tzpath", "domain": "py", "role": "function", "priority": "1", "uri": "library/zoneinfo.html#$", "dispname": "-"}, {"name": "!", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-0", "dispname": "-"}, {"name": "--check-hash-based-pycs", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption-check-hash-based-pycs", "dispname": "-"}, {"name": "--disable-ipv6", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-disable-ipv6", "dispname": "-"}, {"name": "--disable-test-modules", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-disable-test-modules", "dispname": "-"}, {"name": "--enable-big-digits", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-enable-big-digits", "dispname": "-"}, {"name": "--enable-framework", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-2", "dispname": "-"}, {"name": "--enable-loadable-sqlite-extensions", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-enable-loadable-sqlite-extensions", "dispname": "-"}, {"name": "--enable-optimizations", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-enable-optimizations", "dispname": "-"}, {"name": "--enable-profiling", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-enable-profiling", "dispname": "-"}, {"name": "--enable-shared", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-enable-shared", "dispname": "-"}, {"name": "--enable-universalsdk", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-1", "dispname": "-"}, {"name": "--exec-prefix", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-exec-prefix", "dispname": "-"}, {"name": "--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption-help", "dispname": "-"}, {"name": "--prefix", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-prefix", "dispname": "-"}, {"name": "--version", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption-version", "dispname": "-"}, {"name": "--with-address-sanitizer", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-address-sanitizer", "dispname": "-"}, {"name": "--with-assertions", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-assertions", "dispname": "-"}, {"name": "--with-builtin-hashlib-hashes", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-builtin-hashlib-hashes", "dispname": "-"}, {"name": "--with-computed-gotos", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-computed-gotos", "dispname": "-"}, {"name": "--with-cxx-main", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-0", "dispname": "-"}, {"name": "--with-dbmliborder", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-dbmliborder", "dispname": "-"}, {"name": "--with-dtrace", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-dtrace", "dispname": "-"}, {"name": "--with-ensurepip", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-ensurepip", "dispname": "-"}, {"name": "--with-framework-name", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-framework-name", "dispname": "-"}, {"name": "--with-hash-algorithm", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-hash-algorithm", "dispname": "-"}, {"name": "--with-libc", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-libc", "dispname": "-"}, {"name": "--with-libm", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-libm", "dispname": "-"}, {"name": "--with-libs", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-libs", "dispname": "-"}, {"name": "--with-lto", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-lto", "dispname": "-"}, {"name": "--with-memory-sanitizer", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-memory-sanitizer", "dispname": "-"}, {"name": "--with-openssl", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-openssl", "dispname": "-"}, {"name": "--with-openssl-rpath", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-openssl-rpath", "dispname": "-"}, {"name": "--with-platlibdir", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-platlibdir", "dispname": "-"}, {"name": "--with-pydebug", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-pydebug", "dispname": "-"}, {"name": "--with-readline", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-readline", "dispname": "-"}, {"name": "--with-ssl-default-suites", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-ssl-default-suites", "dispname": "-"}, {"name": "--with-suffix", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-suffix", "dispname": "-"}, {"name": "--with-system-expat", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-system-expat", "dispname": "-"}, {"name": "--with-system-ffi", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-system-ffi", "dispname": "-"}, {"name": "--with-system-libmpdec", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-system-libmpdec", "dispname": "-"}, {"name": "--with-tcltk-includes", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-tcltk-includes", "dispname": "-"}, {"name": "--with-tcltk-libs", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-tcltk-libs", "dispname": "-"}, {"name": "--with-trace-refs", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-trace-refs", "dispname": "-"}, {"name": "--with-tzpath", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-tzpath", "dispname": "-"}, {"name": "--with-undefined-behavior-sanitizer", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-undefined-behavior-sanitizer", "dispname": "-"}, {"name": "--with-universal-archs", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-universal-archs", "dispname": "-"}, {"name": "--with-valgrind", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-valgrind", "dispname": "-"}, {"name": "--with-wheel-pkg-dir", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-with-wheel-pkg-dir", "dispname": "-"}, {"name": "--without-c-locale-coercion", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-without-c-locale-coercion", "dispname": "-"}, {"name": "--without-decimal-contextvar", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-without-decimal-contextvar", "dispname": "-"}, {"name": "--without-doc-strings", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-without-doc-strings", "dispname": "-"}, {"name": "--without-pymalloc", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-without-pymalloc", "dispname": "-"}, {"name": "--without-readline", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-without-readline", "dispname": "-"}, {"name": "--without-static-libpython", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/configure.html#cmdoption-without-static-libpython", "dispname": "-"}, {"name": "-?", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption-0", "dispname": "-"}, {"name": "-B", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-E", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-I", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-J", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-O", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-OO", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-R", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-S", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-V", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-W", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-X", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-b", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-c", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-d", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-i", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-m", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-q", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-s", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-u", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "-v", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption-1", "dispname": "-"}, {"name": "-x", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "using/cmdline.html#cmdoption$", "dispname": "-"}, {"name": "...", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "23acks", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#acks", "dispname": "Acknowledgements"}, {"name": "23section-other", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#section-other", "dispname": "Other Changes and Fixes"}, {"name": "24acks", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.4.html#acks", "dispname": "Acknowledgements"}, {"name": "25interactive", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#interactive", "dispname": "Interactive Interpreter Changes"}, {"name": "25modules", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#modules", "dispname": "New, Improved, and Removed Modules"}, {"name": "26acks", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#acks", "dispname": "Acknowledgements"}, {"name": "2to3", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "2to3-fixers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/2to3.html#to3-fixers", "dispname": "Fixers"}, {"name": "2to3-reference", "domain": "std", "role": "label", "priority": "-1", "uri": "library/2to3.html#to3-reference", "dispname": "2to3 \u2014 Automated Python 2 to 3 code translation"}, {"name": "2to3-using", "domain": "std", "role": "label", "priority": "-1", "uri": "library/2to3.html#to3-using", "dispname": "Using 2to3"}, {"name": "37-platform-support-removals", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#platform-support-removals", "dispname": "Platform Support Removals"}, {"name": "64-bit-access-rights", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#bit-access-rights", "dispname": "64-bit Specific"}, {"name": ">>>", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-0", "dispname": "-"}, {"name": "BASECFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "BASECPPFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "BDFL", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "BEFORE_ASYNC_WITH", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_ADD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_AND", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_FLOOR_DIVIDE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_LSHIFT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_MATRIX_MULTIPLY", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_MODULO", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_MULTIPLY", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_OR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_POWER", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_RSHIFT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_SUBSCR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_SUBTRACT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_TRUE_DIVIDE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BINARY_XOR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BLDSHARED", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "BUILD_CONST_KEY_MAP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BUILD_LIST", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BUILD_MAP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BUILD_SET", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BUILD_SLICE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BUILD_STRING", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "BUILD_TUPLE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CALL_FUNCTION", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CALL_FUNCTION_EX", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CALL_FUNCTION_KW", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CALL_METHOD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CC", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CCSHARED", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CFLAGSFORSHARED", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CFLAGS_ALIASING", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CFLAGS_NODIST", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "COMPARE_OP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CONFIGURE_CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CONFIGURE_CFLAGS_NODIST", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CONFIGURE_CPPFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CONFIGURE_LDFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CONFIGURE_LDFLAGS_NODIST", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CONTAINS_OP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "COPY_DICT_WITHOUT_KEYS", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "CPPFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "CPython", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "CXX", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "DELETE_ATTR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DELETE_DEREF", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DELETE_FAST", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DELETE_GLOBAL", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DELETE_NAME", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DELETE_SUBSCR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DICT_MERGE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DICT_UPDATE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DUP_TOP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "DUP_TOP_TWO", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "EAFP", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "END_ASYNC_FOR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "EXTENDED_ARG", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "EXTRA_CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "FORMAT_VALUE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "FOR_ITER", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GEN_START", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GET_AITER", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GET_ANEXT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GET_AWAITABLE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GET_ITER", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GET_LEN", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GET_YIELD_FROM_ITER", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "GIL", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "HAVE_ARGUMENT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "IDLE", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "IMPORT_FROM", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "IMPORT_NAME", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "IMPORT_STAR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_ADD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_AND", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_FLOOR_DIVIDE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_LSHIFT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_MATRIX_MULTIPLY", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_MODULO", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_MULTIPLY", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_OR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_POWER", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_RSHIFT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_SUBTRACT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_TRUE_DIVIDE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "INPLACE_XOR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "IS_OP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "JUMP_ABSOLUTE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "JUMP_FORWARD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "JUMP_IF_FALSE_OR_POP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "JUMP_IF_NOT_EXC_MATCH", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "JUMP_IF_TRUE_OR_POP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LBYL", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "LDFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "LDFLAGS_NODIST", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "LDSHARED", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "LIBS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "LINKCC", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "LIST_APPEND", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LIST_EXTEND", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LIST_TO_TUPLE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_ASSERTION_ERROR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_ATTR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_BUILD_CLASS", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_CLASSDEREF", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_CLOSURE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_CONST", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_DEREF", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_FAST", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_GLOBAL", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_METHOD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "LOAD_NAME", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MAINCC", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "MAKE_FUNCTION", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MAP_ADD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MATCH_CLASS", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MATCH_KEYS", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MATCH_MAPPING", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MATCH_SEQUENCE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "MRO", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "NOP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "OPT", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PEP", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "POP_BLOCK", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "POP_EXCEPT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "POP_JUMP_IF_FALSE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "POP_JUMP_IF_TRUE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "POP_TOP", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "PRINT_EXPR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "PROFILE_TASK", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PURIFY", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PYTHONASYNCIODEBUG", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONBREAKPOINT", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONCASEOK", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONCOERCECLOCALE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONDEBUG", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONDEVMODE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONDONTWRITEBYTECODE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONDUMPREFS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONEXECUTABLE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONFAULTHANDLER", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONHASHSEED", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONHOME", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONINSPECT", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONINTMAXSTRDIGITS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONIOENCODING", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONLEGACYWINDOWSFSENCODING", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONLEGACYWINDOWSSTDIO", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONMALLOC", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONMALLOCSTATS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONNOUSERSITE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONOPTIMIZE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONPATH", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONPLATLIBDIR", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONPROFILEIMPORTTIME", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONPYCACHEPREFIX", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONSTARTUP", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONTHREADDEBUG", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONTRACEMALLOC", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONTZPATH", "domain": "std", "role": "envvar", "priority": "1", "uri": "library/zoneinfo.html#envvar-$", "dispname": "-"}, {"name": "PYTHONUNBUFFERED", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONUSERBASE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONUTF8", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONVERBOSE", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONWARNDEFAULTENCODING", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PYTHONWARNINGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/cmdline.html#envvar-$", "dispname": "-"}, {"name": "PY_BUILTIN_MODULE_CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_CFLAGS_NODIST", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_CORE_CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_CORE_LDFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_CPPFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_LDFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_LDFLAGS_NODIST", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "PY_STDMODULE_CFLAGS", "domain": "std", "role": "envvar", "priority": "1", "uri": "using/configure.html#envvar-$", "dispname": "-"}, {"name": "Python 3000", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-Python-3000", "dispname": "-"}, {"name": "Pythonic", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "RAISE_VARARGS", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "RERAISE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "RETURN_VALUE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "ROT_FOUR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "ROT_N", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "ROT_THREE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "ROT_TWO", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "SETUP_ANNOTATIONS", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "SETUP_ASYNC_WITH", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "SETUP_FINALLY", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "SETUP_WITH", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "SET_ADD", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "SET_UPDATE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "STORE_ATTR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "STORE_DEREF", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "STORE_FAST", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "STORE_GLOBAL", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "STORE_NAME", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "STORE_SUBSCR", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "UNARY_INVERT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "UNARY_NEGATIVE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "UNARY_NOT", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "UNARY_POSITIVE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "UNPACK_EX", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "UNPACK_SEQUENCE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "WITH_EXCEPT_START", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "YIELD_FROM", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "YIELD_VALUE", "domain": "std", "role": "opcode", "priority": "1", "uri": "library/dis.html#opcode-$", "dispname": "-"}, {"name": "Zen of Python", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-Zen-of-Python", "dispname": "-"}, {"name": "__future__", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "__slots__", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "about", "domain": "std", "role": "doc", "priority": "-1", "uri": "about.html", "dispname": "About these documents"}, {"name": "abstract", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/abstract.html#$", "dispname": "Abstract Objects Layer"}, {"name": "abstract base class", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-abstract-base-class", "dispname": "-"}, {"name": "abstract-basic-auth-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "AbstractBasicAuthHandler Objects"}, {"name": "abstract-digest-auth-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "AbstractDigestAuthHandler Objects"}, {"name": "abstract-grammar", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ast.html#$", "dispname": "Abstract Grammar"}, {"name": "access-rights", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "Access Rights"}, {"name": "acks27", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "Acknowledgements"}, {"name": "advanced-debugging", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Advanced Debugger Support"}, {"name": "alias", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "allocating-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/allocation.html#$", "dispname": "Allocating Objects on the Heap"}, {"name": "allocator-domains", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#id1", "dispname": "-"}, {"name": "allos", "domain": "std", "role": "label", "priority": "-1", "uri": "library/allos.html#$", "dispname": "Generic Operating System Services"}, {"name": "allow_abbrev", "domain": "std", "role": "label", "priority": "-1", "uri": "library/argparse.html#allow-abbrev", "dispname": "-"}, {"name": "and", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Boolean operations"}, {"name": "annassign", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "Annotated assignment statements"}, {"name": "annotation", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "annotations-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/annotations.html#$", "dispname": "Annotations Best Practices"}, {"name": "api-debugging", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Debugging Builds"}, {"name": "api-embedding", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Embedding Python"}, {"name": "api-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Exceptions"}, {"name": "api-includes", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Include Files"}, {"name": "api-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Introduction"}, {"name": "api-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Objects, Types and Reference Counts"}, {"name": "api-refcountdetails", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Reference Count Details"}, {"name": "api-refcounts", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Reference Counts"}, {"name": "api-reference", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/apiref.html#$", "dispname": "API Reference"}, {"name": "api-types", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/intro.html#$", "dispname": "Types"}, {"name": "apiabiversion", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/apiabiversion.html#$", "dispname": "API and ABI Versioning"}, {"name": "applications", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Applications"}, {"name": "apply", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "arbitrary-object-messages", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Using arbitrary objects as messages"}, {"name": "archiving", "domain": "std", "role": "label", "priority": "-1", "uri": "library/archiving.html#$", "dispname": "Data Compression and Archiving"}, {"name": "archiving-operations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "Archiving operations"}, {"name": "arg-parsing", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/arg.html#$", "dispname": "Parsing arguments and building values"}, {"name": "argparse-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/argparse.html#id1", "dispname": "-"}, {"name": "args", "domain": "std", "role": "label", "priority": "-1", "uri": "library/argparse.html#$", "dispname": "Beyond sys.argv"}, {"name": "args", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "argument", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "as", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The with statement"}, {"name": "as-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "AS Patterns"}, {"name": "assert", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The assert statement"}, {"name": "assert-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "asserts", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "assignment", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "Assignment statements"}, {"name": "ast-cli", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ast.html#$", "dispname": "Command-Line Usage"}, {"name": "ast-compiler-flags", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ast.html#$", "dispname": "Compiler Flags"}, {"name": "ast.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-h", "dispname": "-"}, {"name": "ast.--include-attributes", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-a", "dispname": "-"}, {"name": "ast.--indent", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-indent", "dispname": "-"}, {"name": "ast.--mode", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-mode", "dispname": "-"}, {"name": "ast.--no-type-comments", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-no-type-comments", "dispname": "-"}, {"name": "ast.-a", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-a", "dispname": "-"}, {"name": "ast.-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-h", "dispname": "-"}, {"name": "ast.-i", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-i", "dispname": "-"}, {"name": "ast.-m", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/ast.html#cmdoption-ast-m", "dispname": "-"}, {"name": "async", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Coroutines"}, {"name": "async def", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#async-def", "dispname": "Coroutine function definition"}, {"name": "async for", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#async-for", "dispname": "The async for statement"}, {"name": "async with", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#async-with", "dispname": "The async with statement"}, {"name": "async-context-managers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Asynchronous Context Managers"}, {"name": "async-iterators", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Asynchronous Iterators"}, {"name": "async-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Async Object Structures"}, {"name": "asynchat-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asynchat.html#$", "dispname": "asynchat Example"}, {"name": "asynchronous context manager", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-asynchronous-context-manager", "dispname": "-"}, {"name": "asynchronous generator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-asynchronous-generator", "dispname": "-"}, {"name": "asynchronous generator iterator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-asynchronous-generator-iterator", "dispname": "-"}, {"name": "asynchronous iterable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-asynchronous-iterable", "dispname": "-"}, {"name": "asynchronous iterator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-asynchronous-iterator", "dispname": "-"}, {"name": "asynchronous-generator-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Asynchronous generator functions"}, {"name": "asynchronous-generator-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Asynchronous generator-iterator methods"}, {"name": "asyncio-awaitables", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#$", "dispname": "Awaitables"}, {"name": "asyncio-coroutine-not-scheduled", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-dev.html#$", "dispname": "Detect never-awaited coroutines"}, {"name": "asyncio-custom-policies", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-policy.html#$", "dispname": "Custom Policies"}, {"name": "asyncio-debug-mode", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-dev.html#$", "dispname": "Debug Mode"}, {"name": "asyncio-delayed-calls", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#$", "dispname": "Scheduling delayed callbacks"}, {"name": "asyncio-dev", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-dev.html#$", "dispname": "Developing with asyncio"}, {"name": "asyncio-event-loop", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#$", "dispname": "Event Loop"}, {"name": "asyncio-event-loop-implementations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#$", "dispname": "Event Loop Implementations"}, {"name": "asyncio-event-loop-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#$", "dispname": "Event Loop Methods"}, {"name": "asyncio-event-loops", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#$", "dispname": "Event Loop Implementations"}, {"name": "asyncio-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-exceptions.html#$", "dispname": "Exceptions"}, {"name": "asyncio-futures", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-future.html#$", "dispname": "Futures"}, {"name": "asyncio-handle-blocking", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-dev.html#$", "dispname": "Running Blocking Code"}, {"name": "asyncio-logger", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-dev.html#$", "dispname": "Logging"}, {"name": "asyncio-multithreading", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-dev.html#$", "dispname": "Concurrency and Multithreading"}, {"name": "asyncio-pass-keywords", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#$", "dispname": "-"}, {"name": "asyncio-platform-support", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-platforms.html#$", "dispname": "Platform Support"}, {"name": "asyncio-policies", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-policy.html#$", "dispname": "Policies"}, {"name": "asyncio-policy-builtin", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-policy.html#$", "dispname": "-"}, {"name": "asyncio-policy-get-set", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-policy.html#$", "dispname": "Getting and Setting the Policy"}, {"name": "asyncio-policy-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-policy.html#$", "dispname": "Policy Objects"}, {"name": "asyncio-protocol", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "Protocols"}, {"name": "asyncio-queues", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-queue.html#$", "dispname": "Queues"}, {"name": "asyncio-streams", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-stream.html#$", "dispname": "Streams"}, {"name": "asyncio-subprocess", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-subprocess.html#$", "dispname": "Subprocesses"}, {"name": "asyncio-subprocess-protocols", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "Subprocess Protocols"}, {"name": "asyncio-subprocess-threads", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-subprocess.html#$", "dispname": "Subprocess and Threads"}, {"name": "asyncio-subprocess-transports", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "Subprocess Transports"}, {"name": "asyncio-sync", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-sync.html#$", "dispname": "Synchronization Primitives"}, {"name": "asyncio-tcp-echo-client-streams", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-stream.html#$", "dispname": "TCP echo client using streams"}, {"name": "asyncio-tcp-echo-server-streams", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-stream.html#$", "dispname": "TCP echo server using streams"}, {"name": "asyncio-transport", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "Transports"}, {"name": "asyncio-transports-protocols", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "Transports and Protocols"}, {"name": "asyncio-udp-echo-client-protocol", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "UDP Echo Client"}, {"name": "asyncio-udp-echo-server-protocol", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#$", "dispname": "UDP Echo Server"}, {"name": "asyncio-watchers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-policy.html#$", "dispname": "Process Watchers"}, {"name": "asyncio-windows-subprocess", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-platforms.html#$", "dispname": "Subprocess Support on Windows"}, {"name": "asyncio_example_call_later", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#asyncio-example-call-later", "dispname": "Display the current date with call_later()"}, {"name": "asyncio_example_create_connection", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#asyncio-example-create-connection", "dispname": "Connecting Existing Sockets"}, {"name": "asyncio_example_create_connection-streams", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-stream.html#asyncio-example-create-connection-streams", "dispname": "Register an open socket to wait for data using streams"}, {"name": "asyncio_example_create_subprocess_exec", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-subprocess.html#asyncio-example-create-subprocess-exec", "dispname": "-"}, {"name": "asyncio_example_future", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-future.html#asyncio-example-future", "dispname": "-"}, {"name": "asyncio_example_gather", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#asyncio-example-gather", "dispname": "-"}, {"name": "asyncio_example_lowlevel_helloworld", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#asyncio-example-lowlevel-helloworld", "dispname": "Hello World with call_soon()"}, {"name": "asyncio_example_queue_dist", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-queue.html#asyncio-example-queue-dist", "dispname": "-"}, {"name": "asyncio_example_sleep", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#asyncio-example-sleep", "dispname": "-"}, {"name": "asyncio_example_stream", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-stream.html#asyncio-example-stream", "dispname": "-"}, {"name": "asyncio_example_subprocess_proto", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#asyncio-example-subprocess-proto", "dispname": "loop.subprocess_exec() and SubprocessProtocol"}, {"name": "asyncio_example_subprocess_shell", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-subprocess.html#asyncio-example-subprocess-shell", "dispname": "-"}, {"name": "asyncio_example_sync_event", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-sync.html#asyncio-example-sync-event", "dispname": "-"}, {"name": "asyncio_example_task_cancel", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#asyncio-example-task-cancel", "dispname": "-"}, {"name": "asyncio_example_tcp_echo_client_protocol", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#asyncio-example-tcp-echo-client-protocol", "dispname": "TCP Echo Client"}, {"name": "asyncio_example_tcp_echo_server_protocol", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-protocol.html#asyncio-example-tcp-echo-server-protocol", "dispname": "TCP Echo Server"}, {"name": "asyncio_example_unix_signals", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#asyncio-example-unix-signals", "dispname": "Set signal handlers for SIGINT and SIGTERM"}, {"name": "asyncio_example_wait_coroutine", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#asyncio-example-wait-coroutine", "dispname": "-"}, {"name": "asyncio_example_waitfor", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#asyncio-example-waitfor", "dispname": "-"}, {"name": "asyncio_example_watch_fd", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-eventloop.html#asyncio-example-watch-fd", "dispname": "Watch a file descriptor for read events"}, {"name": "asyncio_generator_based_coro", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#asyncio-generator-based-coro", "dispname": "Generator-based Coroutines"}, {"name": "asyncore-example-1", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncore.html#$", "dispname": "asyncore Example basic HTTP client"}, {"name": "asyncore-example-2", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncore.html#$", "dispname": "asyncore Example basic echo server"}, {"name": "atexit-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/atexit.html#$", "dispname": "atexit Example"}, {"name": "atom-identifiers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Identifiers (Names)"}, {"name": "atom-literals", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Literals"}, {"name": "atoms", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Atoms"}, {"name": "attr-target-note", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "-"}, {"name": "attribute", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "attribute-access", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Customizing attribute access"}, {"name": "attribute-references", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Attribute references"}, {"name": "attributes-ns-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.reader.html#$", "dispname": "The AttributesNS Interface"}, {"name": "attributes-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.reader.html#$", "dispname": "The Attributes Interface"}, {"name": "au-read-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sunau.html#$", "dispname": "AU_read Objects"}, {"name": "au-write-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sunau.html#$", "dispname": "AU_write Objects"}, {"name": "audit-events", "domain": "std", "role": "label", "priority": "-1", "uri": "library/audit_events.html#$", "dispname": "-"}, {"name": "auditing", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "augassign", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "Augmented assignment statements"}, {"name": "auto-speccing", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "Autospeccing"}, {"name": "availability", "domain": "std", "role": "label", "priority": "-1", "uri": "library/intro.html#$", "dispname": "Notes on availability"}, {"name": "await", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Await expression"}, {"name": "awaitable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "backtoexample", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Back to the Example"}, {"name": "base-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "BaseHandler Objects"}, {"name": "base-rotating-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "BaseRotatingHandler"}, {"name": "base64-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/base64.html#$", "dispname": "Security Considerations"}, {"name": "basestring", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "binary", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Binary arithmetic operations"}, {"name": "binary file", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-binary-file", "dispname": "-"}, {"name": "binary-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.client.html#$", "dispname": "Binary Objects"}, {"name": "binary-transforms", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Binary Transforms"}, {"name": "binaryseq", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Binary Sequence Types \u2014 bytes, bytearray, memoryview"}, {"name": "binaryservices", "domain": "std", "role": "label", "priority": "-1", "uri": "library/binary.html#$", "dispname": "Binary Data Services"}, {"name": "bind_names", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#bind-names", "dispname": "Binding of names"}, {"name": "bindings-and-events", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tkinter.html#$", "dispname": "Bindings and Events"}, {"name": "binhex-notes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/binhex.html#$", "dispname": "Notes"}, {"name": "bisect-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/bisect.html#$", "dispname": "-"}, {"name": "bitstring-ops", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Bitwise Operations on Integer Types"}, {"name": "bitwise", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Binary bitwise operations"}, {"name": "blank-lines", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Blank lines"}, {"name": "blocking-handlers", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Dealing with handlers that block"}, {"name": "bltin-boolean-values", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Boolean Values"}, {"name": "bltin-code-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Code Objects"}, {"name": "bltin-ellipsis-object", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "The Ellipsis Object"}, {"name": "bltin-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/exceptions.html#$", "dispname": "Built-in Exceptions"}, {"name": "bltin-notimplemented-object", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "The NotImplemented Object"}, {"name": "bltin-null-object", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "The Null Object"}, {"name": "bltin-type-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Type Objects"}, {"name": "bltin-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Built-in Types"}, {"name": "boolean", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Boolean Operations \u2014 and, or, not"}, {"name": "booleans", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Boolean operations"}, {"name": "boolobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/bool.html#$", "dispname": "Boolean Objects"}, {"name": "borrowed reference", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-borrowed-reference", "dispname": "-"}, {"name": "bpo-36085-whatsnew", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.8.html#$", "dispname": "-"}, {"name": "bpo-36817-whatsnew", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.8.html#$", "dispname": "f-strings support = for self-documenting expressions and debugging"}, {"name": "break", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The break statement"}, {"name": "break", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "browser-controllers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/webbrowser.html#$", "dispname": "Browser Controller Objects"}, {"name": "bsd0", "domain": "std", "role": "label", "priority": "-1", "uri": "license.html#$", "dispname": "ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON 3.10.13 DOCUMENTATION"}, {"name": "buffer", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "buffer-request-types", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/buffer.html#$", "dispname": "Buffer request types"}, {"name": "buffer-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Buffer Object Structures"}, {"name": "buffer-structure", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/buffer.html#$", "dispname": "Buffer structure"}, {"name": "buffered-logging", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Buffering logging messages and outputting them conditionally"}, {"name": "buffered-smtp", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Sending logging messages to email, with buffering"}, {"name": "bufferobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/buffer.html#$", "dispname": "Buffer Protocol"}, {"name": "bugs", "domain": "std", "role": "doc", "priority": "-1", "uri": "bugs.html", "dispname": "Dealing with Bugs"}, {"name": "build-api", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "Build and C API Changes"}, {"name": "building", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/building.html#$", "dispname": "Building C and C++ Extensions"}, {"name": "building-on-windows", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/windows.html#$", "dispname": "Building C and C++ Extensions on Windows"}, {"name": "building-python-on-unix", "domain": "std", "role": "label", "priority": "-1", "uri": "using/unix.html#$", "dispname": "Building Python"}, {"name": "buildvalue", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Building Arbitrary Values"}, {"name": "built-dist", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/builtdist.html#$", "dispname": "Creating Built Distributions"}, {"name": "built-in-consts", "domain": "std", "role": "label", "priority": "-1", "uri": "library/constants.html#$", "dispname": "Built-in Constants"}, {"name": "built-in-funcs", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "Built-in Functions"}, {"name": "builtincodecs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/unicode.html#$", "dispname": "Built-in Codecs"}, {"name": "bytearrayobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/bytearray.html#$", "dispname": "Byte Array Objects"}, {"name": "bytecode", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "bytecodes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/dis.html#$", "dispname": "Python Bytecode Instructions"}, {"name": "bytes-formatting", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "printf-style Bytes Formatting"}, {"name": "bytes-like object", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-bytes-like-object", "dispname": "-"}, {"name": "bytes-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Bytes and Bytearray Operations"}, {"name": "bytesobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/bytes.html#$", "dispname": "Bytes Objects"}, {"name": "bz2-usage-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/bz2.html#$", "dispname": "Examples of usage"}, {"name": "c-api-index", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/index.html#$", "dispname": "Python/C API Reference Manual"}, {"name": "c-api/abstract", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/abstract.html", "dispname": "Abstract Objects Layer"}, {"name": "c-api/allocation", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/allocation.html", "dispname": "Allocating Objects on the Heap"}, {"name": "c-api/apiabiversion", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/apiabiversion.html", "dispname": "API and ABI Versioning"}, {"name": "c-api/arg", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/arg.html", "dispname": "Parsing arguments and building values"}, {"name": "c-api/bool", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/bool.html", "dispname": "Boolean Objects"}, {"name": "c-api/buffer", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/buffer.html", "dispname": "Buffer Protocol"}, {"name": "c-api/bytearray", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/bytearray.html", "dispname": "Byte Array Objects"}, {"name": "c-api/bytes", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/bytes.html", "dispname": "Bytes Objects"}, {"name": "c-api/call", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/call.html", "dispname": "Call Protocol"}, {"name": "c-api/capsule", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/capsule.html", "dispname": "Capsules"}, {"name": "c-api/cell", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/cell.html", "dispname": "Cell Objects"}, {"name": "c-api/code", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/code.html", "dispname": "Code Objects"}, {"name": "c-api/codec", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/codec.html", "dispname": "Codec registry and support functions"}, {"name": "c-api/complex", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/complex.html", "dispname": "Complex Number Objects"}, {"name": "c-api/concrete", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/concrete.html", "dispname": "Concrete Objects Layer"}, {"name": "c-api/contextvars", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/contextvars.html", "dispname": "Context Variables Objects"}, {"name": "c-api/conversion", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/conversion.html", "dispname": "String conversion and formatting"}, {"name": "c-api/coro", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/coro.html", "dispname": "Coroutine Objects"}, {"name": "c-api/datetime", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/datetime.html", "dispname": "DateTime Objects"}, {"name": "c-api/descriptor", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/descriptor.html", "dispname": "Descriptor Objects"}, {"name": "c-api/dict", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/dict.html", "dispname": "Dictionary Objects"}, {"name": "c-api/exceptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/exceptions.html", "dispname": "Exception Handling"}, {"name": "c-api/file", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/file.html", "dispname": "File Objects"}, {"name": "c-api/float", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/float.html", "dispname": "Floating Point Objects"}, {"name": "c-api/function", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/function.html", "dispname": "Function Objects"}, {"name": "c-api/gcsupport", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/gcsupport.html", "dispname": "Supporting Cyclic Garbage Collection"}, {"name": "c-api/gen", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/gen.html", "dispname": "Generator Objects"}, {"name": "c-api/import", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/import.html", "dispname": "Importing Modules"}, {"name": "c-api/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/index.html", "dispname": "Python/C API Reference Manual"}, {"name": "c-api/init", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/init.html", "dispname": "Initialization, Finalization, and Threads"}, {"name": "c-api/init_config", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/init_config.html", "dispname": "Python Initialization Configuration"}, {"name": "c-api/intro", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/intro.html", "dispname": "Introduction"}, {"name": "c-api/iter", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/iter.html", "dispname": "Iterator Protocol"}, {"name": "c-api/iterator", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/iterator.html", "dispname": "Iterator Objects"}, {"name": "c-api/list", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/list.html", "dispname": "List Objects"}, {"name": "c-api/long", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/long.html", "dispname": "Integer Objects"}, {"name": "c-api/mapping", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/mapping.html", "dispname": "Mapping Protocol"}, {"name": "c-api/marshal", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/marshal.html", "dispname": "Data marshalling support"}, {"name": "c-api/memory", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/memory.html", "dispname": "Memory Management"}, {"name": "c-api/memoryview", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/memoryview.html", "dispname": "MemoryView objects"}, {"name": "c-api/method", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/method.html", "dispname": "Instance Method Objects"}, {"name": "c-api/module", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/module.html", "dispname": "Module Objects"}, {"name": "c-api/none", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/none.html", "dispname": "The None Object"}, {"name": "c-api/number", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/number.html", "dispname": "Number Protocol"}, {"name": "c-api/objbuffer", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/objbuffer.html", "dispname": "Old Buffer Protocol"}, {"name": "c-api/object", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/object.html", "dispname": "Object Protocol"}, {"name": "c-api/objimpl", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/objimpl.html", "dispname": "Object Implementation Support"}, {"name": "c-api/refcounting", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/refcounting.html", "dispname": "Reference Counting"}, {"name": "c-api/reflection", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/reflection.html", "dispname": "Reflection"}, {"name": "c-api/sequence", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/sequence.html", "dispname": "Sequence Protocol"}, {"name": "c-api/set", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/set.html", "dispname": "Set Objects"}, {"name": "c-api/slice", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/slice.html", "dispname": "Slice Objects"}, {"name": "c-api/stable", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/stable.html", "dispname": "C API Stability"}, {"name": "c-api/structures", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/structures.html", "dispname": "Common Object Structures"}, {"name": "c-api/sys", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/sys.html", "dispname": "Operating System Utilities"}, {"name": "c-api/tuple", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/tuple.html", "dispname": "Tuple Objects"}, {"name": "c-api/type", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/type.html", "dispname": "Type Objects"}, {"name": "c-api/typehints", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/typehints.html", "dispname": "Objects for Type Hinting"}, {"name": "c-api/typeobj", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/typeobj.html", "dispname": "Type Objects"}, {"name": "c-api/unicode", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/unicode.html", "dispname": "Unicode Objects and Codecs"}, {"name": "c-api/utilities", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/utilities.html", "dispname": "Utilities"}, {"name": "c-api/veryhigh", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/veryhigh.html", "dispname": "The Very High Level Layer"}, {"name": "c-api/weakref", "domain": "std", "role": "doc", "priority": "-1", "uri": "c-api/weakref.html", "dispname": "Weak Reference Objects"}, {"name": "c-arg-borrowed-buffer", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/arg.html#$", "dispname": "-"}, {"name": "c-preinit", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init_config.html#$", "dispname": "Preinitialize Python with PyPreConfig"}, {"name": "c-wrapper-software", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/extending.html#$", "dispname": "Writing C is hard; are there any alternatives?"}, {"name": "c99", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sys.html#$", "dispname": "-"}, {"name": "cab", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "CAB Objects"}, {"name": "cacheftp-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "CacheFTPHandler Objects"}, {"name": "call", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/call.html#$", "dispname": "Call Protocol"}, {"name": "call-function-trio", "domain": "std", "role": "label", "priority": "-1", "uri": "library/subprocess.html#$", "dispname": "Older high-level API"}, {"name": "callable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "callable-types", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Emulating callable objects"}, {"name": "callback", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "callingpython", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Calling Python Functions from C"}, {"name": "calls", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Calls"}, {"name": "calls-as-tuples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "-"}, {"name": "calltips", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Calltips"}, {"name": "capi-call", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/call.html#$", "dispname": "Object Calling API"}, {"name": "capsules", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/capsule.html#$", "dispname": "Capsules"}, {"name": "capture-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Capture Patterns"}, {"name": "cell-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/cell.html#$", "dispname": "Cell Objects"}, {"name": "cgi-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "library/cgi.html#$", "dispname": "-"}, {"name": "cgi-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/cgi.html#$", "dispname": "Caring about security"}, {"name": "changelog", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/changelog.html#$", "dispname": "Changelog"}, {"name": "changes-python-api", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "Changes in the Python API"}, {"name": "check-module", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "-"}, {"name": "class", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Class definitions"}, {"name": "class", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "class variable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-class-variable", "dispname": "-"}, {"name": "class-customization", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Customizing class creation"}, {"name": "class-object-creation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Creating the class object"}, {"name": "class-pattern-matching", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Customizing positional arguments in class pattern matching"}, {"name": "class-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Class Patterns"}, {"name": "classgetitem-versus-getitem", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "__class_getitem__ versus __getitem__"}, {"name": "clear", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "cmd-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/cmd.html#$", "dispname": "Cmd Example"}, {"name": "cmd-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/cmd.html#$", "dispname": "Cmd Objects"}, {"name": "cmdarg-dash", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "-"}, {"name": "cmdarg-script", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "-"}, {"name": "code-context", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Code Context"}, {"name": "codec-base-classes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Codec Base Classes"}, {"name": "codec-handling-improvements", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "Improvements to Codec Handling"}, {"name": "codec-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Stateless Encoding and Decoding"}, {"name": "codec-registry", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/codec.html#$", "dispname": "Codec registry and support functions"}, {"name": "codeobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/code.html#$", "dispname": "-"}, {"name": "coercion", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "collections-abstract-base-classes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/collections.abc.html#$", "dispname": "Collections Abstract Base Classes"}, {"name": "commands", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "comments", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Comments"}, {"name": "common-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/structures.html#$", "dispname": "Common Object Structures"}, {"name": "comparison-with-json", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Comparison with json"}, {"name": "comparisons", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Comparisons"}, {"name": "compat32_message", "domain": "std", "role": "label", "priority": "-1", "uri": "library/email.compat32-message.html#compat32-message", "dispname": "email.message.Message: Representing an email message using the compat32 API"}, {"name": "compilation", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Compilation and Linkage"}, {"name": "compileall.--hardlink-dupes", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-hardlink-dupes", "dispname": "-"}, {"name": "compileall.--invalidation-mode", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-invalidation-mode", "dispname": "-"}, {"name": "compileall.-b", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-b", "dispname": "-"}, {"name": "compileall.-d", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-d", "dispname": "-"}, {"name": "compileall.-e", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-e", "dispname": "-"}, {"name": "compileall.-f", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-f", "dispname": "-"}, {"name": "compileall.-i", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-i", "dispname": "-"}, {"name": "compileall.-j", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-j", "dispname": "-"}, {"name": "compileall.-l", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-l", "dispname": "-"}, {"name": "compileall.-o", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-o", "dispname": "-"}, {"name": "compileall.-p", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-p", "dispname": "-"}, {"name": "compileall.-q", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-q", "dispname": "-"}, {"name": "compileall.-r", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-r", "dispname": "-"}, {"name": "compileall.-s", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-s", "dispname": "-"}, {"name": "compileall.-x", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-x", "dispname": "-"}, {"name": "compileall.directory", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-arg-directory", "dispname": "-"}, {"name": "compileall.file", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/compileall.html#cmdoption-compileall-arg-file", "dispname": "-"}, {"name": "compiling", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Compiling and Linking under Unix-like systems"}, {"name": "completer-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/rlcompleter.html#$", "dispname": "Completer Objects"}, {"name": "completions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Completions"}, {"name": "complex number", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-complex-number", "dispname": "-"}, {"name": "complexobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/complex.html#$", "dispname": "Complex Number Objects"}, {"name": "compound", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Compound statements"}, {"name": "compoundshapes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/turtle.html#$", "dispname": "Compound shapes"}, {"name": "comprehensions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Displays for lists, sets and dictionaries"}, {"name": "concrete", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/concrete.html#$", "dispname": "Concrete Objects Layer"}, {"name": "concrete-paths", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pathlib.html#$", "dispname": "Concrete paths"}, {"name": "concurrency", "domain": "std", "role": "label", "priority": "-1", "uri": "library/concurrency.html#$", "dispname": "Concurrent Execution"}, {"name": "condition", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "condition-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Condition Objects"}, {"name": "configparser-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/configparser.html#$", "dispname": "ConfigParser Objects"}, {"name": "configure-options", "domain": "std", "role": "label", "priority": "-1", "uri": "using/configure.html#$", "dispname": "Configure Options"}, {"name": "console-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/code.html#$", "dispname": "Interactive Console Objects"}, {"name": "constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "Constants"}, {"name": "content-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.handler.html#$", "dispname": "ContentHandler Objects"}, {"name": "contents", "domain": "std", "role": "doc", "priority": "-1", "uri": "contents.html", "dispname": "Python Documentation contents"}, {"name": "contents-of-module-re", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "Module Contents"}, {"name": "context manager", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-context-manager", "dispname": "-"}, {"name": "context variable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-context-variable", "dispname": "-"}, {"name": "context-info", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Adding contextual information to your logging output"}, {"name": "context-manager", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Using a context manager for selective logging"}, {"name": "context-managers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "With Statement Context Managers"}, {"name": "contextlibmod", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "The contextlib module"}, {"name": "contextvarsobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/contextvars.html#$", "dispname": "Context Variables Objects"}, {"name": "contextvarsobjects_pointertype_change", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/contextvars.html#contextvarsobjects-pointertype-change", "dispname": "-"}, {"name": "contiguous", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "continue", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The continue statement"}, {"name": "continue", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "contributing-to-python", "domain": "std", "role": "label", "priority": "-1", "uri": "bugs.html#$", "dispname": "Getting started contributing to Python yourself"}, {"name": "conversions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Arithmetic conversions"}, {"name": "converting-argument-sequence", "domain": "std", "role": "label", "priority": "-1", "uri": "library/subprocess.html#$", "dispname": "Converting an argument sequence to a string on Windows"}, {"name": "cookbook-ref-links", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Other resources"}, {"name": "cookbook-rotator-namer", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Using a rotator and namer to customize log rotation processing"}, {"name": "cookie-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookies.html#$", "dispname": "Example"}, {"name": "cookie-jar-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookiejar.html#$", "dispname": "CookieJar and FileCookieJar Objects"}, {"name": "cookie-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookies.html#$", "dispname": "Cookie Objects"}, {"name": "cookie-policy-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookiejar.html#$", "dispname": "CookiePolicy Objects"}, {"name": "copyright", "domain": "std", "role": "doc", "priority": "-1", "uri": "copyright.html", "dispname": "Copyright"}, {"name": "coro-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/coro.html#$", "dispname": "Coroutine Objects"}, {"name": "coroutine", "domain": "std", "role": "label", "priority": "-1", "uri": "library/asyncio-task.html#$", "dispname": "Coroutines"}, {"name": "coroutine", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "coroutine function", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-coroutine-function", "dispname": "-"}, {"name": "coroutine-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Coroutine Objects"}, {"name": "countingrefs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/refcounting.html#$", "dispname": "Reference Counting"}, {"name": "cplusplus", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Writing Extensions in C++"}, {"name": "cporting-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/cporting.html#$", "dispname": "Porting Extension Modules to Python 3"}, {"name": "creating-rpms", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/builtdist.html#$", "dispname": "Creating RPM packages"}, {"name": "cross-compile-windows", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/builtdist.html#$", "dispname": "Cross-compiling on Windows"}, {"name": "crypto", "domain": "std", "role": "label", "priority": "-1", "uri": "library/crypto.html#$", "dispname": "Cryptographic Services"}, {"name": "csv-contents", "domain": "std", "role": "label", "priority": "-1", "uri": "library/csv.html#$", "dispname": "Module Contents"}, {"name": "csv-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/csv.html#$", "dispname": "Examples"}, {"name": "csv-fmt-params", "domain": "std", "role": "label", "priority": "-1", "uri": "library/csv.html#$", "dispname": "Dialects and Formatting Parameters"}, {"name": "ctypes-accessing-functions-from-loaded-dlls", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Accessing functions from loaded dlls"}, {"name": "ctypes-accessing-values-exported-from-dlls", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Accessing values exported from dlls"}, {"name": "ctypes-arrays", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Arrays"}, {"name": "ctypes-arrays-pointers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Arrays and pointers"}, {"name": "ctypes-bit-fields-in-structures-unions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Bit fields in structures and unions"}, {"name": "ctypes-callback-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Callback functions"}, {"name": "ctypes-calling-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Calling functions"}, {"name": "ctypes-calling-functions-continued", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Calling functions, continued"}, {"name": "ctypes-calling-functions-with-own-custom-data-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Calling functions with your own custom data types"}, {"name": "ctypes-calling-variadic-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Calling variadic functions"}, {"name": "ctypes-ctypes-reference", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "ctypes reference"}, {"name": "ctypes-ctypes-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "ctypes tutorial"}, {"name": "ctypes-data-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Data types"}, {"name": "ctypes-finding-shared-libraries", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Finding shared libraries"}, {"name": "ctypes-foreign-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Foreign functions"}, {"name": "ctypes-function-prototypes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Function prototypes"}, {"name": "ctypes-fundamental-data-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Fundamental data types"}, {"name": "ctypes-fundamental-data-types-2", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Fundamental data types"}, {"name": "ctypes-incomplete-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Incomplete Types"}, {"name": "ctypes-loading-dynamic-link-libraries", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Loading dynamic link libraries"}, {"name": "ctypes-loading-shared-libraries", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Loading shared libraries"}, {"name": "ctypes-passing-pointers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Passing pointers (or: passing parameters by reference)"}, {"name": "ctypes-pointers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Pointers"}, {"name": "ctypes-return-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Return types"}, {"name": "ctypes-specifying-required-argument-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Specifying the required argument types (function prototypes)"}, {"name": "ctypes-structured-data-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Structured data types"}, {"name": "ctypes-structures-unions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Structures and unions"}, {"name": "ctypes-structureunion-alignment-byte-order", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "-"}, {"name": "ctypes-surprises", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Surprises"}, {"name": "ctypes-type-conversions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Type conversions"}, {"name": "ctypes-utility-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Utility functions"}, {"name": "ctypes-variable-sized-data-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ctypes.html#$", "dispname": "Variable-sized data types"}, {"name": "curses-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/curses.html#$", "dispname": "Functions"}, {"name": "curses-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/curses.html#$", "dispname": "Curses Programming with Python"}, {"name": "curses-panel-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/curses.panel.html#$", "dispname": "Panel Objects"}, {"name": "curses-textpad-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/curses.html#$", "dispname": "Textbox objects"}, {"name": "curses-window-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/curses.html#$", "dispname": "Window Objects"}, {"name": "cursespanel-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/curses.panel.html#$", "dispname": "Functions"}, {"name": "custom-format-exception", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Customized exception formatting"}, {"name": "custom-handlers", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Customizing handlers with dictConfig()"}, {"name": "custom-level-handling", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Custom handling of levels"}, {"name": "custom-levels", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Custom Levels"}, {"name": "custom-logrecord", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Customizing LogRecord"}, {"name": "custominterp", "domain": "std", "role": "label", "priority": "-1", "uri": "library/custominterp.html#$", "dispname": "Custom Python Interpreters"}, {"name": "customization", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Basic customization"}, {"name": "customize-memory-allocators", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Customize Memory Allocators"}, {"name": "data-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "DataHandler Objects"}, {"name": "database-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Database Objects"}, {"name": "datagram-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "DatagramHandler"}, {"name": "datamodel", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Data model"}, {"name": "datamodel-note-slots", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Notes on using __slots__"}, {"name": "datatypes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datatypes.html#$", "dispname": "Data Types"}, {"name": "datetime-date", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "date Objects"}, {"name": "datetime-datetime", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "datetime Objects"}, {"name": "datetime-naive-aware", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "Aware and Naive Objects"}, {"name": "datetime-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.client.html#$", "dispname": "DateTime Objects"}, {"name": "datetime-time", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "time Objects"}, {"name": "datetime-timedelta", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "timedelta Objects"}, {"name": "datetime-timezone", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "timezone Objects"}, {"name": "datetime-tzinfo", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "tzinfo Objects"}, {"name": "datetimeobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/datetime.html#$", "dispname": "DateTime Objects"}, {"name": "debug", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "debug-build", "domain": "std", "role": "label", "priority": "-1", "uri": "using/configure.html#$", "dispname": "Python Debug Build"}, {"name": "debug-setup-script", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Debugging the setup script"}, {"name": "debugger", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pdb.html#$", "dispname": "pdb \u2014 The Python Debugger"}, {"name": "debugger-aliases", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pdb.html#$", "dispname": "-"}, {"name": "debugger-commands", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pdb.html#$", "dispname": "Debugger Commands"}, {"name": "decimal-context", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Context objects"}, {"name": "decimal-decimal", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Decimal objects"}, {"name": "decimal-faq", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Decimal FAQ"}, {"name": "decimal-notes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Floating Point Notes"}, {"name": "decimal-recipes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Recipes"}, {"name": "decimal-rounding-modes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Constants"}, {"name": "decimal-signals", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Signals"}, {"name": "decimal-threads", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Working with threads"}, {"name": "decimal-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#$", "dispname": "Quick-start Tutorial"}, {"name": "decompress-wbits", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zlib.html#$", "dispname": "-"}, {"name": "decorator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "def", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Function definitions"}, {"name": "default-cookie-policy-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookiejar.html#$", "dispname": "DefaultCookiePolicy Objects"}, {"name": "default-memory-allocators", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Default Memory Allocators"}, {"name": "default-warning-filter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Default Warning Filter"}, {"name": "default_values", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/clinic.html#default-values", "dispname": "Parameter default values"}, {"name": "defining-new-types", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/newtypes_tutorial.html#$", "dispname": "Defining Extension Types: Tutorial"}, {"name": "defusedxml-package", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.html#$", "dispname": "The defusedxml Package"}, {"name": "del", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The del statement"}, {"name": "deleting-attributes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "Deleting Attributes"}, {"name": "delimiters", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Delimiters"}, {"name": "deprecated-3.4", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#deprecated-3-4", "dispname": "Deprecated"}, {"name": "deprecated-aliases", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Deprecated aliases"}, {"name": "describing-extensions", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Describing extension modules"}, {"name": "describing-warning-filters", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Describing Warning Filters"}, {"name": "descriptor", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "descriptor-invocation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Invoking Descriptors"}, {"name": "descriptor-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/descriptor.html#$", "dispname": "Descriptor Objects"}, {"name": "descriptorhowto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/descriptor.html#$", "dispname": "Descriptor HowTo Guide"}, {"name": "descriptors", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Implementing Descriptors"}, {"name": "deterministic-profiling", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "What Is Deterministic Profiling?"}, {"name": "development", "domain": "std", "role": "label", "priority": "-1", "uri": "library/development.html#$", "dispname": "Development Tools"}, {"name": "devmode", "domain": "std", "role": "label", "priority": "-1", "uri": "library/devmode.html#$", "dispname": "Python Development Mode"}, {"name": "devpoll-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/select.html#$", "dispname": "/dev/poll Polling Objects"}, {"name": "dict", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Dictionary displays"}, {"name": "dict", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "dict-views", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Dictionary view objects"}, {"name": "dictionary", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "dictionary comprehension", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-dictionary-comprehension", "dispname": "-"}, {"name": "dictionary view", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-dictionary-view", "dispname": "-"}, {"name": "dictobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/dict.html#$", "dispname": "Dictionary Objects"}, {"name": "differ-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/difflib.html#$", "dispname": "Differ Example"}, {"name": "differ-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/difflib.html#$", "dispname": "Differ Objects"}, {"name": "difflib-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "library/difflib.html#$", "dispname": "A command-line interface to difflib"}, {"name": "dir_fd", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#dir-fd", "dispname": "-"}, {"name": "dircmp-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/filecmp.html#$", "dispname": "The dircmp class"}, {"name": "disable", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "display", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "distinct", "domain": "std", "role": "label", "priority": "-1", "uri": "library/typing.html#$", "dispname": "NewType"}, {"name": "distributing", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/building.html#$", "dispname": "Distributing your extension modules"}, {"name": "distributing-index", "domain": "std", "role": "label", "priority": "-1", "uri": "distributing/index.html#$", "dispname": "Distributing Python Modules"}, {"name": "distributing/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "distributing/index.html", "dispname": "Distributing Python Modules"}, {"name": "distributions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Distributions"}, {"name": "distutils-additional-files", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Installing Additional Files"}, {"name": "distutils-build-ext-inplace", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/configfile.html#$", "dispname": "-"}, {"name": "distutils-concepts", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/introduction.html#$", "dispname": "Concepts & Terminology"}, {"name": "distutils-deprecated", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "distutils"}, {"name": "distutils-index", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/index.html#$", "dispname": "Distributing Python Modules (Legacy version)"}, {"name": "distutils-installing-package-data", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Installing Package Data"}, {"name": "distutils-installing-scripts", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Installing Scripts"}, {"name": "distutils-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/introduction.html#$", "dispname": "An Introduction to Distutils"}, {"name": "distutils-simple-example", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/introduction.html#$", "dispname": "A Simple Example"}, {"name": "distutils-term", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/introduction.html#$", "dispname": "Distutils-specific terminology"}, {"name": "distutils/_setuptools_disclaimer", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/_setuptools_disclaimer.html", "dispname": ""}, {"name": "distutils/apiref", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/apiref.html", "dispname": "API Reference"}, {"name": "distutils/builtdist", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/builtdist.html", "dispname": "Creating Built Distributions"}, {"name": "distutils/commandref", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/commandref.html", "dispname": "Command Reference"}, {"name": "distutils/configfile", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/configfile.html", "dispname": "Writing the Setup Configuration File"}, {"name": "distutils/examples", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/examples.html", "dispname": "Distutils Examples"}, {"name": "distutils/extending", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/extending.html", "dispname": "Extending Distutils"}, {"name": "distutils/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/index.html", "dispname": "Distributing Python Modules (Legacy version)"}, {"name": "distutils/introduction", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/introduction.html", "dispname": "An Introduction to Distutils"}, {"name": "distutils/packageindex", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/packageindex.html", "dispname": "The Python Package Index (PyPI)"}, {"name": "distutils/setupscript", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/setupscript.html", "dispname": "Writing the Setup Script"}, {"name": "distutils/sourcedist", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/sourcedist.html", "dispname": "Creating a Source Distribution"}, {"name": "distutils/uploading", "domain": "std", "role": "doc", "priority": "-1", "uri": "distutils/uploading.html", "dispname": "Uploading Packages to the Package Index"}, {"name": "distutils_examples", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/examples.html#distutils-examples", "dispname": "Distutils Examples"}, {"name": "dnt-basics", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/newtypes_tutorial.html#$", "dispname": "The Basics"}, {"name": "dnt-type-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/newtypes.html#$", "dispname": "-"}, {"name": "doc-xmlrpc-servers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.server.html#$", "dispname": "DocXMLRPCServer Objects"}, {"name": "docstring", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "doctest-advanced-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Advanced API"}, {"name": "doctest-basic-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Basic API"}, {"name": "doctest-debugging", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Debugging"}, {"name": "doctest-directives", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Directives"}, {"name": "doctest-doctest", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "DocTest Objects"}, {"name": "doctest-doctestfinder", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "DocTestFinder objects"}, {"name": "doctest-doctestparser", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "DocTestParser objects"}, {"name": "doctest-doctestrunner", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "DocTestRunner objects"}, {"name": "doctest-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Example Objects"}, {"name": "doctest-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "What About Exceptions?"}, {"name": "doctest-execution-context", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "What\u2019s the Execution Context?"}, {"name": "doctest-finding-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "How are Docstring Examples Recognized?"}, {"name": "doctest-how-it-works", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "How It Works"}, {"name": "doctest-options", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Option Flags"}, {"name": "doctest-outputchecker", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "OutputChecker objects"}, {"name": "doctest-simple-testfile", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Simple Usage: Checking Examples in a Text File"}, {"name": "doctest-simple-testmod", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Simple Usage: Checking Examples in Docstrings"}, {"name": "doctest-soapbox", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Soapbox"}, {"name": "doctest-unittest-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Unittest API"}, {"name": "doctest-warnings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Warnings"}, {"name": "doctest-which-docstrings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Which Docstrings Are Examined?"}, {"name": "doctest:directive", "domain": "std", "role": "token", "priority": "-1", "uri": "library/doctest.html#grammar-token-doctest-directive", "dispname": "-"}, {"name": "doctest:directive_option", "domain": "std", "role": "token", "priority": "-1", "uri": "library/doctest.html#grammar-token-doctest-directive_option", "dispname": "-"}, {"name": "doctest:directive_option_name", "domain": "std", "role": "token", "priority": "-1", "uri": "library/doctest.html#grammar-token-doctest-directive_option_name", "dispname": "-"}, {"name": "doctest:directive_options", "domain": "std", "role": "token", "priority": "-1", "uri": "library/doctest.html#grammar-token-doctest-directive_options", "dispname": "-"}, {"name": "doctest:on_or_off", "domain": "std", "role": "token", "priority": "-1", "uri": "library/doctest.html#grammar-token-doctest-on_or_off", "dispname": "-"}, {"name": "dom-accessor-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Accessor Methods"}, {"name": "dom-attr-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Attr Objects"}, {"name": "dom-attributelist-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "NamedNodeMap Objects"}, {"name": "dom-comment-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Comment Objects"}, {"name": "dom-conformance", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Conformance"}, {"name": "dom-document-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Document Objects"}, {"name": "dom-documenttype-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "DocumentType Objects"}, {"name": "dom-element-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Element Objects"}, {"name": "dom-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.minidom.html#$", "dispname": "DOM Example"}, {"name": "dom-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Exceptions"}, {"name": "dom-implementation-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "DOMImplementation Objects"}, {"name": "dom-node-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Node Objects"}, {"name": "dom-nodelist-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "NodeList Objects"}, {"name": "dom-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Objects in the DOM"}, {"name": "dom-pi-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "ProcessingInstruction Objects"}, {"name": "dom-text-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Text and CDATASection Objects"}, {"name": "dom-type-mapping", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.html#$", "dispname": "Type Mapping"}, {"name": "domeventstream-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.pulldom.html#$", "dispname": "DOMEventStream Objects"}, {"name": "down", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "dtd-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.handler.html#$", "dispname": "DTDHandler Objects"}, {"name": "duck-typing", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "dynamic-features", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#$", "dispname": "Interaction with dynamic features"}, {"name": "dynamic-linking", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/windows.html#$", "dispname": "Differences Between Unix and Windows"}, {"name": "editing-and-navigation", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Editing and Navigation"}, {"name": "editors", "domain": "std", "role": "label", "priority": "-1", "uri": "using/editors.html#$", "dispname": "Editors and IDEs"}, {"name": "efficient_string_concatenation", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#efficient-string-concatenation", "dispname": "What is the most efficient way to concatenate many strings together?"}, {"name": "elementinclude-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "Functions"}, {"name": "elementtree-element-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "Element Objects"}, {"name": "elementtree-elementtree-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "ElementTree Objects"}, {"name": "elementtree-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "Functions"}, {"name": "elementtree-parsing-xml", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "Parsing XML"}, {"name": "elementtree-pull-parsing", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "Pull API for non-blocking parsing"}, {"name": "elementtree-qname-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "QName Objects"}, {"name": "elementtree-section", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "Updated module: ElementTree 1.3"}, {"name": "elementtree-treebuilder-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "TreeBuilder Objects"}, {"name": "elementtree-xinclude", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "XInclude support"}, {"name": "elementtree-xmlparser-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "XMLParser Objects"}, {"name": "elementtree-xmlpullparser-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "XMLPullParser Objects"}, {"name": "elementtree-xpath", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.etree.elementtree.html#$", "dispname": "XPath support"}, {"name": "elif", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The if statement"}, {"name": "else", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The if statement"}, {"name": "email-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/email.examples.html#$", "dispname": "email: Examples"}, {"name": "embedding", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Embedding Python in Another Application"}, {"name": "embedding-locale", "domain": "std", "role": "label", "priority": "-1", "uri": "library/locale.html#$", "dispname": "For extension writers and programs that embed Python"}, {"name": "embeddingincplusplus", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Embedding Python in C++"}, {"name": "enable", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "encodings", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Encoding declarations"}, {"name": "encodings-overview", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Encodings and Unicode"}, {"name": "entity-resolver-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.handler.html#$", "dispname": "EntityResolver Objects"}, {"name": "entry-points", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Entry points"}, {"name": "epoch", "domain": "std", "role": "label", "priority": "-1", "uri": "library/time.html#$", "dispname": "-"}, {"name": "epoll-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/select.html#$", "dispname": "Edge and Level Trigger Polling (epoll) Objects"}, {"name": "error-handlers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Error Handlers"}, {"name": "escape-sequences", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "-"}, {"name": "evalorder", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Evaluation order"}, {"name": "event-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Event Objects"}, {"name": "examples-imp", "domain": "std", "role": "label", "priority": "-1", "uri": "library/imp.html#$", "dispname": "Examples"}, {"name": "except", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The try statement"}, {"name": "except", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "exception-changed", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "-"}, {"name": "exceptionhandling", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/exceptions.html#$", "dispname": "Exception Handling"}, {"name": "exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#$", "dispname": "Exceptions"}, {"name": "exec", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "execfile", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "execmodel", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#$", "dispname": "Execution model"}, {"name": "exitfunc", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "expat-content-models", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyexpat.html#$", "dispname": "Content Model Descriptions"}, {"name": "expat-errors", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyexpat.html#$", "dispname": "Expat error constants"}, {"name": "expat-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyexpat.html#$", "dispname": "Example"}, {"name": "expaterror-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyexpat.html#$", "dispname": "ExpatError Exceptions"}, {"name": "explicit-joining", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Explicit line joining"}, {"name": "expression", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "expression-input", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/toplevel_components.html#$", "dispname": "Expression input"}, {"name": "expressions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Expressions"}, {"name": "exprlists", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Expression lists"}, {"name": "exprstmts", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "Expression statements"}, {"name": "extending-distutils", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/extending.html#$", "dispname": "Extending Distutils"}, {"name": "extending-errors", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Intermezzo: Errors and Exceptions"}, {"name": "extending-index", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/index.html#$", "dispname": "Extending and Embedding the Python Interpreter"}, {"name": "extending-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Extending Python with C or C++"}, {"name": "extending-simpleexample", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "A Simple Example"}, {"name": "extending-with-embedding", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Extending Embedded Python"}, {"name": "extending/building", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/building.html", "dispname": "Building C and C++ Extensions"}, {"name": "extending/embedding", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/embedding.html", "dispname": "Embedding Python in Another Application"}, {"name": "extending/extending", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/extending.html", "dispname": "Extending Python with C or C++"}, {"name": "extending/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/index.html", "dispname": "Extending and Embedding the Python Interpreter"}, {"name": "extending/newtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/newtypes.html", "dispname": "Defining Extension Types: Assorted Topics"}, {"name": "extending/newtypes_tutorial", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/newtypes_tutorial.html", "dispname": "Defining Extension Types: Tutorial"}, {"name": "extending/windows", "domain": "std", "role": "doc", "priority": "-1", "uri": "extending/windows.html", "dispname": "Building C and C++ Extensions on Windows"}, {"name": "extension module", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-extension-module", "dispname": "-"}, {"name": "f-string", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "f-strings", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Formatted string literals"}, {"name": "faq-argument-vs-parameter", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "What is the difference between arguments and parameters?"}, {"name": "faq-augmented-assignment-tuple-error", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "Why does a_tuple[i] += [\u2018item\u2019] raise an exception when the addition works?"}, {"name": "faq-create-standalone-binary", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "How can I create a stand-alone binary from a Python script?"}, {"name": "faq-index", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/index.html#$", "dispname": "Python Frequently Asked Questions"}, {"name": "faq-multidimensional-list", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "How do I create a multidimensional list?"}, {"name": "faq-positional-only-arguments", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "What does the slash(/) in the parameter list of a function mean?"}, {"name": "faq-programming-raw-string-backslash", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "Can I end a raw string with an odd number of backslashes?"}, {"name": "faq-run-program-under-windows", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/windows.html#$", "dispname": "How do I run a Python program under Windows?"}, {"name": "faq-unboundlocalerror", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/programming.html#$", "dispname": "Why am I getting an UnboundLocalError when the variable has a value?"}, {"name": "faq/design", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/design.html", "dispname": "Design and History FAQ"}, {"name": "faq/extending", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/extending.html", "dispname": "Extending/Embedding FAQ"}, {"name": "faq/general", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/general.html", "dispname": "General Python FAQ"}, {"name": "faq/gui", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/gui.html", "dispname": "Graphic User Interface FAQ"}, {"name": "faq/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/index.html", "dispname": "Python Frequently Asked Questions"}, {"name": "faq/installed", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/installed.html", "dispname": "\u201cWhy is Python Installed on my Computer?\u201d FAQ"}, {"name": "faq/library", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/library.html", "dispname": "Library and Extension FAQ"}, {"name": "faq/programming", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/programming.html", "dispname": "Programming FAQ"}, {"name": "faq/windows", "domain": "std", "role": "doc", "priority": "-1", "uri": "faq/windows.html", "dispname": "Python on Windows FAQ"}, {"name": "fault-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.client.html#$", "dispname": "Fault Objects"}, {"name": "faulthandler-fd", "domain": "std", "role": "label", "priority": "-1", "uri": "library/faulthandler.html#$", "dispname": "Issue with file descriptors"}, {"name": "fd_inheritance", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#fd-inheritance", "dispname": "Inheritance of File Descriptors"}, {"name": "features", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Features"}, {"name": "file object", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-file-object", "dispname": "-"}, {"name": "file-cookie-jar-classes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookiejar.html#$", "dispname": "FileCookieJar subclasses and co-operation with web browsers"}, {"name": "file-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "FileHandler"}, {"name": "file-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "FileHandler Objects"}, {"name": "file-input", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/toplevel_components.html#$", "dispname": "File input"}, {"name": "file-like object", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-file-like-object", "dispname": "-"}, {"name": "file-operations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "Directory and files operations"}, {"name": "fileformats", "domain": "std", "role": "label", "priority": "-1", "uri": "library/fileformats.html#$", "dispname": "File Formats"}, {"name": "filemodes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "fileobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/file.html#$", "dispname": "File Objects"}, {"name": "files", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Distribution files"}, {"name": "filesys", "domain": "std", "role": "label", "priority": "-1", "uri": "library/filesys.html#$", "dispname": "File and Directory Access"}, {"name": "filesystem encoding and error handler", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-filesystem-encoding-and-error-handler", "dispname": "-"}, {"name": "filesystem-encoding", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "File Names, Command Line Arguments, and Environment Variables"}, {"name": "filter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "Filter Objects"}, {"name": "filter", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "filter-chain-specs", "domain": "std", "role": "label", "priority": "-1", "uri": "library/lzma.html#$", "dispname": "Specifying custom filter chains"}, {"name": "filters-contextual", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Using Filters to impart contextual information"}, {"name": "filters-dictconfig", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Configuring filters with dictConfig()"}, {"name": "finalize-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/weakref.html#$", "dispname": "Finalizer Objects"}, {"name": "finally", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The try statement"}, {"name": "finder", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "finders-and-loaders", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "Finders and loaders"}, {"name": "finding_modules", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#finding-modules", "dispname": "Finding modules"}, {"name": "float:digitpart", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-digitpart", "dispname": "-"}, {"name": "float:exponent", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-exponent", "dispname": "-"}, {"name": "float:floatnumber", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-floatnumber", "dispname": "-"}, {"name": "float:floatvalue", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-floatvalue", "dispname": "-"}, {"name": "float:infinity", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-infinity", "dispname": "-"}, {"name": "float:nan", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-nan", "dispname": "-"}, {"name": "float:number", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-number", "dispname": "-"}, {"name": "float:sign", "domain": "std", "role": "token", "priority": "-1", "uri": "library/functions.html#grammar-token-float-sign", "dispname": "-"}, {"name": "floating", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Floating point literals"}, {"name": "floatobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/float.html#$", "dispname": "Floating Point Objects"}, {"name": "floor division", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-floor-division", "dispname": "-"}, {"name": "follow_symlinks", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#follow-symlinks", "dispname": "-"}, {"name": "for", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The for statement"}, {"name": "fork-and-threads", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Cautions about fork()"}, {"name": "format-characters", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Format Characters"}, {"name": "format-menu", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Format menu (Editor window only)"}, {"name": "format-spec:align", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-align", "dispname": "-"}, {"name": "format-spec:fill", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-fill", "dispname": "-"}, {"name": "format-spec:format_spec", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-format_spec", "dispname": "-"}, {"name": "format-spec:grouping_option", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-grouping_option", "dispname": "-"}, {"name": "format-spec:precision", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-precision", "dispname": "-"}, {"name": "format-spec:sign", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-sign", "dispname": "-"}, {"name": "format-spec:type", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-type", "dispname": "-"}, {"name": "format-spec:width", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-spec-width", "dispname": "-"}, {"name": "format-string:arg_name", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-arg_name", "dispname": "-"}, {"name": "format-string:attribute_name", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-attribute_name", "dispname": "-"}, {"name": "format-string:conversion", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-conversion", "dispname": "-"}, {"name": "format-string:element_index", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-element_index", "dispname": "-"}, {"name": "format-string:field_name", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-field_name", "dispname": "-"}, {"name": "format-string:format_spec", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-format_spec", "dispname": "-"}, {"name": "format-string:index_string", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-index_string", "dispname": "-"}, {"name": "format-string:replacement_field", "domain": "std", "role": "token", "priority": "-1", "uri": "library/string.html#grammar-token-format-string-replacement_field", "dispname": "-"}, {"name": "format-styles", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Use of alternative formatting styles"}, {"name": "formatexamples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/string.html#$", "dispname": "Format examples"}, {"name": "formatspec", "domain": "std", "role": "label", "priority": "-1", "uri": "library/string.html#$", "dispname": "Format Specification Mini-Language"}, {"name": "formatstrings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/string.html#$", "dispname": "Format String Syntax"}, {"name": "formatter-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "Formatter Objects"}, {"name": "formatting-styles", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Using particular formatting styles throughout your application"}, {"name": "frame-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "frameworks", "domain": "std", "role": "label", "priority": "-1", "uri": "library/frameworks.html#$", "dispname": "Program Frameworks"}, {"name": "frequently-used-arguments", "domain": "std", "role": "label", "priority": "-1", "uri": "library/subprocess.html#$", "dispname": "Frequently Used Arguments"}, {"name": "frie09", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "from", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The import statement"}, {"name": "ftp-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "FTPHandler Objects"}, {"name": "ftp-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ftplib.html#$", "dispname": "FTP Objects"}, {"name": "func-bytearray", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-bytes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-dict", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-frozenset", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-list", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-memoryview", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-range", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-set", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-str", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "func-tuple", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "funcattrs", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "function", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Function definitions"}, {"name": "function", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "function annotation", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-function-annotation", "dispname": "-"}, {"name": "function-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/function.html#$", "dispname": "Function Objects"}, {"name": "functional-howto-iterators", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/functional.html#$", "dispname": "Iterators"}, {"name": "functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "Functions"}, {"name": "functions-in-cgi-module", "domain": "std", "role": "label", "priority": "-1", "uri": "library/cgi.html#$", "dispname": "Functions"}, {"name": "fundamental", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/concrete.html#$", "dispname": "Fundamental Objects"}, {"name": "further-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock-examples.html#$", "dispname": "Further Examples"}, {"name": "future", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "Future statements"}, {"name": "future", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "garbage collection", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-garbage-collection", "dispname": "-"}, {"name": "gen-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/gen.html#$", "dispname": "Generator Objects"}, {"name": "generator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "generator expression", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-generator-expression", "dispname": "-"}, {"name": "generator iterator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-generator-iterator", "dispname": "-"}, {"name": "generator-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Generator-iterator methods"}, {"name": "generator-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Generator Types"}, {"name": "generic function", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-generic-function", "dispname": "-"}, {"name": "generic type", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-generic-type", "dispname": "-"}, {"name": "generic-attribute-management", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/newtypes.html#$", "dispname": "Generic Attribute Management"}, {"name": "generics", "domain": "std", "role": "label", "priority": "-1", "uri": "library/typing.html#$", "dispname": "Generics"}, {"name": "genexpr", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Generator expressions"}, {"name": "genindex", "domain": "std", "role": "label", "priority": "-1", "uri": "genindex.html", "dispname": "Index"}, {"name": "getcwdu", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "getting-osx", "domain": "std", "role": "label", "priority": "-1", "uri": "using/mac.html#$", "dispname": "Getting and Installing MacPython"}, {"name": "getting-started", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock-examples.html#$", "dispname": "-"}, {"name": "gilstate", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Non-Python created threads"}, {"name": "global", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The global statement"}, {"name": "global interpreter lock", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-global-interpreter-lock", "dispname": "-"}, {"name": "global-conf-vars", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Global configuration variables"}, {"name": "glossary", "domain": "std", "role": "doc", "priority": "-1", "uri": "glossary.html", "dispname": "Glossary"}, {"name": "glossary", "domain": "std", "role": "label", "priority": "-1", "uri": "glossary.html#$", "dispname": "Glossary"}, {"name": "group-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Group Patterns"}, {"name": "gzip-usage-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/gzip.html#$", "dispname": "Examples of usage"}, {"name": "gzip.--best", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-best", "dispname": "-"}, {"name": "gzip.--decompress", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-d", "dispname": "-"}, {"name": "gzip.--fast", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-fast", "dispname": "-"}, {"name": "gzip.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-h", "dispname": "-"}, {"name": "gzip.-d", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-d", "dispname": "-"}, {"name": "gzip.-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-h", "dispname": "-"}, {"name": "gzip.file", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/gzip.html#cmdoption-gzip-arg-file", "dispname": "-"}, {"name": "handle-object", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "Registry Handle Objects"}, {"name": "handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "Handler Objects"}, {"name": "handler-basic", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Handlers"}, {"name": "handler-config-dict-order", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Handler configuration order"}, {"name": "handlers-and-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/signal.html#$", "dispname": "Note on Signal Handlers and Exceptions"}, {"name": "has_key", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "hash-algorithms", "domain": "std", "role": "label", "priority": "-1", "uri": "library/hashlib.html#$", "dispname": "Hash algorithms"}, {"name": "hash-based pyc", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-hash-based-pyc", "dispname": "-"}, {"name": "hashable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "hashlib-usedforsecurity", "domain": "std", "role": "label", "priority": "-1", "uri": "library/hashlib.html#$", "dispname": "-"}, {"name": "heap-types", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Heap Types"}, {"name": "help", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "help-sources", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Help sources"}, {"name": "high-level-embedding", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Very High Level Embedding"}, {"name": "history-and-license", "domain": "std", "role": "label", "priority": "-1", "uri": "license.html#$", "dispname": "History and License"}, {"name": "hkey-constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "HKEY_* Constants"}, {"name": "host_port", "domain": "std", "role": "label", "priority": "-1", "uri": "library/socket.html#host-port", "dispname": "-"}, {"name": "howto-clinic", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/clinic.html#$", "dispname": "Argument Clinic How-To"}, {"name": "howto-minimal-example", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "A simple example"}, {"name": "howto/annotations", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/annotations.html", "dispname": "Annotations Best Practices"}, {"name": "howto/argparse", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/argparse.html", "dispname": "Argparse Tutorial"}, {"name": "howto/clinic", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/clinic.html", "dispname": "Argument Clinic How-To"}, {"name": "howto/cporting", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/cporting.html", "dispname": "Porting Extension Modules to Python 3"}, {"name": "howto/curses", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/curses.html", "dispname": "Curses Programming with Python"}, {"name": "howto/descriptor", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/descriptor.html", "dispname": "Descriptor HowTo Guide"}, {"name": "howto/functional", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/functional.html", "dispname": "Functional Programming HOWTO"}, {"name": "howto/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/index.html", "dispname": "Python HOWTOs"}, {"name": "howto/instrumentation", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/instrumentation.html", "dispname": "Instrumenting CPython with DTrace and SystemTap"}, {"name": "howto/ipaddress", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/ipaddress.html", "dispname": "An introduction to the ipaddress module"}, {"name": "howto/logging", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/logging.html", "dispname": "Logging HOWTO"}, {"name": "howto/logging-cookbook", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/logging-cookbook.html", "dispname": "Logging Cookbook"}, {"name": "howto/pyporting", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/pyporting.html", "dispname": "Porting Python 2 Code to Python 3"}, {"name": "howto/regex", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/regex.html", "dispname": "Regular Expression HOWTO"}, {"name": "howto/sockets", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/sockets.html", "dispname": "Socket Programming HOWTO"}, {"name": "howto/sorting", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/sorting.html", "dispname": "Sorting HOW TO"}, {"name": "howto/unicode", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/unicode.html", "dispname": "Unicode HOWTO"}, {"name": "howto/urllib2", "domain": "std", "role": "doc", "priority": "-1", "uri": "howto/urllib2.html", "dispname": "HOWTO Fetch Internet Resources Using The urllib Package"}, {"name": "htmlparser-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/html.parser.html#$", "dispname": "Examples"}, {"name": "http-basic-auth-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPBasicAuthHandler Objects"}, {"name": "http-cookie-processor", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPCookieProcessor Objects"}, {"name": "http-digest-auth-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPDigestAuthHandler Objects"}, {"name": "http-error-processor-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPErrorProcessor Objects"}, {"name": "http-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "HTTPHandler"}, {"name": "http-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPHandler Objects"}, {"name": "http-password-mgr", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPPasswordMgr Objects"}, {"name": "http-password-mgr-with-prior-auth", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPPasswordMgrWithPriorAuth Objects"}, {"name": "http-redirect-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPRedirectHandler Objects"}, {"name": "http-server-cli", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.server.html#$", "dispname": "-"}, {"name": "http-status-codes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.html#$", "dispname": "HTTP status codes"}, {"name": "http.server-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.server.html#http-server-security", "dispname": "Security Considerations"}, {"name": "http_error_nnn", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#http-error-nnn", "dispname": "-"}, {"name": "httpconnection-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.client.html#$", "dispname": "HTTPConnection Objects"}, {"name": "httpmessage-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.client.html#$", "dispname": "HTTPMessage Objects"}, {"name": "httpresponse-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.client.html#$", "dispname": "HTTPResponse Objects"}, {"name": "https-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "HTTPSHandler Objects"}, {"name": "i18n", "domain": "std", "role": "label", "priority": "-1", "uri": "library/i18n.html#$", "dispname": "Internationalization"}, {"name": "id-classes", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Reserved classes of identifiers"}, {"name": "ide", "domain": "std", "role": "label", "priority": "-1", "uri": "using/mac.html#$", "dispname": "The IDE"}, {"name": "identifiers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Identifiers and keywords"}, {"name": "idioms", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "idle", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "IDLE"}, {"name": "if", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The if statement"}, {"name": "if_expr", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#if-expr", "dispname": "Conditional expressions"}, {"name": "ignore", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "imaginary", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Imaginary literals"}, {"name": "imap4-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/imaplib.html#$", "dispname": "IMAP4 Example"}, {"name": "imap4-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/imaplib.html#$", "dispname": "IMAP4 Objects"}, {"name": "immutable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "implementations", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/introduction.html#$", "dispname": "Alternate Implementations"}, {"name": "implementing-the-arithmetic-operations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/numbers.html#$", "dispname": "Implementing the arithmetic operations"}, {"name": "implicit-joining", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Implicit line joining"}, {"name": "import", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The import statement"}, {"name": "import", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "import path", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-import-path", "dispname": "-"}, {"name": "import-dunder-main", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "Special considerations for __main__"}, {"name": "import-mod-attrs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "Import-related module attributes"}, {"name": "importer", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "importing", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/import.html#$", "dispname": "Importing Modules"}, {"name": "importing", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "importlib", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "Using importlib as the Implementation of Import"}, {"name": "importlib-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.html#$", "dispname": "Examples"}, {"name": "importlib-section", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "New module: importlib"}, {"name": "imports", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "imports2", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "importsystem", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "The import system"}, {"name": "improved-shell-compatibility", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shlex.html#$", "dispname": "Improved Compatibility with Shells"}, {"name": "in", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Membership test operations"}, {"name": "incremental-decoder-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "IncrementalDecoder Objects"}, {"name": "incremental-encoder-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "IncrementalEncoder Objects"}, {"name": "incremental-parser-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.reader.html#$", "dispname": "IncrementalParser Objects"}, {"name": "indentation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Indentation"}, {"name": "init-config", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init_config.html#$", "dispname": "Python Initialization Configuration"}, {"name": "init-isolated-conf", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init_config.html#$", "dispname": "Isolated Configuration"}, {"name": "init-path-config", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init_config.html#$", "dispname": "Python Path Configuration"}, {"name": "init-python-config", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init_config.html#$", "dispname": "Python Configuration"}, {"name": "initialization", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Initialization, Finalization, and Threads"}, {"name": "initializing-modules", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/module.html#$", "dispname": "Initializing C modules"}, {"name": "input", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "input-source-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.reader.html#$", "dispname": "InputSource Objects"}, {"name": "inspect-classes-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "Classes and functions"}, {"name": "inspect-module-cli", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "Command Line Interface"}, {"name": "inspect-module-co-flags", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "Code Objects Bit Flags"}, {"name": "inspect-signature-object", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "Introspecting callables with the Signature object"}, {"name": "inspect-source", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "Retrieving source code"}, {"name": "inspect-stack", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "The interpreter stack"}, {"name": "inspect-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/inspect.html#$", "dispname": "Types and members"}, {"name": "inspect.--details", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/inspect.html#cmdoption-inspect-details", "dispname": "-"}, {"name": "inst-alt-install", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Alternate Installation"}, {"name": "inst-alt-install-home", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Alternate installation: the home scheme"}, {"name": "inst-alt-install-prefix-unix", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Alternate installation: Unix (the prefix scheme)"}, {"name": "inst-alt-install-prefix-windows", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Alternate installation: Windows (the prefix scheme)"}, {"name": "inst-alt-install-user", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Alternate installation: the user scheme"}, {"name": "inst-building-ext", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Building Extensions: Tips and Tricks"}, {"name": "inst-config-filenames", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Location and names of config files"}, {"name": "inst-config-files", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Distutils Configuration Files"}, {"name": "inst-config-syntax", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Syntax of config files"}, {"name": "inst-custom-install", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Custom Installation"}, {"name": "inst-how-build-works", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "How building works"}, {"name": "inst-how-install-works", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "How installation works"}, {"name": "inst-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Introduction"}, {"name": "inst-new-standard", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Distutils based source distributions"}, {"name": "inst-non-ms-compilers", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Using non-Microsoft compilers on Windows"}, {"name": "inst-platform-variations", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Platform variations"}, {"name": "inst-search-path", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Modifying Python\u2019s Search Path"}, {"name": "inst-splitting-up", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Splitting the job up"}, {"name": "inst-standard-install", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Standard Build and Install"}, {"name": "inst-tweak-flags", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Tweaking compiler/linker flags"}, {"name": "install-cmd", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/commandref.html#$", "dispname": "Installing modules: the install command family"}, {"name": "install-data-cmd", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/commandref.html#$", "dispname": "install_data"}, {"name": "install-index", "domain": "std", "role": "label", "priority": "-1", "uri": "install/index.html#$", "dispname": "Installing Python Modules (Legacy version)"}, {"name": "install-layout-option", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Installing Without Downloading"}, {"name": "install-quiet-option", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Installing Without UI"}, {"name": "install-scripts-cmd", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/commandref.html#$", "dispname": "install_scripts"}, {"name": "install/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "install/index.html", "dispname": "Installing Python Modules (Legacy version)"}, {"name": "installation_paths", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sysconfig.html#installation-paths", "dispname": "Installation paths"}, {"name": "installing-index", "domain": "std", "role": "label", "priority": "-1", "uri": "installing/index.html#$", "dispname": "Installing Python Modules"}, {"name": "installing/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "installing/index.html", "dispname": "Installing Python Modules"}, {"name": "instancemethod-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/method.html#$", "dispname": "Instance Method Objects"}, {"name": "instrumentation", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/instrumentation.html#$", "dispname": "Instrumenting CPython with DTrace and SystemTap"}, {"name": "int_max_str_digits", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#int-max-str-digits", "dispname": "Integer string conversion length limitation"}, {"name": "integers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Integer literals"}, {"name": "interact", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "interactive", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/toplevel_components.html#$", "dispname": "Interactive input"}, {"name": "interactive", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "intern", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "internet", "domain": "std", "role": "label", "priority": "-1", "uri": "library/internet.html#$", "dispname": "Internet Protocols and Support"}, {"name": "interpreted", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "interpreter shutdown", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-interpreter-shutdown", "dispname": "-"}, {"name": "interpreter-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/code.html#$", "dispname": "Interactive Interpreter Objects"}, {"name": "intra-package-references", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "Intra-package References"}, {"name": "introduction", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/introduction.html#$", "dispname": "Introduction"}, {"name": "io-encoding-warning", "domain": "std", "role": "label", "priority": "-1", "uri": "library/io.html#$", "dispname": "Opt-in EncodingWarning"}, {"name": "io-overview", "domain": "std", "role": "label", "priority": "-1", "uri": "library/io.html#$", "dispname": "Overview"}, {"name": "io-text-encoding", "domain": "std", "role": "label", "priority": "-1", "uri": "library/io.html#$", "dispname": "Text Encoding"}, {"name": "ipaddress-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/ipaddress.html#$", "dispname": "An introduction to the ipaddress module"}, {"name": "ipc", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ipc.html#$", "dispname": "Networking and Interprocess Communication"}, {"name": "irrefutable_case", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#irrefutable-case", "dispname": "Irrefutable Case Blocks"}, {"name": "is", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Identity comparisons"}, {"name": "is not", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#is-not", "dispname": "Identity comparisons"}, {"name": "isinstance", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "iterable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "iterator", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/iter.html#$", "dispname": "Iterator Protocol"}, {"name": "iterator", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "iterator-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/iterator.html#$", "dispname": "Iterator Objects"}, {"name": "itertools", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "itertools-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/itertools.html#$", "dispname": "Itertool functions"}, {"name": "itertools-recipes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/itertools.html#$", "dispname": "Itertools Recipes"}, {"name": "itertools_imports", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "json-commandline", "domain": "std", "role": "label", "priority": "-1", "uri": "library/json.html#$", "dispname": "Command Line Interface"}, {"name": "json-to-py-table", "domain": "std", "role": "label", "priority": "-1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "json.tool.--compact", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-indent", "dispname": "-"}, {"name": "json.tool.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-h", "dispname": "-"}, {"name": "json.tool.--indent", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-indent", "dispname": "-"}, {"name": "json.tool.--json-lines", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-json-lines", "dispname": "-"}, {"name": "json.tool.--no-ensure-ascii", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-no-ensure-ascii", "dispname": "-"}, {"name": "json.tool.--no-indent", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-indent", "dispname": "-"}, {"name": "json.tool.--sort-keys", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-sort-keys", "dispname": "-"}, {"name": "json.tool.--tab", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-indent", "dispname": "-"}, {"name": "json.tool.-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-h", "dispname": "-"}, {"name": "json.tool.infile", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-arg-infile", "dispname": "-"}, {"name": "json.tool.outfile", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/json.html#cmdoption-json.tool-arg-outfile", "dispname": "-"}, {"name": "jump", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "kevent-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/select.html#$", "dispname": "Kevent Objects"}, {"name": "key function", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-key-function", "dispname": "-"}, {"name": "keyword argument", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-keyword-argument", "dispname": "-"}, {"name": "keyword-only_parameter", "domain": "std", "role": "label", "priority": "-1", "uri": "glossary.html#keyword-only-parameter", "dispname": "-"}, {"name": "keywords", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Keywords"}, {"name": "kqueue-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/select.html#$", "dispname": "Kqueue Objects"}, {"name": "lambda", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Lambdas"}, {"name": "lambda", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "lambdas", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Lambdas"}, {"name": "language", "domain": "std", "role": "label", "priority": "-1", "uri": "library/language.html#$", "dispname": "Python Language Services"}, {"name": "launcher", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Python Launcher for Windows"}, {"name": "layout", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tkinter.ttk.html#layouts", "dispname": "Layouts"}, {"name": "legacy-unit-tests", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Re-using old test code"}, {"name": "levels", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "Logging Levels"}, {"name": "lexical", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Lexical analysis"}, {"name": "lexical-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.handler.html#$", "dispname": "LexicalHandler Objects"}, {"name": "library-config", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Configuring Logging for a Library"}, {"name": "library-index", "domain": "std", "role": "label", "priority": "-1", "uri": "library/index.html#$", "dispname": "The Python Standard Library"}, {"name": "library-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "library/intro.html#$", "dispname": "Introduction"}, {"name": "library/2to3", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/2to3.html", "dispname": "2to3 \u2014 Automated Python 2 to 3 code translation"}, {"name": "library/__future__", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/__future__.html", "dispname": "__future__ \u2014 Future statement definitions"}, {"name": "library/__main__", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/__main__.html", "dispname": "__main__ \u2014 Top-level code environment"}, {"name": "library/_thread", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/_thread.html", "dispname": "_thread \u2014 Low-level threading API"}, {"name": "library/abc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/abc.html", "dispname": "abc \u2014 Abstract Base Classes"}, {"name": "library/aifc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/aifc.html", "dispname": "aifc \u2014 Read and write AIFF and AIFC files"}, {"name": "library/allos", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/allos.html", "dispname": "Generic Operating System Services"}, {"name": "library/archiving", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/archiving.html", "dispname": "Data Compression and Archiving"}, {"name": "library/argparse", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/argparse.html", "dispname": "argparse \u2014 Parser for command-line options, arguments and sub-commands"}, {"name": "library/array", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/array.html", "dispname": "array \u2014 Efficient arrays of numeric values"}, {"name": "library/ast", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ast.html", "dispname": "ast \u2014 Abstract Syntax Trees"}, {"name": "library/asynchat", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asynchat.html", "dispname": "asynchat \u2014 Asynchronous socket command/response handler"}, {"name": "library/asyncio", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio.html", "dispname": "asyncio \u2014 Asynchronous I/O"}, {"name": "library/asyncio-api-index", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-api-index.html", "dispname": "High-level API Index"}, {"name": "library/asyncio-dev", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-dev.html", "dispname": "Developing with asyncio"}, {"name": "library/asyncio-eventloop", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-eventloop.html", "dispname": "Event Loop"}, {"name": "library/asyncio-exceptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-exceptions.html", "dispname": "Exceptions"}, {"name": "library/asyncio-future", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-future.html", "dispname": "Futures"}, {"name": "library/asyncio-llapi-index", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-llapi-index.html", "dispname": "Low-level API Index"}, {"name": "library/asyncio-platforms", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-platforms.html", "dispname": "Platform Support"}, {"name": "library/asyncio-policy", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-policy.html", "dispname": "Policies"}, {"name": "library/asyncio-protocol", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-protocol.html", "dispname": "Transports and Protocols"}, {"name": "library/asyncio-queue", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-queue.html", "dispname": "Queues"}, {"name": "library/asyncio-stream", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-stream.html", "dispname": "Streams"}, {"name": "library/asyncio-subprocess", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-subprocess.html", "dispname": "Subprocesses"}, {"name": "library/asyncio-sync", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-sync.html", "dispname": "Synchronization Primitives"}, {"name": "library/asyncio-task", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncio-task.html", "dispname": "Coroutines and Tasks"}, {"name": "library/asyncore", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/asyncore.html", "dispname": "asyncore \u2014 Asynchronous socket handler"}, {"name": "library/atexit", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/atexit.html", "dispname": "atexit \u2014 Exit handlers"}, {"name": "library/audioop", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/audioop.html", "dispname": "audioop \u2014 Manipulate raw audio data"}, {"name": "library/audit_events", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/audit_events.html", "dispname": "Audit events table"}, {"name": "library/base64", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/base64.html", "dispname": "base64 \u2014 Base16, Base32, Base64, Base85 Data Encodings"}, {"name": "library/bdb", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/bdb.html", "dispname": "bdb \u2014 Debugger framework"}, {"name": "library/binary", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/binary.html", "dispname": "Binary Data Services"}, {"name": "library/binascii", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/binascii.html", "dispname": "binascii \u2014 Convert between binary and ASCII"}, {"name": "library/binhex", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/binhex.html", "dispname": "binhex \u2014 Encode and decode binhex4 files"}, {"name": "library/bisect", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/bisect.html", "dispname": "bisect \u2014 Array bisection algorithm"}, {"name": "library/builtins", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/builtins.html", "dispname": "builtins \u2014 Built-in objects"}, {"name": "library/bz2", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/bz2.html", "dispname": "bz2 \u2014 Support for bzip2 compression"}, {"name": "library/calendar", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/calendar.html", "dispname": "calendar \u2014 General calendar-related functions"}, {"name": "library/cgi", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/cgi.html", "dispname": "cgi \u2014 Common Gateway Interface support"}, {"name": "library/cgitb", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/cgitb.html", "dispname": "cgitb \u2014 Traceback manager for CGI scripts"}, {"name": "library/chunk", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/chunk.html", "dispname": "chunk \u2014 Read IFF chunked data"}, {"name": "library/cmath", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/cmath.html", "dispname": "cmath \u2014 Mathematical functions for complex numbers"}, {"name": "library/cmd", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/cmd.html", "dispname": "cmd \u2014 Support for line-oriented command interpreters"}, {"name": "library/code", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/code.html", "dispname": "code \u2014 Interpreter base classes"}, {"name": "library/codecs", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/codecs.html", "dispname": "codecs \u2014 Codec registry and base classes"}, {"name": "library/codeop", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/codeop.html", "dispname": "codeop \u2014 Compile Python code"}, {"name": "library/collections", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/collections.html", "dispname": "collections \u2014 Container datatypes"}, {"name": "library/collections.abc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/collections.abc.html", "dispname": "collections.abc \u2014 Abstract Base Classes for Containers"}, {"name": "library/colorsys", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/colorsys.html", "dispname": "colorsys \u2014 Conversions between color systems"}, {"name": "library/compileall", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/compileall.html", "dispname": "compileall \u2014 Byte-compile Python libraries"}, {"name": "library/concurrency", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/concurrency.html", "dispname": "Concurrent Execution"}, {"name": "library/concurrent", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/concurrent.html", "dispname": "The concurrent package"}, {"name": "library/concurrent.futures", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/concurrent.futures.html", "dispname": "concurrent.futures \u2014 Launching parallel tasks"}, {"name": "library/configparser", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/configparser.html", "dispname": "configparser \u2014 Configuration file parser"}, {"name": "library/constants", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/constants.html", "dispname": "Built-in Constants"}, {"name": "library/contextlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/contextlib.html", "dispname": "contextlib \u2014 Utilities for with-statement contexts"}, {"name": "library/contextvars", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/contextvars.html", "dispname": "contextvars \u2014 Context Variables"}, {"name": "library/copy", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/copy.html", "dispname": "copy \u2014 Shallow and deep copy operations"}, {"name": "library/copyreg", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/copyreg.html", "dispname": "copyreg \u2014 Register pickle support functions"}, {"name": "library/crypt", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/crypt.html", "dispname": "crypt \u2014 Function to check Unix passwords"}, {"name": "library/crypto", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/crypto.html", "dispname": "Cryptographic Services"}, {"name": "library/csv", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/csv.html", "dispname": "csv \u2014 CSV File Reading and Writing"}, {"name": "library/ctypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ctypes.html", "dispname": "ctypes \u2014 A foreign function library for Python"}, {"name": "library/curses", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/curses.html", "dispname": "curses \u2014 Terminal handling for character-cell displays"}, {"name": "library/curses.ascii", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/curses.ascii.html", "dispname": "curses.ascii \u2014 Utilities for ASCII characters"}, {"name": "library/curses.panel", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/curses.panel.html", "dispname": "curses.panel \u2014 A panel stack extension for curses"}, {"name": "library/custominterp", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/custominterp.html", "dispname": "Custom Python Interpreters"}, {"name": "library/dataclasses", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/dataclasses.html", "dispname": "dataclasses \u2014 Data Classes"}, {"name": "library/datatypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/datatypes.html", "dispname": "Data Types"}, {"name": "library/datetime", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/datetime.html", "dispname": "datetime \u2014 Basic date and time types"}, {"name": "library/dbm", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/dbm.html", "dispname": "dbm \u2014 Interfaces to Unix \u201cdatabases\u201d"}, {"name": "library/debug", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/debug.html", "dispname": "Debugging and Profiling"}, {"name": "library/decimal", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/decimal.html", "dispname": "decimal \u2014 Decimal fixed point and floating point arithmetic"}, {"name": "library/development", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/development.html", "dispname": "Development Tools"}, {"name": "library/devmode", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/devmode.html", "dispname": "Python Development Mode"}, {"name": "library/dialog", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/dialog.html", "dispname": "Tkinter Dialogs"}, {"name": "library/difflib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/difflib.html", "dispname": "difflib \u2014 Helpers for computing deltas"}, {"name": "library/dis", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/dis.html", "dispname": "dis \u2014 Disassembler for Python bytecode"}, {"name": "library/distribution", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/distribution.html", "dispname": "Software Packaging and Distribution"}, {"name": "library/distutils", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/distutils.html", "dispname": "distutils \u2014 Building and installing Python modules"}, {"name": "library/doctest", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/doctest.html", "dispname": "doctest \u2014 Test interactive Python examples"}, {"name": "library/email", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.html", "dispname": "email \u2014 An email and MIME handling package"}, {"name": "library/email.charset", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.charset.html", "dispname": "email.charset: Representing character sets"}, {"name": "library/email.compat32-message", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.compat32-message.html", "dispname": "email.message.Message: Representing an email message using the compat32 API"}, {"name": "library/email.contentmanager", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.contentmanager.html", "dispname": "email.contentmanager: Managing MIME Content"}, {"name": "library/email.encoders", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.encoders.html", "dispname": "email.encoders: Encoders"}, {"name": "library/email.errors", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.errors.html", "dispname": "email.errors: Exception and Defect classes"}, {"name": "library/email.examples", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.examples.html", "dispname": "email: Examples"}, {"name": "library/email.generator", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.generator.html", "dispname": "email.generator: Generating MIME documents"}, {"name": "library/email.header", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.header.html", "dispname": "email.header: Internationalized headers"}, {"name": "library/email.headerregistry", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.headerregistry.html", "dispname": "email.headerregistry: Custom Header Objects"}, {"name": "library/email.iterators", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.iterators.html", "dispname": "email.iterators: Iterators"}, {"name": "library/email.message", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.message.html", "dispname": "email.message: Representing an email message"}, {"name": "library/email.mime", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.mime.html", "dispname": "email.mime: Creating email and MIME objects from scratch"}, {"name": "library/email.parser", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.parser.html", "dispname": "email.parser: Parsing email messages"}, {"name": "library/email.policy", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.policy.html", "dispname": "email.policy: Policy Objects"}, {"name": "library/email.utils", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/email.utils.html", "dispname": "email.utils: Miscellaneous utilities"}, {"name": "library/ensurepip", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ensurepip.html", "dispname": "ensurepip \u2014 Bootstrapping the pip installer"}, {"name": "library/enum", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/enum.html", "dispname": "enum \u2014 Support for enumerations"}, {"name": "library/errno", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/errno.html", "dispname": "errno \u2014 Standard errno system symbols"}, {"name": "library/exceptions", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/exceptions.html", "dispname": "Built-in Exceptions"}, {"name": "library/faulthandler", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/faulthandler.html", "dispname": "faulthandler \u2014 Dump the Python traceback"}, {"name": "library/fcntl", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/fcntl.html", "dispname": "fcntl \u2014 The fcntl and ioctl system calls"}, {"name": "library/filecmp", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/filecmp.html", "dispname": "filecmp \u2014 File and Directory Comparisons"}, {"name": "library/fileformats", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/fileformats.html", "dispname": "File Formats"}, {"name": "library/fileinput", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/fileinput.html", "dispname": "fileinput \u2014 Iterate over lines from multiple input streams"}, {"name": "library/filesys", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/filesys.html", "dispname": "File and Directory Access"}, {"name": "library/fnmatch", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/fnmatch.html", "dispname": "fnmatch \u2014 Unix filename pattern matching"}, {"name": "library/fractions", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/fractions.html", "dispname": "fractions \u2014 Rational numbers"}, {"name": "library/frameworks", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/frameworks.html", "dispname": "Program Frameworks"}, {"name": "library/ftplib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ftplib.html", "dispname": "ftplib \u2014 FTP protocol client"}, {"name": "library/functional", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/functional.html", "dispname": "Functional Programming Modules"}, {"name": "library/functions", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/functions.html", "dispname": "Built-in Functions"}, {"name": "library/functools", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/functools.html", "dispname": "functools \u2014 Higher-order functions and operations on callable objects"}, {"name": "library/gc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/gc.html", "dispname": "gc \u2014 Garbage Collector interface"}, {"name": "library/getopt", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/getopt.html", "dispname": "getopt \u2014 C-style parser for command line options"}, {"name": "library/getpass", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/getpass.html", "dispname": "getpass \u2014 Portable password input"}, {"name": "library/gettext", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/gettext.html", "dispname": "gettext \u2014 Multilingual internationalization services"}, {"name": "library/glob", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/glob.html", "dispname": "glob \u2014 Unix style pathname pattern expansion"}, {"name": "library/graphlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/graphlib.html", "dispname": "graphlib \u2014 Functionality to operate with graph-like structures"}, {"name": "library/grp", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/grp.html", "dispname": "grp \u2014 The group database"}, {"name": "library/gzip", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/gzip.html", "dispname": "gzip \u2014 Support for gzip files"}, {"name": "library/hashlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/hashlib.html", "dispname": "hashlib \u2014 Secure hashes and message digests"}, {"name": "library/heapq", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/heapq.html", "dispname": "heapq \u2014 Heap queue algorithm"}, {"name": "library/hmac", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/hmac.html", "dispname": "hmac \u2014 Keyed-Hashing for Message Authentication"}, {"name": "library/html", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/html.html", "dispname": "html \u2014 HyperText Markup Language support"}, {"name": "library/html.entities", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/html.entities.html", "dispname": "html.entities \u2014 Definitions of HTML general entities"}, {"name": "library/html.parser", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/html.parser.html", "dispname": "html.parser \u2014 Simple HTML and XHTML parser"}, {"name": "library/http", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/http.html", "dispname": "http \u2014 HTTP modules"}, {"name": "library/http.client", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/http.client.html", "dispname": "http.client \u2014 HTTP protocol client"}, {"name": "library/http.cookiejar", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/http.cookiejar.html", "dispname": "http.cookiejar \u2014 Cookie handling for HTTP clients"}, {"name": "library/http.cookies", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/http.cookies.html", "dispname": "http.cookies \u2014 HTTP state management"}, {"name": "library/http.server", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/http.server.html", "dispname": "http.server \u2014 HTTP servers"}, {"name": "library/i18n", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/i18n.html", "dispname": "Internationalization"}, {"name": "library/idle", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/idle.html", "dispname": "IDLE"}, {"name": "library/imaplib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/imaplib.html", "dispname": "imaplib \u2014 IMAP4 protocol client"}, {"name": "library/imghdr", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/imghdr.html", "dispname": "imghdr \u2014 Determine the type of an image"}, {"name": "library/imp", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/imp.html", "dispname": "imp \u2014 Access the import internals"}, {"name": "library/importlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/importlib.html", "dispname": "importlib \u2014 The implementation of import"}, {"name": "library/importlib.metadata", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/importlib.metadata.html", "dispname": "Using importlib.metadata"}, {"name": "library/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/index.html", "dispname": "The Python Standard Library"}, {"name": "library/inspect", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/inspect.html", "dispname": "inspect \u2014 Inspect live objects"}, {"name": "library/internet", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/internet.html", "dispname": "Internet Protocols and Support"}, {"name": "library/intro", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/intro.html", "dispname": "Introduction"}, {"name": "library/io", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/io.html", "dispname": "io \u2014 Core tools for working with streams"}, {"name": "library/ipaddress", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ipaddress.html", "dispname": "ipaddress \u2014 IPv4/IPv6 manipulation library"}, {"name": "library/ipc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ipc.html", "dispname": "Networking and Interprocess Communication"}, {"name": "library/itertools", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/itertools.html", "dispname": "itertools \u2014 Functions creating iterators for efficient looping"}, {"name": "library/json", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/json.html", "dispname": "json \u2014 JSON encoder and decoder"}, {"name": "library/keyword", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/keyword.html", "dispname": "keyword \u2014 Testing for Python keywords"}, {"name": "library/language", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/language.html", "dispname": "Python Language Services"}, {"name": "library/linecache", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/linecache.html", "dispname": "linecache \u2014 Random access to text lines"}, {"name": "library/locale", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/locale.html", "dispname": "locale \u2014 Internationalization services"}, {"name": "library/logging", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/logging.html", "dispname": "logging \u2014 Logging facility for Python"}, {"name": "library/logging.config", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/logging.config.html", "dispname": "logging.config \u2014 Logging configuration"}, {"name": "library/logging.handlers", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/logging.handlers.html", "dispname": "logging.handlers \u2014 Logging handlers"}, {"name": "library/lzma", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/lzma.html", "dispname": "lzma \u2014 Compression using the LZMA algorithm"}, {"name": "library/mailbox", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/mailbox.html", "dispname": "mailbox \u2014 Manipulate mailboxes in various formats"}, {"name": "library/mailcap", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/mailcap.html", "dispname": "mailcap \u2014 Mailcap file handling"}, {"name": "library/markup", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/markup.html", "dispname": "Structured Markup Processing Tools"}, {"name": "library/marshal", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/marshal.html", "dispname": "marshal \u2014 Internal Python object serialization"}, {"name": "library/math", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/math.html", "dispname": "math \u2014 Mathematical functions"}, {"name": "library/mimetypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/mimetypes.html", "dispname": "mimetypes \u2014 Map filenames to MIME types"}, {"name": "library/mm", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/mm.html", "dispname": "Multimedia Services"}, {"name": "library/mmap", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/mmap.html", "dispname": "mmap \u2014 Memory-mapped file support"}, {"name": "library/modulefinder", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/modulefinder.html", "dispname": "modulefinder \u2014 Find modules used by a script"}, {"name": "library/modules", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/modules.html", "dispname": "Importing Modules"}, {"name": "library/msilib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/msilib.html", "dispname": "msilib \u2014 Read and write Microsoft Installer files"}, {"name": "library/msvcrt", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/msvcrt.html", "dispname": "msvcrt \u2014 Useful routines from the MS VC++ runtime"}, {"name": "library/multiprocessing", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/multiprocessing.html", "dispname": "multiprocessing \u2014 Process-based parallelism"}, {"name": "library/multiprocessing.shared_memory", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/multiprocessing.shared_memory.html", "dispname": "multiprocessing.shared_memory \u2014 Shared memory for direct access across processes"}, {"name": "library/netdata", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/netdata.html", "dispname": "Internet Data Handling"}, {"name": "library/netrc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/netrc.html", "dispname": "netrc \u2014 netrc file processing"}, {"name": "library/nis", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/nis.html", "dispname": "nis \u2014 Interface to Sun\u2019s NIS (Yellow Pages)"}, {"name": "library/nntplib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/nntplib.html", "dispname": "nntplib \u2014 NNTP protocol client"}, {"name": "library/numbers", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/numbers.html", "dispname": "numbers \u2014 Numeric abstract base classes"}, {"name": "library/numeric", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/numeric.html", "dispname": "Numeric and Mathematical Modules"}, {"name": "library/operator", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/operator.html", "dispname": "operator \u2014 Standard operators as functions"}, {"name": "library/optparse", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/optparse.html", "dispname": "optparse \u2014 Parser for command line options"}, {"name": "library/os", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/os.html", "dispname": "os \u2014 Miscellaneous operating system interfaces"}, {"name": "library/os.path", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/os.path.html", "dispname": "os.path \u2014 Common pathname manipulations"}, {"name": "library/ossaudiodev", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ossaudiodev.html", "dispname": "ossaudiodev \u2014 Access to OSS-compatible audio devices"}, {"name": "library/pathlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pathlib.html", "dispname": "pathlib \u2014 Object-oriented filesystem paths"}, {"name": "library/pdb", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pdb.html", "dispname": "pdb \u2014 The Python Debugger"}, {"name": "library/persistence", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/persistence.html", "dispname": "Data Persistence"}, {"name": "library/pickle", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pickle.html", "dispname": "pickle \u2014 Python object serialization"}, {"name": "library/pickletools", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pickletools.html", "dispname": "pickletools \u2014 Tools for pickle developers"}, {"name": "library/pipes", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pipes.html", "dispname": "pipes \u2014 Interface to shell pipelines"}, {"name": "library/pkgutil", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pkgutil.html", "dispname": "pkgutil \u2014 Package extension utility"}, {"name": "library/platform", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/platform.html", "dispname": "platform \u2014 Access to underlying platform\u2019s identifying data"}, {"name": "library/plistlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/plistlib.html", "dispname": "plistlib \u2014 Generate and parse Apple .plist files"}, {"name": "library/poplib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/poplib.html", "dispname": "poplib \u2014 POP3 protocol client"}, {"name": "library/posix", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/posix.html", "dispname": "posix \u2014 The most common POSIX system calls"}, {"name": "library/pprint", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pprint.html", "dispname": "pprint \u2014 Data pretty printer"}, {"name": "library/profile", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/profile.html", "dispname": "The Python Profilers"}, {"name": "library/pty", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pty.html", "dispname": "pty \u2014 Pseudo-terminal utilities"}, {"name": "library/pwd", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pwd.html", "dispname": "pwd \u2014 The password database"}, {"name": "library/py_compile", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/py_compile.html", "dispname": "py_compile \u2014 Compile Python source files"}, {"name": "library/pyclbr", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pyclbr.html", "dispname": "pyclbr \u2014 Python module browser support"}, {"name": "library/pydoc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pydoc.html", "dispname": "pydoc \u2014 Documentation generator and online help system"}, {"name": "library/pyexpat", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/pyexpat.html", "dispname": "xml.parsers.expat \u2014 Fast XML parsing using Expat"}, {"name": "library/python", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/python.html", "dispname": "Python Runtime Services"}, {"name": "library/queue", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/queue.html", "dispname": "queue \u2014 A synchronized queue class"}, {"name": "library/quopri", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/quopri.html", "dispname": "quopri \u2014 Encode and decode MIME quoted-printable data"}, {"name": "library/random", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/random.html", "dispname": "random \u2014 Generate pseudo-random numbers"}, {"name": "library/re", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/re.html", "dispname": "re \u2014 Regular expression operations"}, {"name": "library/readline", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/readline.html", "dispname": "readline \u2014 GNU readline interface"}, {"name": "library/reprlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/reprlib.html", "dispname": "reprlib \u2014 Alternate repr() implementation"}, {"name": "library/resource", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/resource.html", "dispname": "resource \u2014 Resource usage information"}, {"name": "library/rlcompleter", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/rlcompleter.html", "dispname": "rlcompleter \u2014 Completion function for GNU readline"}, {"name": "library/runpy", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/runpy.html", "dispname": "runpy \u2014 Locating and executing Python modules"}, {"name": "library/sched", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/sched.html", "dispname": "sched \u2014 Event scheduler"}, {"name": "library/secrets", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/secrets.html", "dispname": "secrets \u2014 Generate secure random numbers for managing secrets"}, {"name": "library/security_warnings", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/security_warnings.html", "dispname": "Security Considerations"}, {"name": "library/select", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/select.html", "dispname": "select \u2014 Waiting for I/O completion"}, {"name": "library/selectors", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/selectors.html", "dispname": "selectors \u2014 High-level I/O multiplexing"}, {"name": "library/shelve", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/shelve.html", "dispname": "shelve \u2014 Python object persistence"}, {"name": "library/shlex", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/shlex.html", "dispname": "shlex \u2014 Simple lexical analysis"}, {"name": "library/shutil", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/shutil.html", "dispname": "shutil \u2014 High-level file operations"}, {"name": "library/signal", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/signal.html", "dispname": "signal \u2014 Set handlers for asynchronous events"}, {"name": "library/site", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/site.html", "dispname": "site \u2014 Site-specific configuration hook"}, {"name": "library/smtpd", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/smtpd.html", "dispname": "smtpd \u2014 SMTP Server"}, {"name": "library/smtplib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/smtplib.html", "dispname": "smtplib \u2014 SMTP protocol client"}, {"name": "library/sndhdr", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/sndhdr.html", "dispname": "sndhdr \u2014 Determine type of sound file"}, {"name": "library/socket", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/socket.html", "dispname": "socket \u2014 Low-level networking interface"}, {"name": "library/socketserver", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/socketserver.html", "dispname": "socketserver \u2014 A framework for network servers"}, {"name": "library/spwd", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/spwd.html", "dispname": "spwd \u2014 The shadow password database"}, {"name": "library/sqlite3", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/sqlite3.html", "dispname": "sqlite3 \u2014 DB-API 2.0 interface for SQLite databases"}, {"name": "library/ssl", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/ssl.html", "dispname": "ssl \u2014 TLS/SSL wrapper for socket objects"}, {"name": "library/stat", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/stat.html", "dispname": "stat \u2014 Interpreting stat() results"}, {"name": "library/statistics", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/statistics.html", "dispname": "statistics \u2014 Mathematical statistics functions"}, {"name": "library/stdtypes", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/stdtypes.html", "dispname": "Built-in Types"}, {"name": "library/string", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/string.html", "dispname": "string \u2014 Common string operations"}, {"name": "library/stringprep", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/stringprep.html", "dispname": "stringprep \u2014 Internet String Preparation"}, {"name": "library/struct", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/struct.html", "dispname": "struct \u2014 Interpret bytes as packed binary data"}, {"name": "library/subprocess", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/subprocess.html", "dispname": "subprocess \u2014 Subprocess management"}, {"name": "library/sunau", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/sunau.html", "dispname": "sunau \u2014 Read and write Sun AU files"}, {"name": "library/superseded", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/superseded.html", "dispname": "Superseded Modules"}, {"name": "library/symtable", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/symtable.html", "dispname": "symtable \u2014 Access to the compiler\u2019s symbol tables"}, {"name": "library/sys", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/sys.html", "dispname": "sys \u2014 System-specific parameters and functions"}, {"name": "library/sysconfig", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/sysconfig.html", "dispname": "sysconfig \u2014 Provide access to Python\u2019s configuration information"}, {"name": "library/syslog", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/syslog.html", "dispname": "syslog \u2014 Unix syslog library routines"}, {"name": "library/tabnanny", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tabnanny.html", "dispname": "tabnanny \u2014 Detection of ambiguous indentation"}, {"name": "library/tarfile", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tarfile.html", "dispname": "tarfile \u2014 Read and write tar archive files"}, {"name": "library/telnetlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/telnetlib.html", "dispname": "telnetlib \u2014 Telnet client"}, {"name": "library/tempfile", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tempfile.html", "dispname": "tempfile \u2014 Generate temporary files and directories"}, {"name": "library/termios", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/termios.html", "dispname": "termios \u2014 POSIX style tty control"}, {"name": "library/test", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/test.html", "dispname": "test \u2014 Regression tests package for Python"}, {"name": "library/text", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/text.html", "dispname": "Text Processing Services"}, {"name": "library/textwrap", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/textwrap.html", "dispname": "textwrap \u2014 Text wrapping and filling"}, {"name": "library/threading", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/threading.html", "dispname": "threading \u2014 Thread-based parallelism"}, {"name": "library/time", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/time.html", "dispname": "time \u2014 Time access and conversions"}, {"name": "library/timeit", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/timeit.html", "dispname": "timeit \u2014 Measure execution time of small code snippets"}, {"name": "library/tk", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tk.html", "dispname": "Graphical User Interfaces with Tk"}, {"name": "library/tkinter", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.html", "dispname": "tkinter \u2014 Python interface to Tcl/Tk"}, {"name": "library/tkinter.colorchooser", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.colorchooser.html", "dispname": "tkinter.colorchooser \u2014 Color choosing dialog"}, {"name": "library/tkinter.dnd", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.dnd.html", "dispname": "tkinter.dnd \u2014 Drag and drop support"}, {"name": "library/tkinter.font", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.font.html", "dispname": "tkinter.font \u2014 Tkinter font wrapper"}, {"name": "library/tkinter.messagebox", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.messagebox.html", "dispname": "tkinter.messagebox \u2014 Tkinter message prompts"}, {"name": "library/tkinter.scrolledtext", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.scrolledtext.html", "dispname": "tkinter.scrolledtext \u2014 Scrolled Text Widget"}, {"name": "library/tkinter.tix", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.tix.html", "dispname": "tkinter.tix \u2014 Extension widgets for Tk"}, {"name": "library/tkinter.ttk", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tkinter.ttk.html", "dispname": "tkinter.ttk \u2014 Tk themed widgets"}, {"name": "library/token", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/token.html", "dispname": "token \u2014 Constants used with Python parse trees"}, {"name": "library/tokenize", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tokenize.html", "dispname": "tokenize \u2014 Tokenizer for Python source"}, {"name": "library/trace", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/trace.html", "dispname": "trace \u2014 Trace or track Python statement execution"}, {"name": "library/traceback", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/traceback.html", "dispname": "traceback \u2014 Print or retrieve a stack traceback"}, {"name": "library/tracemalloc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tracemalloc.html", "dispname": "tracemalloc \u2014 Trace memory allocations"}, {"name": "library/tty", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/tty.html", "dispname": "tty \u2014 Terminal control functions"}, {"name": "library/turtle", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/turtle.html", "dispname": "turtle \u2014 Turtle graphics"}, {"name": "library/types", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/types.html", "dispname": "types \u2014 Dynamic type creation and names for built-in types"}, {"name": "library/typing", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/typing.html", "dispname": "typing \u2014 Support for type hints"}, {"name": "library/unicodedata", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/unicodedata.html", "dispname": "unicodedata \u2014 Unicode Database"}, {"name": "library/unittest", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/unittest.html", "dispname": "unittest \u2014 Unit testing framework"}, {"name": "library/unittest.mock", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/unittest.mock.html", "dispname": "unittest.mock \u2014 mock object library"}, {"name": "library/unittest.mock-examples", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/unittest.mock-examples.html", "dispname": "unittest.mock \u2014 getting started"}, {"name": "library/unix", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/unix.html", "dispname": "Unix Specific Services"}, {"name": "library/urllib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/urllib.html", "dispname": "urllib \u2014 URL handling modules"}, {"name": "library/urllib.error", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/urllib.error.html", "dispname": "urllib.error \u2014 Exception classes raised by urllib.request"}, {"name": "library/urllib.parse", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/urllib.parse.html", "dispname": "urllib.parse \u2014 Parse URLs into components"}, {"name": "library/urllib.request", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/urllib.request.html", "dispname": "urllib.request \u2014 Extensible library for opening URLs"}, {"name": "library/urllib.robotparser", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/urllib.robotparser.html", "dispname": "urllib.robotparser \u2014 Parser for robots.txt"}, {"name": "library/uu", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/uu.html", "dispname": "uu \u2014 Encode and decode uuencode files"}, {"name": "library/uuid", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/uuid.html", "dispname": "uuid \u2014 UUID objects according to RFC 4122"}, {"name": "library/venv", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/venv.html", "dispname": "venv \u2014 Creation of virtual environments"}, {"name": "library/warnings", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/warnings.html", "dispname": "warnings \u2014 Warning control"}, {"name": "library/wave", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/wave.html", "dispname": "wave \u2014 Read and write WAV files"}, {"name": "library/weakref", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/weakref.html", "dispname": "weakref \u2014 Weak references"}, {"name": "library/webbrowser", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/webbrowser.html", "dispname": "webbrowser \u2014 Convenient web-browser controller"}, {"name": "library/windows", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/windows.html", "dispname": "MS Windows Specific Services"}, {"name": "library/winreg", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/winreg.html", "dispname": "winreg \u2014 Windows registry access"}, {"name": "library/winsound", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/winsound.html", "dispname": "winsound \u2014 Sound-playing interface for Windows"}, {"name": "library/wsgiref", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/wsgiref.html", "dispname": "wsgiref \u2014 WSGI Utilities and Reference Implementation"}, {"name": "library/xdrlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xdrlib.html", "dispname": "xdrlib \u2014 Encode and decode XDR data"}, {"name": "library/xml", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.html", "dispname": "XML Processing Modules"}, {"name": "library/xml.dom", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.dom.html", "dispname": "xml.dom \u2014 The Document Object Model API"}, {"name": "library/xml.dom.minidom", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.dom.minidom.html", "dispname": "xml.dom.minidom \u2014 Minimal DOM implementation"}, {"name": "library/xml.dom.pulldom", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.dom.pulldom.html", "dispname": "xml.dom.pulldom \u2014 Support for building partial DOM trees"}, {"name": "library/xml.etree.elementtree", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.etree.elementtree.html", "dispname": "xml.etree.ElementTree \u2014 The ElementTree XML API"}, {"name": "library/xml.sax", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.sax.html", "dispname": "xml.sax \u2014 Support for SAX2 parsers"}, {"name": "library/xml.sax.handler", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.sax.handler.html", "dispname": "xml.sax.handler \u2014 Base classes for SAX handlers"}, {"name": "library/xml.sax.reader", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.sax.reader.html", "dispname": "xml.sax.xmlreader \u2014 Interface for XML parsers"}, {"name": "library/xml.sax.utils", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xml.sax.utils.html", "dispname": "xml.sax.saxutils \u2014 SAX Utilities"}, {"name": "library/xmlrpc", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xmlrpc.html", "dispname": "xmlrpc \u2014 XMLRPC server and client modules"}, {"name": "library/xmlrpc.client", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xmlrpc.client.html", "dispname": "xmlrpc.client \u2014 XML-RPC client access"}, {"name": "library/xmlrpc.server", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/xmlrpc.server.html", "dispname": "xmlrpc.server \u2014 Basic XML-RPC servers"}, {"name": "library/zipapp", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/zipapp.html", "dispname": "zipapp \u2014 Manage executable Python zip archives"}, {"name": "library/zipfile", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/zipfile.html", "dispname": "zipfile \u2014 Work with ZIP archives"}, {"name": "library/zipimport", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/zipimport.html", "dispname": "zipimport \u2014 Import modules from Zip archives"}, {"name": "library/zlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/zlib.html", "dispname": "zlib \u2014 Compression compatible with gzip"}, {"name": "library/zoneinfo", "domain": "std", "role": "doc", "priority": "-1", "uri": "library/zoneinfo.html", "dispname": "zoneinfo \u2014 IANA time zone support"}, {"name": "license", "domain": "std", "role": "doc", "priority": "-1", "uri": "license.html", "dispname": "History and License"}, {"name": "line-structure", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Line structure"}, {"name": "list", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "list", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "list comprehension", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-list-comprehension", "dispname": "-"}, {"name": "listing-modules", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Listing individual modules"}, {"name": "listing-packages", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Listing whole packages"}, {"name": "listobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/list.html#$", "dispname": "List Objects"}, {"name": "lists", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "List displays"}, {"name": "literal-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Literal Patterns"}, {"name": "literals", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Literals"}, {"name": "ll", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "loader", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "locale encoding", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-locale-encoding", "dispname": "-"}, {"name": "locale-gettext", "domain": "std", "role": "label", "priority": "-1", "uri": "library/locale.html#$", "dispname": "Access to message catalogs"}, {"name": "locator-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.reader.html#$", "dispname": "Locator Objects"}, {"name": "lock-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Lock Objects"}, {"name": "log-record", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "LogRecord Objects"}, {"name": "logger", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "Logger Objects"}, {"name": "logger-adapter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "LoggerAdapter Objects"}, {"name": "logging-advanced-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Advanced Logging Tutorial"}, {"name": "logging-basic-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Basic Logging Tutorial"}, {"name": "logging-config-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Configuration functions"}, {"name": "logging-config-dict-connections", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Object connections"}, {"name": "logging-config-dict-externalobj", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Access to external objects"}, {"name": "logging-config-dict-incremental", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Incremental Configuration"}, {"name": "logging-config-dict-internalobj", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Access to internal objects"}, {"name": "logging-config-dict-userdef", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "User-defined objects"}, {"name": "logging-config-dictschema", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Configuration dictionary schema"}, {"name": "logging-config-dictschema-formatters", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "-"}, {"name": "logging-config-fileformat", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Configuration file format"}, {"name": "logging-cookbook", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Logging Cookbook"}, {"name": "logging-eval-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "-"}, {"name": "logging-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Exceptions raised during logging"}, {"name": "logging-import-resolution", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.config.html#$", "dispname": "Import resolution and custom importers"}, {"name": "logical-lines", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Logical lines"}, {"name": "logical_operands_label", "domain": "std", "role": "label", "priority": "-1", "uri": "library/decimal.html#logical-operands-label", "dispname": "Logical operands"}, {"name": "logrecord-attributes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.html#$", "dispname": "LogRecord attributes"}, {"name": "long", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "longobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/long.html#$", "dispname": "Integer Objects"}, {"name": "lower-level-embedding", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Beyond Very High Level Embedding: An overview"}, {"name": "mac-package-manager", "domain": "std", "role": "label", "priority": "-1", "uri": "using/mac.html#$", "dispname": "Installing Additional Python Packages"}, {"name": "madvise-constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mmap.html#$", "dispname": "MADV_* Constants"}, {"name": "magic method", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-magic-method", "dispname": "-"}, {"name": "magic-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "Mocking Magic Methods"}, {"name": "mailbox-babyl", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "Babyl"}, {"name": "mailbox-babylmessage", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "BabylMessage"}, {"name": "mailbox-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "Examples"}, {"name": "mailbox-maildir", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "Maildir"}, {"name": "mailbox-maildirmessage", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "MaildirMessage"}, {"name": "mailbox-mbox", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "mbox"}, {"name": "mailbox-mboxmessage", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "mboxMessage"}, {"name": "mailbox-message-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "Message objects"}, {"name": "mailbox-mh", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "MH"}, {"name": "mailbox-mhmessage", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "MHMessage"}, {"name": "mailbox-mmdf", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "MMDF"}, {"name": "mailbox-mmdfmessage", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "MMDFMessage"}, {"name": "mailbox-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mailbox.html#$", "dispname": "Mailbox objects"}, {"name": "main_spec", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#main-spec", "dispname": "__main__.__spec__"}, {"name": "manifest", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/sourcedist.html#$", "dispname": "Specifying the files to distribute"}, {"name": "manifest-options", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/sourcedist.html#$", "dispname": "Manifest-related options"}, {"name": "map", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "map-constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mmap.html#$", "dispname": "MAP_* Constants"}, {"name": "mapobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/concrete.html#$", "dispname": "Container Objects"}, {"name": "mapping", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/mapping.html#$", "dispname": "Mapping Protocol"}, {"name": "mapping", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "mapping-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Mapping Patterns"}, {"name": "mapping-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Mapping Object Structures"}, {"name": "markup", "domain": "std", "role": "label", "priority": "-1", "uri": "library/markup.html#$", "dispname": "Structured Markup Processing Tools"}, {"name": "marshalling-utils", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/marshal.html#$", "dispname": "Data marshalling support"}, {"name": "match", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The match statement"}, {"name": "match-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "Match Objects"}, {"name": "max-path", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Removing the MAX_PATH Limitation"}, {"name": "membership-test-details", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Membership test operations"}, {"name": "memory", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Memory Management"}, {"name": "memory-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "MemoryHandler"}, {"name": "memoryexamples", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Examples"}, {"name": "memoryinterface", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Memory Interface"}, {"name": "memoryoverview", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Overview"}, {"name": "memoryview-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memoryview.html#$", "dispname": "-"}, {"name": "meta path finder", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-meta-path-finder", "dispname": "-"}, {"name": "meta-data", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Additional meta-data"}, {"name": "metaclass", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "metaclass", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "metaclasses", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Metaclasses"}, {"name": "metadata", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Distribution metadata"}, {"name": "method", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "method resolution order", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-method-resolution-order", "dispname": "-"}, {"name": "method-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/method.html#$", "dispname": "Method Objects"}, {"name": "methodattrs", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "methodtable", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "The Module\u2019s Method Table and Initialization Function"}, {"name": "mimetypes-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mimetypes.html#$", "dispname": "MimeTypes Objects"}, {"name": "minidom-and-dom", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.minidom.html#$", "dispname": "minidom and the DOM standard"}, {"name": "minidom-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.dom.minidom.html#$", "dispname": "DOM Objects"}, {"name": "mixer-device-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ossaudiodev.html#$", "dispname": "Mixer Device Objects"}, {"name": "mkdir_modebits", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#mkdir-modebits", "dispname": "-"}, {"name": "mmedia", "domain": "std", "role": "label", "priority": "-1", "uri": "library/mm.html#$", "dispname": "Multimedia Services"}, {"name": "modindex", "domain": "std", "role": "label", "priority": "-1", "uri": "py-modindex.html", "dispname": "Module Index"}, {"name": "module", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "module spec", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-module-spec", "dispname": "-"}, {"name": "module-ctypes", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "The ctypes package"}, {"name": "module-etree", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "The ElementTree package"}, {"name": "module-hashlib", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "The hashlib package"}, {"name": "module-sqlite", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "The sqlite3 package"}, {"name": "module-wsgiref", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "The wsgiref package"}, {"name": "modulefinder-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/modulefinder.html#$", "dispname": "Example usage of ModuleFinder"}, {"name": "moduleobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/module.html#$", "dispname": "Module Objects"}, {"name": "modules", "domain": "std", "role": "label", "priority": "-1", "uri": "library/modules.html#$", "dispname": "Importing Modules"}, {"name": "more-metacharacters", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/regex.html#$", "dispname": "More Metacharacters"}, {"name": "morsel-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/http.cookies.html#$", "dispname": "Morsel Objects"}, {"name": "msi-directory", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Directory Objects"}, {"name": "msi-errors", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Errors"}, {"name": "msi-gui", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "GUI classes"}, {"name": "msi-tables", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Precomputed tables"}, {"name": "msvcrt-console", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msvcrt.html#$", "dispname": "Console I/O"}, {"name": "msvcrt-files", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msvcrt.html#$", "dispname": "File Operations"}, {"name": "msvcrt-other", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msvcrt.html#$", "dispname": "Other Functions"}, {"name": "mswin-specific-services", "domain": "std", "role": "label", "priority": "-1", "uri": "library/windows.html#$", "dispname": "MS Windows Specific Services"}, {"name": "multi-phase-initialization", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/module.html#$", "dispname": "Multi-phase initialization"}, {"name": "multiple-destinations", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Logging to multiple destinations"}, {"name": "multiple-processes", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Logging to a single file from multiple processes"}, {"name": "multiprocessing-address-formats", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "Address Formats"}, {"name": "multiprocessing-auth-keys", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "Authentication keys"}, {"name": "multiprocessing-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "Examples"}, {"name": "multiprocessing-listeners-clients", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "Listeners and Clients"}, {"name": "multiprocessing-managers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "Managers"}, {"name": "multiprocessing-programming", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "Programming guidelines"}, {"name": "multiprocessing-proxy_objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#multiprocessing-proxy-objects", "dispname": "Proxy Objects"}, {"name": "multiprocessing-recv-pickle-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing-safe-main-import", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "multiprocessing-start-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/multiprocessing.html#$", "dispname": "-"}, {"name": "mutable", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "name_equals_main", "domain": "std", "role": "label", "priority": "-1", "uri": "library/__main__.html#name-equals-main", "dispname": "__name__ == '__main__'"}, {"name": "named tuple", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-named-tuple", "dispname": "-"}, {"name": "namespace", "domain": "std", "role": "label", "priority": "-1", "uri": "library/argparse.html#$", "dispname": "The Namespace object"}, {"name": "namespace", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "namespace package", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-namespace-package", "dispname": "-"}, {"name": "naming", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#$", "dispname": "Naming and binding"}, {"name": "ne", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "nested scope", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-nested-scope", "dispname": "-"}, {"name": "netdata", "domain": "std", "role": "label", "priority": "-1", "uri": "library/netdata.html#$", "dispname": "Internet Data Handling"}, {"name": "netrc-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/netrc.html#$", "dispname": "netrc Objects"}, {"name": "network-logging", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Sending and receiving logging events across a network"}, {"name": "new-25-context-managers", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "Writing Context Managers"}, {"name": "new-26-context-managers", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "Writing Context Managers"}, {"name": "new-26-interpreter", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "Interpreter Changes"}, {"name": "new-27-interpreter", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "Interpreter Changes"}, {"name": "new-decimal", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "decimal"}, {"name": "new-email", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "email"}, {"name": "new-feat-related-type-hints", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "New Features Related to Type Hints"}, {"name": "new-module-contextlib", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "The contextlib module"}, {"name": "new-style class", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-new-style-class", "dispname": "-"}, {"name": "new-types-topics", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/newtypes.html#$", "dispname": "Defining Extension Types: Assorted Topics"}, {"name": "newtypes", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/objimpl.html#$", "dispname": "Object Implementation Support"}, {"name": "next", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "next", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "nntp-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/nntplib.html#$", "dispname": "NNTP Objects"}, {"name": "noneobject", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/none.html#$", "dispname": "The None Object"}, {"name": "nonlocal", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The nonlocal statement"}, {"name": "nonzero", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "not", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Boolean operations"}, {"name": "not in", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#not-in", "dispname": "Membership test operations"}, {"name": "notation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/introduction.html#$", "dispname": "Notation"}, {"name": "notation:lc_letter", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/introduction.html#grammar-token-notation-lc_letter", "dispname": "-"}, {"name": "notation:name", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/introduction.html#grammar-token-notation-name", "dispname": "-"}, {"name": "nt-eventlog-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "NTEventLogHandler"}, {"name": "null-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "NullHandler"}, {"name": "nullpointers", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "NULL Pointers"}, {"name": "number", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/number.html#$", "dispname": "Number Protocol"}, {"name": "number-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Number Object Structures"}, {"name": "numbers", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Numeric literals"}, {"name": "numeric", "domain": "std", "role": "label", "priority": "-1", "uri": "library/numeric.html#$", "dispname": "Numeric and Mathematical Modules"}, {"name": "numeric-hash", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Hashing of numeric types"}, {"name": "numeric-types", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Emulating numeric types"}, {"name": "numericobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/concrete.html#$", "dispname": "Numeric Objects"}, {"name": "numliterals", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "o_ampersand", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/arg.html#o-ampersand", "dispname": "-"}, {"name": "object", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/object.html#$", "dispname": "Object Protocol"}, {"name": "object", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "objects", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Objects, values and types"}, {"name": "old-string-formatting", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "printf-style String Formatting"}, {"name": "opcode_collections", "domain": "std", "role": "label", "priority": "-1", "uri": "library/dis.html#opcode-collections", "dispname": "Opcode collections"}, {"name": "open-newline-parameter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functions.html#$", "dispname": "-"}, {"name": "opener-director-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "OpenerDirector Objects"}, {"name": "operator", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "operator-map", "domain": "std", "role": "label", "priority": "-1", "uri": "library/operator.html#$", "dispname": "Mapping Operators to Functions"}, {"name": "operator-summary", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Operator precedence"}, {"name": "operators", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Operators"}, {"name": "option-flags-and-directives", "domain": "std", "role": "label", "priority": "-1", "uri": "library/doctest.html#$", "dispname": "Option Flags"}, {"name": "optparse-adding-new-actions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Adding new actions"}, {"name": "optparse-adding-new-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Adding new types"}, {"name": "optparse-background", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Background"}, {"name": "optparse-callback-example-1", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Callback example 1: trivial callback"}, {"name": "optparse-callback-example-2", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Callback example 2: check option order"}, {"name": "optparse-callback-example-3", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Callback example 3: check option order (generalized)"}, {"name": "optparse-callback-example-4", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Callback example 4: check arbitrary condition"}, {"name": "optparse-callback-example-5", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Callback example 5: fixed arguments"}, {"name": "optparse-callback-example-6", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Callback example 6: variable arguments"}, {"name": "optparse-cleanup", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Cleanup"}, {"name": "optparse-conflicts-between-options", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Conflicts between options"}, {"name": "optparse-creating-parser", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Creating the parser"}, {"name": "optparse-default-values", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Default values"}, {"name": "optparse-defining-callback-option", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Defining a callback option"}, {"name": "optparse-defining-options", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Defining options"}, {"name": "optparse-extending-optparse", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Extending optparse"}, {"name": "optparse-generating-help", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Generating help"}, {"name": "optparse-handling-boolean-options", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Handling boolean (flag) options"}, {"name": "optparse-how-callbacks-called", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "How callbacks are called"}, {"name": "optparse-how-optparse-handles-errors", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "How optparse handles errors"}, {"name": "optparse-option-attributes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Option attributes"}, {"name": "optparse-option-callbacks", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Option Callbacks"}, {"name": "optparse-other-actions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Other actions"}, {"name": "optparse-other-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Other methods"}, {"name": "optparse-parsing-arguments", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Parsing arguments"}, {"name": "optparse-populating-parser", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Populating the parser"}, {"name": "optparse-printing-version-string", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Printing a version string"}, {"name": "optparse-putting-it-all-together", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Putting it all together"}, {"name": "optparse-querying-manipulating-option-parser", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Querying and manipulating your option parser"}, {"name": "optparse-raising-errors-in-callback", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Raising errors in a callback"}, {"name": "optparse-reference-guide", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Reference Guide"}, {"name": "optparse-standard-option-actions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Standard option actions"}, {"name": "optparse-standard-option-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Standard option types"}, {"name": "optparse-store-action", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "The store action"}, {"name": "optparse-terminology", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Terminology"}, {"name": "optparse-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Tutorial"}, {"name": "optparse-understanding-option-actions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "Understanding option actions"}, {"name": "optparse-what-options-for", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "What are options for?"}, {"name": "optparse-what-positional-arguments-for", "domain": "std", "role": "label", "priority": "-1", "uri": "library/optparse.html#$", "dispname": "What are positional arguments for?"}, {"name": "opts", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "Optimizations"}, {"name": "or", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Boolean operations"}, {"name": "or-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "OR Patterns"}, {"name": "organizing-tests", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Organizing test code"}, {"name": "os", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/sys.html#$", "dispname": "Operating System Utilities"}, {"name": "os-fd-ops", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "File Descriptor Operations"}, {"name": "os-file-dir", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "Files and Directories"}, {"name": "os-filenames", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "File Names, Command Line Arguments, and Environment Variables"}, {"name": "os-newstreams", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "File Object Creation"}, {"name": "os-path", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "Miscellaneous System Information"}, {"name": "os-process", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "Process Management"}, {"name": "os-procinfo", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "Process Parameters"}, {"name": "ossaudio-device-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ossaudiodev.html#$", "dispname": "Audio Device Objects"}, {"name": "osx-gui-scripts", "domain": "std", "role": "label", "priority": "-1", "uri": "using/mac.html#$", "dispname": "Running scripts with a GUI"}, {"name": "other-improvements-3.4", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#other-improvements-3-4", "dispname": "Other Improvements"}, {"name": "other-lang", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "Other Language Changes"}, {"name": "other-methods-and-attrs", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "other-tokens", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Other tokens"}, {"name": "otherlicenses", "domain": "std", "role": "label", "priority": "-1", "uri": "license.html#$", "dispname": "Licenses and Acknowledgements for Incorporated Software"}, {"name": "otherobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/concrete.html#$", "dispname": "Function Objects"}, {"name": "ownershiprules", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Ownership Rules"}, {"name": "p", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "package", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "package-index", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/packageindex.html#$", "dispname": "The Python Package Index (PyPI)"}, {"name": "package-path-rules", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "module.__path__"}, {"name": "parameter", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "paren", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "parenthesized", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Parenthesized forms"}, {"name": "parsetuple", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Extracting Parameters in Extension Functions"}, {"name": "parsetupleandkeywords", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Keyword Parameters for Extension Functions"}, {"name": "parsing-ascii-encoded-bytes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.parse.html#$", "dispname": "Parsing ASCII Encoded Bytes"}, {"name": "partial-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/functools.html#$", "dispname": "partial Objects"}, {"name": "pass", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The pass statement"}, {"name": "patch-builtins", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "patch builtins"}, {"name": "path based finder", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-path-based-finder", "dispname": "-"}, {"name": "path entry", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-path-entry", "dispname": "-"}, {"name": "path entry finder", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-path-entry-finder", "dispname": "-"}, {"name": "path entry hook", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-path-entry-hook", "dispname": "-"}, {"name": "path-like object", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-path-like-object", "dispname": "-"}, {"name": "path-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipfile.html#$", "dispname": "Path Objects"}, {"name": "path_fd", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#path-fd", "dispname": "-"}, {"name": "pep-0343", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 343: The \u2018with\u2019 statement"}, {"name": "pep-0366", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 366: Explicit Relative Imports From a Main Module"}, {"name": "pep-0370", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 370: Per-user site-packages Directory"}, {"name": "pep-0371", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 371: The multiprocessing Package"}, {"name": "pep-0372", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "PEP 372: Adding an Ordered Dictionary to collections"}, {"name": "pep-0378", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "PEP 378: Format Specifier for Thousands Separator"}, {"name": "pep-308", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 308: Conditional Expressions"}, {"name": "pep-309", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 309: Partial Function Application"}, {"name": "pep-3101", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3101: Advanced String Formatting"}, {"name": "pep-3105", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3105: print As a Function"}, {"name": "pep-3110", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3110: Exception-Handling Changes"}, {"name": "pep-3112", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3112: Byte Literals"}, {"name": "pep-3116", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3116: New I/O Library"}, {"name": "pep-3118", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3118: Revised Buffer Protocol"}, {"name": "pep-3118-update", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 3118: New memoryview implementation and buffer protocol documentation"}, {"name": "pep-3119", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3119: Abstract Base Classes"}, {"name": "pep-3127", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3127: Integer Literal Support and Syntax"}, {"name": "pep-3129", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3129: Class Decorators"}, {"name": "pep-314", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 314: Metadata for Python Software Packages v1.1"}, {"name": "pep-3141", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#$", "dispname": "PEP 3141: A Type Hierarchy for Numbers"}, {"name": "pep-3151", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 3151: Reworking the OS and IO exception hierarchy"}, {"name": "pep-328", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 328: Absolute and Relative Imports"}, {"name": "pep-338", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 338: Executing Modules as Scripts"}, {"name": "pep-341", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 341: Unified try/except/finally"}, {"name": "pep-342", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 342: New Generator Features"}, {"name": "pep-343", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 343: The \u2018with\u2019 statement"}, {"name": "pep-352", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 352: Exceptions as New-Style Classes"}, {"name": "pep-353", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 353: Using ssize_t as the index type"}, {"name": "pep-357", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "PEP 357: The \u2018__index__\u2019 method"}, {"name": "pep-380", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 380: Syntax for Delegating to a Subgenerator"}, {"name": "pep-393", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 393: Flexible String Representation"}, {"name": "pep-397", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 397: Python Launcher for Windows"}, {"name": "pep-405", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 405: Virtual Environments"}, {"name": "pep-412", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "PEP 412: Key-Sharing Dictionary"}, {"name": "pep-476", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 476: Enabling certificate verification by default for stdlib http clients"}, {"name": "persistence", "domain": "std", "role": "label", "priority": "-1", "uri": "library/persistence.html#$", "dispname": "Data Persistence"}, {"name": "physical-lines", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Physical lines"}, {"name": "pickle-dispatch", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Dispatch Tables"}, {"name": "pickle-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Examples"}, {"name": "pickle-inst", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Pickling Class Instances"}, {"name": "pickle-oob", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Out-of-band Buffers"}, {"name": "pickle-persistent", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Persistence of External Objects"}, {"name": "pickle-picklable", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "What can be pickled and unpickled?"}, {"name": "pickle-protocols", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Data stream format"}, {"name": "pickle-restrict", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Restricting Globals"}, {"name": "pickle-state", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#$", "dispname": "Handling Stateful Objects"}, {"name": "pickletools.--annotate", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-a", "dispname": "-"}, {"name": "pickletools.--indentlevel", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-l", "dispname": "-"}, {"name": "pickletools.--memo", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-m", "dispname": "-"}, {"name": "pickletools.--output", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-o", "dispname": "-"}, {"name": "pickletools.--preamble", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-p", "dispname": "-"}, {"name": "pickletools.-a", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-a", "dispname": "-"}, {"name": "pickletools.-l", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-l", "dispname": "-"}, {"name": "pickletools.-m", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-m", "dispname": "-"}, {"name": "pickletools.-o", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-o", "dispname": "-"}, {"name": "pickletools.-p", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/pickletools.html#cmdoption-pickletools-p", "dispname": "-"}, {"name": "pickling", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zoneinfo.html#$", "dispname": "Pickle serialization"}, {"name": "poll-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/select.html#$", "dispname": "Polling Objects"}, {"name": "pop3-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/poplib.html#$", "dispname": "POP3 Example"}, {"name": "pop3-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/poplib.html#$", "dispname": "POP3 Objects"}, {"name": "porting", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "Porting to Python 2.5"}, {"name": "porting-to-python-37", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "Porting to Python 3.7"}, {"name": "portingpythoncode", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.3.html#$", "dispname": "Porting Python code"}, {"name": "portion", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "ports", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.5.html#$", "dispname": "Port-Specific Changes"}, {"name": "positional argument", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-positional-argument", "dispname": "-"}, {"name": "positional-only_parameter", "domain": "std", "role": "label", "priority": "-1", "uri": "glossary.html#positional-only-parameter", "dispname": "-"}, {"name": "posix-contents", "domain": "std", "role": "label", "priority": "-1", "uri": "library/posix.html#$", "dispname": "Notable Module Contents"}, {"name": "posix-large-files", "domain": "std", "role": "label", "priority": "-1", "uri": "library/posix.html#$", "dispname": "Large File Support"}, {"name": "postinstallation-script", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/builtdist.html#$", "dispname": "The Postinstallation script"}, {"name": "power", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "The power operator"}, {"name": "pp", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "pprint-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pprint.html#$", "dispname": "Example"}, {"name": "pre-init-safe", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Before Python Initialization"}, {"name": "preferences", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "Setting preferences"}, {"name": "prefix-matching", "domain": "std", "role": "label", "priority": "-1", "uri": "library/argparse.html#$", "dispname": "Argument abbreviations (prefix matching)"}, {"name": "prepare", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Preparing the class namespace"}, {"name": "prettyprinter-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pprint.html#$", "dispname": "PrettyPrinter Objects"}, {"name": "primaries", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Primaries"}, {"name": "print", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "private-name-mangling", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "-"}, {"name": "processcontrol", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/sys.html#$", "dispname": "Process Control"}, {"name": "processpoolexecutor-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/concurrent.futures.html#$", "dispname": "ProcessPoolExecutor Example"}, {"name": "profile", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "The Python Profilers"}, {"name": "profile-calibration", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "Calibration"}, {"name": "profile-instant", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "Instant User\u2019s Manual"}, {"name": "profile-limitations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "Limitations"}, {"name": "profile-stats", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "The Stats Class"}, {"name": "profile-timers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "Using a custom timer"}, {"name": "profiler-introduction", "domain": "std", "role": "label", "priority": "-1", "uri": "library/profile.html#$", "dispname": "Introduction to the profilers"}, {"name": "profiling", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Profiling and Tracing"}, {"name": "prog_structure", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#prog-structure", "dispname": "Structure of a program"}, {"name": "programs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/toplevel_components.html#$", "dispname": "Complete Python programs"}, {"name": "protocol-error-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.client.html#$", "dispname": "ProtocolError Objects"}, {"name": "protocol_open", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#protocol-open", "dispname": "-"}, {"name": "protocol_request", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#protocol-request", "dispname": "-"}, {"name": "protocol_response", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#protocol-response", "dispname": "-"}, {"name": "provisional API", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-provisional-API", "dispname": "-"}, {"name": "provisional package", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-provisional-package", "dispname": "-"}, {"name": "proxy-basic-auth-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "ProxyBasicAuthHandler Objects"}, {"name": "proxy-digest-auth-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "ProxyDigestAuthHandler Objects"}, {"name": "proxy-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "ProxyHandler Objects"}, {"name": "psf-license", "domain": "std", "role": "label", "priority": "-1", "uri": "license.html#$", "dispname": "PSF LICENSE AGREEMENT FOR PYTHON 3.10.13"}, {"name": "publishing-python-packages", "domain": "std", "role": "label", "priority": "-1", "uri": "distributing/index.html#$", "dispname": "Reading the Python Packaging User Guide"}, {"name": "pure-embedding", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/embedding.html#$", "dispname": "Pure Embedding"}, {"name": "pure-mod", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/examples.html#$", "dispname": "Pure Python distribution (by module)"}, {"name": "pure-paths", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pathlib.html#$", "dispname": "Pure paths"}, {"name": "pure-pkg", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/examples.html#$", "dispname": "Pure Python distribution (by package)"}, {"name": "py-modindex", "domain": "std", "role": "label", "priority": "-1", "uri": "py-modindex.html", "dispname": "Python Module Index"}, {"name": "py-to-json-table", "domain": "std", "role": "label", "priority": "-1", "uri": "library/json.html#$", "dispname": "-"}, {"name": "py27-maintenance-enhancements", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "New Features Added to Python 2.7 Maintenance Releases"}, {"name": "pyc-invalidation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "Cached bytecode invalidation"}, {"name": "pyclbr-class-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyclbr.html#$", "dispname": "Class Objects"}, {"name": "pyclbr-function-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyclbr.html#$", "dispname": "Function Objects"}, {"name": "pymalloc", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "The pymalloc allocator"}, {"name": "pymem-debug-hooks", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/memory.html#$", "dispname": "Debug hooks on the Python memory allocators"}, {"name": "pymemberdef-offsets", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/structures.html#$", "dispname": "-"}, {"name": "pyporting-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/pyporting.html#$", "dispname": "Porting Python 2 Code to Python 3"}, {"name": "python", "domain": "std", "role": "label", "priority": "-1", "uri": "library/python.html#$", "dispname": "Python Runtime Services"}, {"name": "python--m-py_compile.-", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/py_compile.html#cmdoption-python-m-py_compile", "dispname": "-"}, {"name": "python--m-py_compile.--quiet", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/py_compile.html#cmdoption-python-m-py_compile-q", "dispname": "-"}, {"name": "python--m-py_compile.-q", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/py_compile.html#cmdoption-python-m-py_compile-q", "dispname": "-"}, {"name": "python--m-py_compile.", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/py_compile.html#cmdoption-python-m-py_compile-arg-file", "dispname": "-"}, {"name": "python-grammar:a_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-a_expr", "dispname": "-"}, {"name": "python-grammar:and_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-and_expr", "dispname": "-"}, {"name": "python-grammar:and_test", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-and_test", "dispname": "-"}, {"name": "python-grammar:annotated_assignment_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-annotated_assignment_stmt", "dispname": "-"}, {"name": "python-grammar:argument_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-argument_list", "dispname": "-"}, {"name": "python-grammar:as_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-as_pattern", "dispname": "-"}, {"name": "python-grammar:assert_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-assert_stmt", "dispname": "-"}, {"name": "python-grammar:assignment_expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-assignment_expression", "dispname": "-"}, {"name": "python-grammar:assignment_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-assignment_stmt", "dispname": "-"}, {"name": "python-grammar:async_for_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-async_for_stmt", "dispname": "-"}, {"name": "python-grammar:async_funcdef", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-async_funcdef", "dispname": "-"}, {"name": "python-grammar:async_with_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-async_with_stmt", "dispname": "-"}, {"name": "python-grammar:atom", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-atom", "dispname": "-"}, {"name": "python-grammar:attr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-attr", "dispname": "-"}, {"name": "python-grammar:attributeref", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-attributeref", "dispname": "-"}, {"name": "python-grammar:augmented_assignment_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-augmented_assignment_stmt", "dispname": "-"}, {"name": "python-grammar:augop", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-augop", "dispname": "-"}, {"name": "python-grammar:augtarget", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-augtarget", "dispname": "-"}, {"name": "python-grammar:await_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-await_expr", "dispname": "-"}, {"name": "python-grammar:bindigit", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-bindigit", "dispname": "-"}, {"name": "python-grammar:bininteger", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-bininteger", "dispname": "-"}, {"name": "python-grammar:break_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-break_stmt", "dispname": "-"}, {"name": "python-grammar:bytesescapeseq", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-bytesescapeseq", "dispname": "-"}, {"name": "python-grammar:bytesliteral", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-bytesliteral", "dispname": "-"}, {"name": "python-grammar:bytesprefix", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-bytesprefix", "dispname": "-"}, {"name": "python-grammar:call", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-call", "dispname": "-"}, {"name": "python-grammar:capture_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-capture_pattern", "dispname": "-"}, {"name": "python-grammar:case_block", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-case_block", "dispname": "-"}, {"name": "python-grammar:class_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-class_pattern", "dispname": "-"}, {"name": "python-grammar:classdef", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-classdef", "dispname": "-"}, {"name": "python-grammar:classname", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-classname", "dispname": "-"}, {"name": "python-grammar:closed_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-closed_pattern", "dispname": "-"}, {"name": "python-grammar:comp_for", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-comp_for", "dispname": "-"}, {"name": "python-grammar:comp_if", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-comp_if", "dispname": "-"}, {"name": "python-grammar:comp_iter", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-comp_iter", "dispname": "-"}, {"name": "python-grammar:comp_operator", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-comp_operator", "dispname": "-"}, {"name": "python-grammar:comparison", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-comparison", "dispname": "-"}, {"name": "python-grammar:compound_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-compound_stmt", "dispname": "-"}, {"name": "python-grammar:comprehension", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-comprehension", "dispname": "-"}, {"name": "python-grammar:conditional_expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-conditional_expression", "dispname": "-"}, {"name": "python-grammar:continue_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-continue_stmt", "dispname": "-"}, {"name": "python-grammar:conversion", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-conversion", "dispname": "-"}, {"name": "python-grammar:decinteger", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-decinteger", "dispname": "-"}, {"name": "python-grammar:decorator", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-decorator", "dispname": "-"}, {"name": "python-grammar:decorators", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-decorators", "dispname": "-"}, {"name": "python-grammar:defparameter", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-defparameter", "dispname": "-"}, {"name": "python-grammar:del_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-del_stmt", "dispname": "-"}, {"name": "python-grammar:dict_comprehension", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-dict_comprehension", "dispname": "-"}, {"name": "python-grammar:dict_display", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-dict_display", "dispname": "-"}, {"name": "python-grammar:digit", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-digit", "dispname": "-"}, {"name": "python-grammar:digitpart", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-digitpart", "dispname": "-"}, {"name": "python-grammar:double_star_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-double_star_pattern", "dispname": "-"}, {"name": "python-grammar:enclosure", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-enclosure", "dispname": "-"}, {"name": "python-grammar:eval_input", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/toplevel_components.html#grammar-token-python-grammar-eval_input", "dispname": "-"}, {"name": "python-grammar:exponent", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-exponent", "dispname": "-"}, {"name": "python-grammar:exponentfloat", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-exponentfloat", "dispname": "-"}, {"name": "python-grammar:expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-expression", "dispname": "-"}, {"name": "python-grammar:expression_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-expression_list", "dispname": "-"}, {"name": "python-grammar:expression_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-expression_stmt", "dispname": "-"}, {"name": "python-grammar:f_expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-f_expression", "dispname": "-"}, {"name": "python-grammar:f_string", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-f_string", "dispname": "-"}, {"name": "python-grammar:feature", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-feature", "dispname": "-"}, {"name": "python-grammar:file_input", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/toplevel_components.html#grammar-token-python-grammar-file_input", "dispname": "-"}, {"name": "python-grammar:floatnumber", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-floatnumber", "dispname": "-"}, {"name": "python-grammar:for_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-for_stmt", "dispname": "-"}, {"name": "python-grammar:format_spec", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-format_spec", "dispname": "-"}, {"name": "python-grammar:fraction", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-fraction", "dispname": "-"}, {"name": "python-grammar:funcdef", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-funcdef", "dispname": "-"}, {"name": "python-grammar:funcname", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-funcname", "dispname": "-"}, {"name": "python-grammar:future_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-future_stmt", "dispname": "-"}, {"name": "python-grammar:generator_expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-generator_expression", "dispname": "-"}, {"name": "python-grammar:global_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-global_stmt", "dispname": "-"}, {"name": "python-grammar:group_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-group_pattern", "dispname": "-"}, {"name": "python-grammar:guard", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-guard", "dispname": "-"}, {"name": "python-grammar:hexdigit", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-hexdigit", "dispname": "-"}, {"name": "python-grammar:hexinteger", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-hexinteger", "dispname": "-"}, {"name": "python-grammar:id_continue", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-id_continue", "dispname": "-"}, {"name": "python-grammar:id_start", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-id_start", "dispname": "-"}, {"name": "python-grammar:identifier", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-identifier", "dispname": "-"}, {"name": "python-grammar:if_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-if_stmt", "dispname": "-"}, {"name": "python-grammar:imagnumber", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-imagnumber", "dispname": "-"}, {"name": "python-grammar:import_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-import_stmt", "dispname": "-"}, {"name": "python-grammar:inheritance", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-inheritance", "dispname": "-"}, {"name": "python-grammar:integer", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-integer", "dispname": "-"}, {"name": "python-grammar:interactive_input", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/toplevel_components.html#grammar-token-python-grammar-interactive_input", "dispname": "-"}, {"name": "python-grammar:items_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-items_pattern", "dispname": "-"}, {"name": "python-grammar:key_datum", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-key_datum", "dispname": "-"}, {"name": "python-grammar:key_datum_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-key_datum_list", "dispname": "-"}, {"name": "python-grammar:key_value_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-key_value_pattern", "dispname": "-"}, {"name": "python-grammar:keyword_item", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-keyword_item", "dispname": "-"}, {"name": "python-grammar:keyword_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-keyword_pattern", "dispname": "-"}, {"name": "python-grammar:keyword_patterns", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-keyword_patterns", "dispname": "-"}, {"name": "python-grammar:keywords_arguments", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-keywords_arguments", "dispname": "-"}, {"name": "python-grammar:lambda_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-lambda_expr", "dispname": "-"}, {"name": "python-grammar:list_display", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-list_display", "dispname": "-"}, {"name": "python-grammar:literal", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-literal", "dispname": "-"}, {"name": "python-grammar:literal_char", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-literal_char", "dispname": "-"}, {"name": "python-grammar:literal_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-literal_pattern", "dispname": "-"}, {"name": "python-grammar:longbytes", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-longbytes", "dispname": "-"}, {"name": "python-grammar:longbyteschar", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-longbyteschar", "dispname": "-"}, {"name": "python-grammar:longbytesitem", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-longbytesitem", "dispname": "-"}, {"name": "python-grammar:longstring", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-longstring", "dispname": "-"}, {"name": "python-grammar:longstringchar", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-longstringchar", "dispname": "-"}, {"name": "python-grammar:longstringitem", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-longstringitem", "dispname": "-"}, {"name": "python-grammar:lower_bound", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-lower_bound", "dispname": "-"}, {"name": "python-grammar:m_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-m_expr", "dispname": "-"}, {"name": "python-grammar:mapping_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-mapping_pattern", "dispname": "-"}, {"name": "python-grammar:match_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-match_stmt", "dispname": "-"}, {"name": "python-grammar:maybe_sequence_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-maybe_sequence_pattern", "dispname": "-"}, {"name": "python-grammar:maybe_star_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-maybe_star_pattern", "dispname": "-"}, {"name": "python-grammar:module", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-module", "dispname": "-"}, {"name": "python-grammar:name", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-name", "dispname": "-"}, {"name": "python-grammar:name_or_attr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-name_or_attr", "dispname": "-"}, {"name": "python-grammar:nonlocal_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-nonlocal_stmt", "dispname": "-"}, {"name": "python-grammar:nonzerodigit", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-nonzerodigit", "dispname": "-"}, {"name": "python-grammar:not_test", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-not_test", "dispname": "-"}, {"name": "python-grammar:octdigit", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-octdigit", "dispname": "-"}, {"name": "python-grammar:octinteger", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-octinteger", "dispname": "-"}, {"name": "python-grammar:open_sequence_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-open_sequence_pattern", "dispname": "-"}, {"name": "python-grammar:or_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-or_expr", "dispname": "-"}, {"name": "python-grammar:or_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-or_pattern", "dispname": "-"}, {"name": "python-grammar:or_test", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-or_test", "dispname": "-"}, {"name": "python-grammar:parameter", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-parameter", "dispname": "-"}, {"name": "python-grammar:parameter_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-parameter_list", "dispname": "-"}, {"name": "python-grammar:parameter_list_no_posonly", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-parameter_list_no_posonly", "dispname": "-"}, {"name": "python-grammar:parameter_list_starargs", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-parameter_list_starargs", "dispname": "-"}, {"name": "python-grammar:parenth_form", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-parenth_form", "dispname": "-"}, {"name": "python-grammar:pass_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-pass_stmt", "dispname": "-"}, {"name": "python-grammar:pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-pattern", "dispname": "-"}, {"name": "python-grammar:pattern_arguments", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-pattern_arguments", "dispname": "-"}, {"name": "python-grammar:patterns", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-patterns", "dispname": "-"}, {"name": "python-grammar:pointfloat", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-pointfloat", "dispname": "-"}, {"name": "python-grammar:positional_arguments", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-positional_arguments", "dispname": "-"}, {"name": "python-grammar:positional_item", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-positional_item", "dispname": "-"}, {"name": "python-grammar:positional_patterns", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-positional_patterns", "dispname": "-"}, {"name": "python-grammar:power", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-power", "dispname": "-"}, {"name": "python-grammar:primary", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-primary", "dispname": "-"}, {"name": "python-grammar:proper_slice", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-proper_slice", "dispname": "-"}, {"name": "python-grammar:raise_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-raise_stmt", "dispname": "-"}, {"name": "python-grammar:relative_module", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-relative_module", "dispname": "-"}, {"name": "python-grammar:replacement_field", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-replacement_field", "dispname": "-"}, {"name": "python-grammar:return_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-return_stmt", "dispname": "-"}, {"name": "python-grammar:sequence_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-sequence_pattern", "dispname": "-"}, {"name": "python-grammar:set_display", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-set_display", "dispname": "-"}, {"name": "python-grammar:shift_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-shift_expr", "dispname": "-"}, {"name": "python-grammar:shortbytes", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-shortbytes", "dispname": "-"}, {"name": "python-grammar:shortbyteschar", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-shortbyteschar", "dispname": "-"}, {"name": "python-grammar:shortbytesitem", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-shortbytesitem", "dispname": "-"}, {"name": "python-grammar:shortstring", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-shortstring", "dispname": "-"}, {"name": "python-grammar:shortstringchar", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-shortstringchar", "dispname": "-"}, {"name": "python-grammar:shortstringitem", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-shortstringitem", "dispname": "-"}, {"name": "python-grammar:simple_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-simple_stmt", "dispname": "-"}, {"name": "python-grammar:slice_item", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-slice_item", "dispname": "-"}, {"name": "python-grammar:slice_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-slice_list", "dispname": "-"}, {"name": "python-grammar:slicing", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-slicing", "dispname": "-"}, {"name": "python-grammar:star_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-star_pattern", "dispname": "-"}, {"name": "python-grammar:starred_and_keywords", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-starred_and_keywords", "dispname": "-"}, {"name": "python-grammar:starred_expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-starred_expression", "dispname": "-"}, {"name": "python-grammar:starred_item", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-starred_item", "dispname": "-"}, {"name": "python-grammar:starred_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-starred_list", "dispname": "-"}, {"name": "python-grammar:statement", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-statement", "dispname": "-"}, {"name": "python-grammar:stmt_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-stmt_list", "dispname": "-"}, {"name": "python-grammar:stride", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-stride", "dispname": "-"}, {"name": "python-grammar:stringescapeseq", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-stringescapeseq", "dispname": "-"}, {"name": "python-grammar:stringliteral", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-stringliteral", "dispname": "-"}, {"name": "python-grammar:stringprefix", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-stringprefix", "dispname": "-"}, {"name": "python-grammar:subject_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-subject_expr", "dispname": "-"}, {"name": "python-grammar:subscription", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-subscription", "dispname": "-"}, {"name": "python-grammar:suite", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-suite", "dispname": "-"}, {"name": "python-grammar:target", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-target", "dispname": "-"}, {"name": "python-grammar:target_list", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-target_list", "dispname": "-"}, {"name": "python-grammar:try1_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-try1_stmt", "dispname": "-"}, {"name": "python-grammar:try2_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-try2_stmt", "dispname": "-"}, {"name": "python-grammar:try_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-try_stmt", "dispname": "-"}, {"name": "python-grammar:u_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-u_expr", "dispname": "-"}, {"name": "python-grammar:upper_bound", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-upper_bound", "dispname": "-"}, {"name": "python-grammar:value_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-value_pattern", "dispname": "-"}, {"name": "python-grammar:while_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-while_stmt", "dispname": "-"}, {"name": "python-grammar:wildcard_pattern", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-wildcard_pattern", "dispname": "-"}, {"name": "python-grammar:with_item", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-with_item", "dispname": "-"}, {"name": "python-grammar:with_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-with_stmt", "dispname": "-"}, {"name": "python-grammar:with_stmt_contents", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/compound_stmts.html#grammar-token-python-grammar-with_stmt_contents", "dispname": "-"}, {"name": "python-grammar:xid_continue", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-xid_continue", "dispname": "-"}, {"name": "python-grammar:xid_start", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/lexical_analysis.html#grammar-token-python-grammar-xid_start", "dispname": "-"}, {"name": "python-grammar:xor_expr", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-xor_expr", "dispname": "-"}, {"name": "python-grammar:yield_atom", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-yield_atom", "dispname": "-"}, {"name": "python-grammar:yield_expression", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/expressions.html#grammar-token-python-grammar-yield_expression", "dispname": "-"}, {"name": "python-grammar:yield_stmt", "domain": "std", "role": "token", "priority": "-1", "uri": "reference/simple_stmts.html#grammar-token-python-grammar-yield_stmt", "dispname": "-"}, {"name": "python-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "library/timeit.html#$", "dispname": "Python Interface"}, {"name": "python-shell", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "-"}, {"name": "python-terms", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/introduction.html#$", "dispname": "General Python terminology"}, {"name": "pyzipfile-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipfile.html#$", "dispname": "PyZipFile Objects"}, {"name": "qt-gui", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "A Qt GUI for logging"}, {"name": "qualified name", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-qualified-name", "dispname": "-"}, {"name": "queue-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "QueueHandler"}, {"name": "queue-listener", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "QueueListener"}, {"name": "queueobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/queue.html#$", "dispname": "Queue Objects"}, {"name": "quit", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "raise", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The raise statement"}, {"name": "raise", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "random-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/random.html#$", "dispname": "Examples"}, {"name": "raw_input", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "rawconfigparser-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/configparser.html#$", "dispname": "RawConfigParser Objects"}, {"name": "re-conditional-expression", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "-"}, {"name": "re-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "Regular Expression Examples"}, {"name": "re-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "Regular Expression Objects"}, {"name": "re-syntax", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "Regular Expression Syntax"}, {"name": "readline-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/readline.html#$", "dispname": "Example"}, {"name": "real-valued-distributions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/random.html#$", "dispname": "Real-valued distributions"}, {"name": "record-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Record Objects"}, {"name": "recursion", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/exceptions.html#$", "dispname": "Recursion Control"}, {"name": "reduce", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "reducer_override", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pickle.html#reducer-override", "dispname": "Custom Reduction for Types, Functions, and Other Objects"}, {"name": "reentrant-cms", "domain": "std", "role": "label", "priority": "-1", "uri": "library/contextlib.html#$", "dispname": "Reentrant context managers"}, {"name": "refcounts", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Reference Counts"}, {"name": "refcountsinpython", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Reference Counting in Python"}, {"name": "reference", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/commandref.html#$", "dispname": "Command Reference"}, {"name": "reference count", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-reference-count", "dispname": "-"}, {"name": "reference-index", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/index.html#$", "dispname": "The Python Language Reference"}, {"name": "reference/compound_stmts", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/compound_stmts.html", "dispname": "Compound statements"}, {"name": "reference/datamodel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/datamodel.html", "dispname": "Data model"}, {"name": "reference/executionmodel", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/executionmodel.html", "dispname": "Execution model"}, {"name": "reference/expressions", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/expressions.html", "dispname": "Expressions"}, {"name": "reference/grammar", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/grammar.html", "dispname": "Full Grammar specification"}, {"name": "reference/import", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/import.html", "dispname": "The import system"}, {"name": "reference/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/index.html", "dispname": "The Python Language Reference"}, {"name": "reference/introduction", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/introduction.html", "dispname": "Introduction"}, {"name": "reference/lexical_analysis", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/lexical_analysis.html", "dispname": "Lexical analysis"}, {"name": "reference/simple_stmts", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/simple_stmts.html", "dispname": "Simple statements"}, {"name": "reference/toplevel_components", "domain": "std", "role": "doc", "priority": "-1", "uri": "reference/toplevel_components.html", "dispname": "Top-level components"}, {"name": "reflection", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/reflection.html#$", "dispname": "Reflection"}, {"name": "regex-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/regex.html#$", "dispname": "Regular Expression HOWTO"}, {"name": "regrtest", "domain": "std", "role": "label", "priority": "-1", "uri": "library/test.html#$", "dispname": "Running tests using the command-line interface"}, {"name": "regular package", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-regular-package", "dispname": "-"}, {"name": "relativeimports", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/import.html#$", "dispname": "Package Relative Imports"}, {"name": "relevant-peps", "domain": "std", "role": "label", "priority": "-1", "uri": "library/typing.html#$", "dispname": "Relevant PEPs"}, {"name": "reload", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "removed-in-python-39", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.9.html#$", "dispname": "Removed"}, {"name": "renames", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "reporting-bugs", "domain": "std", "role": "label", "priority": "-1", "uri": "bugs.html#$", "dispname": "Dealing with Bugs"}, {"name": "repr", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "repr-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/reprlib.html#$", "dispname": "Repr Objects"}, {"name": "request-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "Request Objects"}, {"name": "requirements", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Distribution requirements"}, {"name": "resolve_names", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#resolve-names", "dispname": "Resolution of names"}, {"name": "restart", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "restrict_exec", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/executionmodel.html#restrict-exec", "dispname": "Builtins and restricted execution"}, {"name": "return", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The return statement"}, {"name": "return", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "retval", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "reusable-cms", "domain": "std", "role": "label", "priority": "-1", "uri": "library/contextlib.html#$", "dispname": "Reusable context managers"}, {"name": "richcmpfuncs", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "rlcompleter-config", "domain": "std", "role": "label", "priority": "-1", "uri": "library/site.html#$", "dispname": "Readline configuration"}, {"name": "rlock-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "RLock Objects"}, {"name": "rotating-file-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "RotatingFileHandler"}, {"name": "run", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "run-custom", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "-"}, {"name": "run-module", "domain": "std", "role": "label", "priority": "-1", "uri": "library/idle.html#$", "dispname": "-"}, {"name": "sax-error-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.handler.html#$", "dispname": "ErrorHandler Objects"}, {"name": "sax-exception-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.html#$", "dispname": "SAXException Objects"}, {"name": "scheduler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sched.html#$", "dispname": "Scheduler Objects"}, {"name": "screenspecific", "domain": "std", "role": "label", "priority": "-1", "uri": "library/turtle.html#$", "dispname": "Methods specific to Screen, not inherited from TurtleScreen"}, {"name": "sdist-cmd", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/commandref.html#$", "dispname": "Creating a source distribution: the sdist command"}, {"name": "search", "domain": "std", "role": "label", "priority": "-1", "uri": "search.html", "dispname": "Search Page"}, {"name": "search-vs-match", "domain": "std", "role": "label", "priority": "-1", "uri": "library/re.html#$", "dispname": "search() vs. match()"}, {"name": "sect-rellinks", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.2.html#$", "dispname": "Related Links"}, {"name": "section-bool", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 285: A Boolean Type"}, {"name": "section-encodings", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 263: Source Code Encodings"}, {"name": "section-enumerate", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 279: enumerate()"}, {"name": "section-generators", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 255: Simple Generators"}, {"name": "section-pep301", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 301: Package Index and Metadata for Distutils"}, {"name": "section-pep302", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 302: New Import Hooks"}, {"name": "section-pep305", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 305: Comma-separated Files"}, {"name": "section-pep307", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "PEP 307: Pickle Enhancements"}, {"name": "section-pymalloc", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "Pymalloc: A Specialized Object Allocator"}, {"name": "section-slices", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.3.html#$", "dispname": "Extended Slices"}, {"name": "security-warnings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/security_warnings.html#$", "dispname": "-"}, {"name": "semaphore-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Semaphore Example"}, {"name": "semaphore-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Semaphore Objects"}, {"name": "sequence", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/sequence.html#$", "dispname": "Sequence Protocol"}, {"name": "sequence", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "sequence-matcher", "domain": "std", "role": "label", "priority": "-1", "uri": "library/difflib.html#$", "dispname": "SequenceMatcher Objects"}, {"name": "sequence-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Sequence Patterns"}, {"name": "sequence-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Sequence Object Structures"}, {"name": "sequence-types", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Emulating container types"}, {"name": "sequencematcher-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/difflib.html#$", "dispname": "SequenceMatcher Examples"}, {"name": "sequenceobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/concrete.html#$", "dispname": "Sequence Objects"}, {"name": "serverproxy-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.client.html#$", "dispname": "ServerProxy Objects"}, {"name": "set", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Set displays"}, {"name": "set comprehension", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-set-comprehension", "dispname": "-"}, {"name": "set_literal", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "setobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/set.html#$", "dispname": "Set Objects"}, {"name": "setting-envvars", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Excursus: Setting environment variables"}, {"name": "setup-config", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/configfile.html#$", "dispname": "Writing the Setup Configuration File"}, {"name": "setup-script", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/setupscript.html#$", "dispname": "Writing the Setup Script"}, {"name": "shallow_vs_deep_copy", "domain": "std", "role": "label", "priority": "-1", "uri": "library/copy.html#shallow-vs-deep-copy", "dispname": "-"}, {"name": "shelve-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shelve.html#$", "dispname": "Example"}, {"name": "shelve-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shelve.html#$", "dispname": "-"}, {"name": "shifting", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Shifting operations"}, {"name": "shlex-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shlex.html#$", "dispname": "shlex Objects"}, {"name": "shlex-parsing-rules", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shlex.html#$", "dispname": "Parsing Rules"}, {"name": "shlex-quote-warning", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shlex.html#$", "dispname": "-"}, {"name": "shutil-archiving-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "Archiving example"}, {"name": "shutil-archiving-example-with-basedir", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "Archiving example with base_dir"}, {"name": "shutil-copytree-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "copytree example"}, {"name": "shutil-platform-dependent-efficient-copy-operations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "Platform-dependent efficient copy operations"}, {"name": "shutil-rmtree-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/shutil.html#$", "dispname": "rmtree example"}, {"name": "signal-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/signal.html#$", "dispname": "Example"}, {"name": "signals-and-threads", "domain": "std", "role": "label", "priority": "-1", "uri": "library/signal.html#$", "dispname": "Signals and threads"}, {"name": "simple", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "Simple statements"}, {"name": "simple-xmlrpc-servers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.server.html#$", "dispname": "SimpleXMLRPCServer Objects"}, {"name": "simplexmlrpcserver-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.server.html#$", "dispname": "SimpleXMLRPCServer Example"}, {"name": "simplifying-support-for-single-optional-context-managers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/contextlib.html#$", "dispname": "-"}, {"name": "single dispatch", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-single-dispatch", "dispname": "-"}, {"name": "single-ext", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/examples.html#$", "dispname": "Single extension module"}, {"name": "single-use-reusable-and-reentrant-cms", "domain": "std", "role": "label", "priority": "-1", "uri": "library/contextlib.html#$", "dispname": "Single use, reusable and reentrant context managers"}, {"name": "site-commandline", "domain": "std", "role": "label", "priority": "-1", "uri": "library/site.html#$", "dispname": "Command Line Interface"}, {"name": "site.--user-base", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/site.html#cmdoption-site-user-base", "dispname": "-"}, {"name": "site.--user-site", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/site.html#cmdoption-site-user-site", "dispname": "-"}, {"name": "slice", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "slice-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/slice.html#$", "dispname": "Slice Objects"}, {"name": "slicings", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Slicings"}, {"name": "slot-typedefs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#id6", "dispname": "Slot Type typedefs"}, {"name": "slot-typedefs-table", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "slot typedefs"}, {"name": "slots", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "__slots__"}, {"name": "smtp-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/smtplib.html#$", "dispname": "SMTP Example"}, {"name": "smtp-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "SMTPHandler"}, {"name": "smtp-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/smtplib.html#$", "dispname": "SMTP Objects"}, {"name": "socket-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/socket.html#$", "dispname": "Example"}, {"name": "socket-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "SocketHandler"}, {"name": "socket-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/sockets.html#$", "dispname": "Socket Programming HOWTO"}, {"name": "socket-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/socket.html#$", "dispname": "Socket Objects"}, {"name": "socket-timeouts", "domain": "std", "role": "label", "priority": "-1", "uri": "library/socket.html#$", "dispname": "Notes on socket timeouts"}, {"name": "soft-keywords", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Soft Keywords"}, {"name": "sortinghowto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/sorting.html#$", "dispname": "Sorting HOW TO"}, {"name": "source", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "source-dist", "domain": "std", "role": "label", "priority": "-1", "uri": "distutils/sourcedist.html#$", "dispname": "Creating a Source Distribution"}, {"name": "special method", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-special-method", "dispname": "-"}, {"name": "special-lookup", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Special method lookup"}, {"name": "specialattrs", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Special Attributes"}, {"name": "specialnames", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "Special method names"}, {"name": "spoken-messages", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Speaking logging messages"}, {"name": "sqlite3-adapter-converter-recipes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Adapter and converter recipes"}, {"name": "sqlite3-adapters", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to adapt custom Python types to SQLite values"}, {"name": "sqlite3-columns-by-name", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Row objects"}, {"name": "sqlite3-conform", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to write adaptable objects"}, {"name": "sqlite3-connection-context-manager", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to use the connection context manager"}, {"name": "sqlite3-connection-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Connection objects"}, {"name": "sqlite3-connection-shortcuts", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to use connection shortcut methods"}, {"name": "sqlite3-controlling-transactions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Transaction control"}, {"name": "sqlite3-converters", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to convert SQLite values to custom Python types"}, {"name": "sqlite3-cursor-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Cursor objects"}, {"name": "sqlite3-default-converters", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Default adapters and converters"}, {"name": "sqlite3-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Exceptions"}, {"name": "sqlite3-explanation", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Explanation"}, {"name": "sqlite3-howto-row-factory", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to create and use row factories"}, {"name": "sqlite3-howtos", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How-to guides"}, {"name": "sqlite3-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "-"}, {"name": "sqlite3-module-constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Module constants"}, {"name": "sqlite3-module-contents", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Module functions"}, {"name": "sqlite3-module-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Module functions"}, {"name": "sqlite3-placeholders", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to use placeholders to bind values in SQL queries"}, {"name": "sqlite3-reference", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Reference"}, {"name": "sqlite3-row-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Row objects"}, {"name": "sqlite3-tutorial", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "Tutorial"}, {"name": "sqlite3-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "SQLite and Python types"}, {"name": "sqlite3-uri-tricks", "domain": "std", "role": "label", "priority": "-1", "uri": "library/sqlite3.html#$", "dispname": "How to work with SQLite URIs"}, {"name": "ssl-certificates", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ssl.html#$", "dispname": "Certificates"}, {"name": "ssl-nonblocking", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ssl.html#$", "dispname": "Notes on non-blocking sockets"}, {"name": "ssl-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ssl.html#$", "dispname": "Security considerations"}, {"name": "ssl-tlsv1_3", "domain": "std", "role": "label", "priority": "-1", "uri": "library/ssl.html#ssl-tlsv1-3", "dispname": "TLS 1.3"}, {"name": "stable", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/stable.html#$", "dispname": "C API Stability"}, {"name": "stable-abi-list", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/stable.html#$", "dispname": "Contents of Limited API"}, {"name": "stable-abi-platform", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/stable.html#$", "dispname": "Platform Considerations"}, {"name": "standard-encodings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Standard Encodings"}, {"name": "standarderror", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "standardexceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/exceptions.html#$", "dispname": "Standard Exceptions"}, {"name": "standardwarningcategories", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/exceptions.html#$", "dispname": "Standard Warning Categories"}, {"name": "start-and-stop", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "patch methods: start and stop"}, {"name": "starter-template", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "A CLI application starter template"}, {"name": "statement", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "static-types", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Static Types"}, {"name": "stdcomparisons", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Comparisons"}, {"name": "step", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "stream-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "StreamHandler"}, {"name": "stream-reader-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "StreamReader Objects"}, {"name": "stream-reader-writer", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "StreamReaderWriter Objects"}, {"name": "stream-recoder-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "StreamRecoder Objects"}, {"name": "stream-writer-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "StreamWriter Objects"}, {"name": "strftime-strptime-behavior", "domain": "std", "role": "label", "priority": "-1", "uri": "library/datetime.html#$", "dispname": "strftime() and strptime() Behavior"}, {"name": "string-concatenation", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "String literal concatenation"}, {"name": "string-conversion", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/conversion.html#$", "dispname": "String conversion and formatting"}, {"name": "string-formatting", "domain": "std", "role": "label", "priority": "-1", "uri": "library/string.html#$", "dispname": "Custom String Formatting"}, {"name": "string-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "String Methods"}, {"name": "strings", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "String and Bytes literals"}, {"name": "stringservices", "domain": "std", "role": "label", "priority": "-1", "uri": "library/text.html#$", "dispname": "Text Processing Services"}, {"name": "strong reference", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-strong-reference", "dispname": "-"}, {"name": "struct-alignment", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Byte Order, Size, and Alignment"}, {"name": "struct-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Examples"}, {"name": "struct-format-strings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Format Strings"}, {"name": "struct-native-formats", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Native Formats"}, {"name": "struct-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Classes"}, {"name": "struct-standard-formats", "domain": "std", "role": "label", "priority": "-1", "uri": "library/struct.html#$", "dispname": "Standard Formats"}, {"name": "sub-interpreter-support", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Sub-interpreter support"}, {"name": "sub-slots", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "-"}, {"name": "subclassing-reprs", "domain": "std", "role": "label", "priority": "-1", "uri": "library/reprlib.html#$", "dispname": "Subclassing Repr Objects"}, {"name": "subprocess-replacements", "domain": "std", "role": "label", "priority": "-1", "uri": "library/subprocess.html#$", "dispname": "Replacing Older Functions with the subprocess Module"}, {"name": "subprocess-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/subprocess.html#$", "dispname": "Security Considerations"}, {"name": "subscriptions", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Subscriptions"}, {"name": "subtests", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Distinguishing test iterations using subtests"}, {"name": "summary-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "Summary Information Objects"}, {"name": "superseded", "domain": "std", "role": "label", "priority": "-1", "uri": "library/superseded.html#$", "dispname": "Superseded Modules"}, {"name": "supporting-cycle-detection", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/gcsupport.html#$", "dispname": "Supporting Cyclic Garbage Collection"}, {"name": "surrogateescape", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Error Handlers"}, {"name": "sys_exc", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "syslog-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "SysLogHandler"}, {"name": "systemfunctions", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/sys.html#$", "dispname": "System Functions"}, {"name": "tar-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "Examples"}, {"name": "tar-formats", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "Supported tar formats"}, {"name": "tar-unicode", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "Unicode issues"}, {"name": "tarfile-commandline", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "Command-Line Interface"}, {"name": "tarfile-extraction-filter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "Extraction filters"}, {"name": "tarfile-extraction-refuse", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "Filter errors"}, {"name": "tarfile-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "TarFile Objects"}, {"name": "tarfile.--create", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-create", "dispname": "-"}, {"name": "tarfile.--extract", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-extract", "dispname": "-"}, {"name": "tarfile.--filter", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-filter", "dispname": "-"}, {"name": "tarfile.--list", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-list", "dispname": "-"}, {"name": "tarfile.--test", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-test", "dispname": "-"}, {"name": "tarfile.--verbose", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-v", "dispname": "-"}, {"name": "tarfile.-c", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-c", "dispname": "-"}, {"name": "tarfile.-e", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-e", "dispname": "-"}, {"name": "tarfile.-l", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-l", "dispname": "-"}, {"name": "tarfile.-t", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-t", "dispname": "-"}, {"name": "tarfile.-v", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tarfile.html#cmdoption-tarfile-v", "dispname": "-"}, {"name": "tarinfo-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tarfile.html#$", "dispname": "TarInfo Objects"}, {"name": "tbreak", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "telnet-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/telnetlib.html#$", "dispname": "Telnet Example"}, {"name": "telnet-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/telnetlib.html#$", "dispname": "Telnet Objects"}, {"name": "tempfile-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tempfile.html#$", "dispname": "Examples"}, {"name": "tempfile-mktemp-deprecated", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tempfile.html#$", "dispname": "Deprecated functions and variables"}, {"name": "template-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pipes.html#$", "dispname": "Template Objects"}, {"name": "template-strings", "domain": "std", "role": "label", "priority": "-1", "uri": "library/string.html#$", "dispname": "Template strings"}, {"name": "terminal-size", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "Querying the size of a terminal"}, {"name": "termios-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/termios.html#$", "dispname": "Example"}, {"name": "test-prefix", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "TEST_PREFIX"}, {"name": "testcase-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Test cases"}, {"name": "testsuite-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Grouping tests"}, {"name": "text encoding", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-text-encoding", "dispname": "-"}, {"name": "text file", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-text-file", "dispname": "-"}, {"name": "text-transforms", "domain": "std", "role": "label", "priority": "-1", "uri": "library/codecs.html#$", "dispname": "Text Transforms"}, {"name": "textseq", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Text Sequence Type \u2014 str"}, {"name": "textservices", "domain": "std", "role": "label", "priority": "-1", "uri": "library/text.html#$", "dispname": "Text Processing Services"}, {"name": "the-backslash-plague", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/regex.html#$", "dispname": "The Backslash Plague"}, {"name": "thinice", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Thin Ice"}, {"name": "thread-local-storage", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Thread Local Storage Support"}, {"name": "thread-local-storage-api", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Thread Local Storage (TLS) API"}, {"name": "thread-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Thread Objects"}, {"name": "thread-specific-storage-api", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Thread Specific Storage (TSS) API"}, {"name": "threadpoolexecutor-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/concurrent.futures.html#$", "dispname": "ThreadPoolExecutor Example"}, {"name": "threads", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/init.html#$", "dispname": "Thread State and the Global Interpreter Lock"}, {"name": "throw", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "time-clock-id-constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/time.html#$", "dispname": "Clock ID Constants"}, {"name": "time-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/time.html#$", "dispname": "Functions"}, {"name": "time-timezone-constants", "domain": "std", "role": "label", "priority": "-1", "uri": "library/time.html#$", "dispname": "Timezone Constants"}, {"name": "timed-rotating-file-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "TimedRotatingFileHandler"}, {"name": "timeit-command-line-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "library/timeit.html#$", "dispname": "Command-Line Interface"}, {"name": "timeit-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/timeit.html#$", "dispname": "Examples"}, {"name": "timeit.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-h", "dispname": "-"}, {"name": "timeit.--number", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-n", "dispname": "-"}, {"name": "timeit.--process", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-p", "dispname": "-"}, {"name": "timeit.--repeat", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-r", "dispname": "-"}, {"name": "timeit.--setup", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-s", "dispname": "-"}, {"name": "timeit.--unit", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-u", "dispname": "-"}, {"name": "timeit.--verbose", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-v", "dispname": "-"}, {"name": "timeit.-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-h", "dispname": "-"}, {"name": "timeit.-n", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-n", "dispname": "-"}, {"name": "timeit.-p", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-p", "dispname": "-"}, {"name": "timeit.-r", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-r", "dispname": "-"}, {"name": "timeit.-s", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-s", "dispname": "-"}, {"name": "timeit.-u", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-u", "dispname": "-"}, {"name": "timeit.-v", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/timeit.html#cmdoption-timeit-v", "dispname": "-"}, {"name": "timer-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Timer Objects"}, {"name": "tkinter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tk.html#$", "dispname": "Graphical User Interfaces with Tk"}, {"name": "tkinter-file-handlers", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tkinter.html#$", "dispname": "File Handlers"}, {"name": "tkinter-setting-options", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tkinter.html#$", "dispname": "Setting Options"}, {"name": "tokenize-cli", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tokenize.html#$", "dispname": "Command-Line Usage"}, {"name": "tokenize.--exact", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tokenize.html#cmdoption-tokenize-e", "dispname": "-"}, {"name": "tokenize.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tokenize.html#cmdoption-tokenize-h", "dispname": "-"}, {"name": "tokenize.-e", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tokenize.html#cmdoption-tokenize-e", "dispname": "-"}, {"name": "tokenize.-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/tokenize.html#cmdoption-tokenize-h", "dispname": "-"}, {"name": "top-level", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/toplevel_components.html#$", "dispname": "Top-level components"}, {"name": "tp-slots-table", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "\u201ctp slots\u201d"}, {"name": "trace-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/trace.html#$", "dispname": "Programmatic Interface"}, {"name": "trace-cli", "domain": "std", "role": "label", "priority": "-1", "uri": "library/trace.html#$", "dispname": "Command-Line Usage"}, {"name": "trace.--count", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-c", "dispname": "-"}, {"name": "trace.--coverdir", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-C", "dispname": "-"}, {"name": "trace.--file", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-f", "dispname": "-"}, {"name": "trace.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-help", "dispname": "-"}, {"name": "trace.--ignore-dir", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-ignore-dir", "dispname": "-"}, {"name": "trace.--ignore-module", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-ignore-module", "dispname": "-"}, {"name": "trace.--listfuncs", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-l", "dispname": "-"}, {"name": "trace.--missing", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-m", "dispname": "-"}, {"name": "trace.--no-report", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-R", "dispname": "-"}, {"name": "trace.--report", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-r", "dispname": "-"}, {"name": "trace.--summary", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-s", "dispname": "-"}, {"name": "trace.--timing", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-g", "dispname": "-"}, {"name": "trace.--trace", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-t", "dispname": "-"}, {"name": "trace.--trackcalls", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-T", "dispname": "-"}, {"name": "trace.--version", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-version", "dispname": "-"}, {"name": "trace.-C", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-C", "dispname": "-"}, {"name": "trace.-R", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-R", "dispname": "-"}, {"name": "trace.-T", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-T", "dispname": "-"}, {"name": "trace.-c", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-c", "dispname": "-"}, {"name": "trace.-f", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-f", "dispname": "-"}, {"name": "trace.-g", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-g", "dispname": "-"}, {"name": "trace.-l", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-l", "dispname": "-"}, {"name": "trace.-m", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-m", "dispname": "-"}, {"name": "trace.-r", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-r", "dispname": "-"}, {"name": "trace.-s", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-s", "dispname": "-"}, {"name": "trace.-t", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/trace.html#cmdoption-trace-t", "dispname": "-"}, {"name": "traceback-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/traceback.html#$", "dispname": "Traceback Examples"}, {"name": "traceback-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "-"}, {"name": "triple-quoted string", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-triple-quoted-string", "dispname": "-"}, {"name": "truth", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Truth Value Testing"}, {"name": "try", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The try statement"}, {"name": "ttkstyling", "domain": "std", "role": "label", "priority": "-1", "uri": "library/tkinter.ttk.html#$", "dispname": "Ttk Styling"}, {"name": "tuple_params", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "tupleobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/tuple.html#$", "dispname": "Tuple Objects"}, {"name": "tut-annotations", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Function Annotations"}, {"name": "tut-appendix", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appendix.html#$", "dispname": "Appendix"}, {"name": "tut-arbitraryargs", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Arbitrary Argument Lists"}, {"name": "tut-argpassing", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interpreter.html#$", "dispname": "Argument Passing"}, {"name": "tut-batteries-included", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Batteries Included"}, {"name": "tut-binary-formats", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Working with Binary Data Record Layouts"}, {"name": "tut-break", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "break and continue Statements, and else Clauses on Loops"}, {"name": "tut-brieftour", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Brief Tour of the Standard Library"}, {"name": "tut-brieftourtwo", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Brief Tour of the Standard Library \u2014 Part II"}, {"name": "tut-calculator", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/introduction.html#$", "dispname": "Using Python as a Calculator"}, {"name": "tut-class-and-instance-variables", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Class and Instance Variables"}, {"name": "tut-classdefinition", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Class Definition Syntax"}, {"name": "tut-classes", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Classes"}, {"name": "tut-classobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Class Objects"}, {"name": "tut-cleanup", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Defining Clean-up Actions"}, {"name": "tut-cleanup-with", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Predefined Clean-up Actions"}, {"name": "tut-codingstyle", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Intermezzo: Coding Style"}, {"name": "tut-command-line-arguments", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Command Line Arguments"}, {"name": "tut-commentary", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interactive.html#$", "dispname": "Alternatives to the Interactive Interpreter"}, {"name": "tut-comparing", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Comparing Sequences and Other Types"}, {"name": "tut-conditions", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "More on Conditions"}, {"name": "tut-customize", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appendix.html#$", "dispname": "The Customization Modules"}, {"name": "tut-data-compression", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Data Compression"}, {"name": "tut-dates-and-times", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Dates and Times"}, {"name": "tut-decimal-fp", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Decimal Floating Point Arithmetic"}, {"name": "tut-defaultargs", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Default Argument Values"}, {"name": "tut-defining", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "More on Defining Functions"}, {"name": "tut-del", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "The del statement"}, {"name": "tut-dictionaries", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Dictionaries"}, {"name": "tut-dir", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "The dir() Function"}, {"name": "tut-docstrings", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Documentation Strings"}, {"name": "tut-error", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appendix.html#$", "dispname": "Error Handling"}, {"name": "tut-errors", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Errors and Exceptions"}, {"name": "tut-exception-chaining", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Exception Chaining"}, {"name": "tut-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Exceptions"}, {"name": "tut-f-strings", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "Formatted String Literals"}, {"name": "tut-file-wildcards", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "File Wildcards"}, {"name": "tut-filemethods", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "Methods of File Objects"}, {"name": "tut-files", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "Reading and Writing Files"}, {"name": "tut-firstclasses", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "A First Look at Classes"}, {"name": "tut-firststeps", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/introduction.html#$", "dispname": "First Steps Towards Programming"}, {"name": "tut-for", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "for Statements"}, {"name": "tut-formatting", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "Fancier Output Formatting"}, {"name": "tut-fp-error", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/floatingpoint.html#$", "dispname": "Representation Error"}, {"name": "tut-fp-issues", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/floatingpoint.html#$", "dispname": "Floating Point Arithmetic: Issues and Limitations"}, {"name": "tut-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Defining Functions"}, {"name": "tut-generators", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Generators"}, {"name": "tut-genexps", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Generator Expressions"}, {"name": "tut-handling", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Handling Exceptions"}, {"name": "tut-if", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "if Statements"}, {"name": "tut-informal", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/introduction.html#$", "dispname": "An Informal Introduction to Python"}, {"name": "tut-inheritance", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Inheritance"}, {"name": "tut-instanceobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Instance Objects"}, {"name": "tut-interac", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appendix.html#$", "dispname": "Interactive Mode"}, {"name": "tut-interacting", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interactive.html#$", "dispname": "Interactive Input Editing and History Substitution"}, {"name": "tut-interactive", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interpreter.html#$", "dispname": "Interactive Mode"}, {"name": "tut-internet-access", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Internet Access"}, {"name": "tut-interp", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interpreter.html#$", "dispname": "The Interpreter and Its Environment"}, {"name": "tut-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appetite.html#$", "dispname": "Whetting Your Appetite"}, {"name": "tut-invoking", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interpreter.html#$", "dispname": "Invoking the Interpreter"}, {"name": "tut-io", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "Input and Output"}, {"name": "tut-iterators", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Iterators"}, {"name": "tut-json", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "Saving structured data with json"}, {"name": "tut-keybindings", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interactive.html#$", "dispname": "Tab Completion and History Editing"}, {"name": "tut-keywordargs", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Keyword Arguments"}, {"name": "tut-lambda", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Lambda Expressions"}, {"name": "tut-list-tools", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Tools for Working with Lists"}, {"name": "tut-listcomps", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "List Comprehensions"}, {"name": "tut-lists", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/introduction.html#$", "dispname": "Lists"}, {"name": "tut-lists-as-queues", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Using Lists as Queues"}, {"name": "tut-lists-as-stacks", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Using Lists as Stacks"}, {"name": "tut-logging", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Logging"}, {"name": "tut-loopidioms", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Looping Techniques"}, {"name": "tut-match", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "match Statements"}, {"name": "tut-mathematics", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Mathematics"}, {"name": "tut-methodobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Method Objects"}, {"name": "tut-modules", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "Modules"}, {"name": "tut-modulesasscripts", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "Executing modules as scripts"}, {"name": "tut-morecontrol", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "More Control Flow Tools"}, {"name": "tut-morelists", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "More on Lists"}, {"name": "tut-moremodules", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "More on Modules"}, {"name": "tut-multi-threading", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Multi-threading"}, {"name": "tut-multiple", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Multiple Inheritance"}, {"name": "tut-numbers", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/introduction.html#$", "dispname": "Numbers"}, {"name": "tut-object", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "A Word About Names and Objects"}, {"name": "tut-odds", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Odds and Ends"}, {"name": "tut-os-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Operating System Interface"}, {"name": "tut-output-formatting", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Output Formatting"}, {"name": "tut-packages", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "Packages"}, {"name": "tut-pass", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "pass Statements"}, {"name": "tut-performance-measurement", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Performance Measurement"}, {"name": "tut-pkg-import-star", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "Importing * From a Package"}, {"name": "tut-private", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Private Variables"}, {"name": "tut-quality-control", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Quality Control"}, {"name": "tut-raising", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Raising Exceptions"}, {"name": "tut-range", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "The range() Function"}, {"name": "tut-remarks", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Random Remarks"}, {"name": "tut-scopeexample", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Scopes and Namespaces Example"}, {"name": "tut-scopes", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/classes.html#$", "dispname": "Python Scopes and Namespaces"}, {"name": "tut-scripts", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appendix.html#$", "dispname": "Executable Python Scripts"}, {"name": "tut-searchpath", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "The Module Search Path"}, {"name": "tut-sets", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Sets"}, {"name": "tut-source-encoding", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interpreter.html#$", "dispname": "Source Code Encoding"}, {"name": "tut-standardmodules", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/modules.html#$", "dispname": "Standard Modules"}, {"name": "tut-startup", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/appendix.html#$", "dispname": "The Interactive Startup File"}, {"name": "tut-stderr", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "Error Output Redirection and Program Termination"}, {"name": "tut-string-format", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/inputoutput.html#$", "dispname": "The String format() Method"}, {"name": "tut-string-pattern-matching", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib.html#$", "dispname": "String Pattern Matching"}, {"name": "tut-strings", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/introduction.html#$", "dispname": "Strings"}, {"name": "tut-structures", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Data Structures"}, {"name": "tut-syntaxerrors", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "Syntax Errors"}, {"name": "tut-templating", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Templating"}, {"name": "tut-tuples", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/datastructures.html#$", "dispname": "Tuples and Sequences"}, {"name": "tut-unpacking-arguments", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/controlflow.html#$", "dispname": "Unpacking Argument Lists"}, {"name": "tut-userexceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/errors.html#$", "dispname": "User-defined Exceptions"}, {"name": "tut-using", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/interpreter.html#$", "dispname": "Using the Python Interpreter"}, {"name": "tut-venv", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/venv.html#$", "dispname": "Virtual Environments and Packages"}, {"name": "tut-weak-references", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/stdlib2.html#$", "dispname": "Weak References"}, {"name": "tut-whatnow", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/whatnow.html#$", "dispname": "What Now?"}, {"name": "tutorial-index", "domain": "std", "role": "label", "priority": "-1", "uri": "tutorial/index.html#$", "dispname": "The Python Tutorial"}, {"name": "tutorial/appendix", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/appendix.html", "dispname": "Appendix"}, {"name": "tutorial/appetite", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/appetite.html", "dispname": "Whetting Your Appetite"}, {"name": "tutorial/classes", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/classes.html", "dispname": "Classes"}, {"name": "tutorial/controlflow", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/controlflow.html", "dispname": "More Control Flow Tools"}, {"name": "tutorial/datastructures", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/datastructures.html", "dispname": "Data Structures"}, {"name": "tutorial/errors", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/errors.html", "dispname": "Errors and Exceptions"}, {"name": "tutorial/floatingpoint", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/floatingpoint.html", "dispname": "Floating Point Arithmetic: Issues and Limitations"}, {"name": "tutorial/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/index.html", "dispname": "The Python Tutorial"}, {"name": "tutorial/inputoutput", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/inputoutput.html", "dispname": "Input and Output"}, {"name": "tutorial/interactive", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/interactive.html", "dispname": "Interactive Input Editing and History Substitution"}, {"name": "tutorial/interpreter", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/interpreter.html", "dispname": "Using the Python Interpreter"}, {"name": "tutorial/introduction", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/introduction.html", "dispname": "An Informal Introduction to Python"}, {"name": "tutorial/modules", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/modules.html", "dispname": "Modules"}, {"name": "tutorial/stdlib", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/stdlib.html", "dispname": "Brief Tour of the Standard Library"}, {"name": "tutorial/stdlib2", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/stdlib2.html", "dispname": "Brief Tour of the Standard Library \u2014 Part II"}, {"name": "tutorial/venv", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/venv.html", "dispname": "Virtual Environments and Packages"}, {"name": "tutorial/whatnow", "domain": "std", "role": "doc", "priority": "-1", "uri": "tutorial/whatnow.html", "dispname": "What Now?"}, {"name": "type", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-$", "dispname": "-"}, {"name": "type alias", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-type-alias", "dispname": "-"}, {"name": "type hint", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-type-hint", "dispname": "-"}, {"name": "type-aliases", "domain": "std", "role": "label", "priority": "-1", "uri": "library/typing.html#$", "dispname": "Type aliases"}, {"name": "type-specific-methods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "-"}, {"name": "type-structs", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Type Objects"}, {"name": "typebytearray", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Bytearray Objects"}, {"name": "typebytes", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Bytes Objects"}, {"name": "typecontextmanager", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Context Manager Types"}, {"name": "typedef-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typeobj.html#$", "dispname": "Examples"}, {"name": "typehintobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/typehints.html#$", "dispname": "Objects for Type Hinting"}, {"name": "typeiter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Iterator Types"}, {"name": "typememoryview", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Memory Views"}, {"name": "typeobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/type.html#$", "dispname": "Type Objects"}, {"name": "types", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/datamodel.html#$", "dispname": "The standard type hierarchy"}, {"name": "types", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "types-genericalias", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Generic Alias Type"}, {"name": "types-set", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Set Types \u2014 set, frozenset"}, {"name": "types-union", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Union Type"}, {"name": "typesfunctions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Functions"}, {"name": "typesinternal", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Internal Objects"}, {"name": "typesmapping", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Mapping Types \u2014 dict"}, {"name": "typesmethods", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Methods"}, {"name": "typesmodules", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Modules"}, {"name": "typesnumeric", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Numeric Types \u2014 int, float, complex"}, {"name": "typesobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Classes and Class Instances"}, {"name": "typesother", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Other Built-in Types"}, {"name": "typesseq", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Sequence Types \u2014 list, tuple, range"}, {"name": "typesseq-common", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Common Sequence Operations"}, {"name": "typesseq-immutable", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Immutable Sequence Types"}, {"name": "typesseq-list", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Lists"}, {"name": "typesseq-mutable", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Mutable Sequence Types"}, {"name": "typesseq-range", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Ranges"}, {"name": "typesseq-tuple", "domain": "std", "role": "label", "priority": "-1", "uri": "library/stdtypes.html#$", "dispname": "Tuples"}, {"name": "unalias", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "unary", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Unary arithmetic and bitwise operations"}, {"name": "undisplay", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "unicode", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "unicode-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/unicode.html#$", "dispname": "Unicode HOWTO"}, {"name": "unicodeexceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/exceptions.html#$", "dispname": "Unicode Exception Objects"}, {"name": "unicodemethodsandslots", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/unicode.html#$", "dispname": "Methods and Slot Functions"}, {"name": "unicodeobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/unicode.html#$", "dispname": "Unicode Objects and Codecs"}, {"name": "unittest-command-line-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Command-Line Interface"}, {"name": "unittest-contents", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Classes and functions"}, {"name": "unittest-discover.--pattern", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-p", "dispname": "-"}, {"name": "unittest-discover.--start-directory", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-s", "dispname": "-"}, {"name": "unittest-discover.--top-level-directory", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-t", "dispname": "-"}, {"name": "unittest-discover.--verbose", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-v", "dispname": "-"}, {"name": "unittest-discover.-p", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-p", "dispname": "-"}, {"name": "unittest-discover.-s", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-s", "dispname": "-"}, {"name": "unittest-discover.-t", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-t", "dispname": "-"}, {"name": "unittest-discover.-v", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-discover-v", "dispname": "-"}, {"name": "unittest-minimal-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Basic example"}, {"name": "unittest-section", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "Updated module: unittest"}, {"name": "unittest-skipping", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Skipping tests and expected failures"}, {"name": "unittest-test-discovery", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.html#$", "dispname": "Test Discovery"}, {"name": "unittest.--buffer", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-b", "dispname": "-"}, {"name": "unittest.--catch", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-c", "dispname": "-"}, {"name": "unittest.--failfast", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-f", "dispname": "-"}, {"name": "unittest.--locals", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-locals", "dispname": "-"}, {"name": "unittest.-b", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-b", "dispname": "-"}, {"name": "unittest.-c", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-c", "dispname": "-"}, {"name": "unittest.-f", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-f", "dispname": "-"}, {"name": "unittest.-k", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/unittest.html#cmdoption-unittest-k", "dispname": "-"}, {"name": "universal newlines", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-universal-newlines", "dispname": "-"}, {"name": "unix", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unix.html#$", "dispname": "Unix Specific Services"}, {"name": "unix_custom_openssl", "domain": "std", "role": "label", "priority": "-1", "uri": "using/unix.html#unix-custom-openssl", "dispname": "Custom OpenSSL"}, {"name": "unknown-handler-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "UnknownHandler Objects"}, {"name": "until", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "up", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "upgrading-optparse-code", "domain": "std", "role": "label", "priority": "-1", "uri": "library/argparse.html#$", "dispname": "Upgrading optparse code"}, {"name": "url-parsing-security", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.parse.html#$", "dispname": "URL parsing security"}, {"name": "urllib", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "urllib-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "-"}, {"name": "urllib-howto", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/urllib2.html#$", "dispname": "HOWTO Fetch Internet Resources Using The urllib Package"}, {"name": "urllib-request-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.request.html#$", "dispname": "Examples"}, {"name": "urlparse-result-object", "domain": "std", "role": "label", "priority": "-1", "uri": "library/urllib.parse.html#$", "dispname": "Structured Parse Results"}, {"name": "useful-handlers", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging.html#$", "dispname": "Useful Handlers"}, {"name": "user-defined-generics", "domain": "std", "role": "label", "priority": "-1", "uri": "library/typing.html#$", "dispname": "User-defined generic types"}, {"name": "using", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Using importlib.metadata"}, {"name": "using-capsules", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/extending.html#$", "dispname": "Providing a C API for an Extension Module"}, {"name": "using-index", "domain": "std", "role": "label", "priority": "-1", "uri": "using/index.html#$", "dispname": "Python Setup and Usage"}, {"name": "using-on-cmdline", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "Command line"}, {"name": "using-on-envvars", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "Environment variables"}, {"name": "using-on-general", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "Command line and environment"}, {"name": "using-on-interface-options", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "Interface options"}, {"name": "using-on-mac", "domain": "std", "role": "label", "priority": "-1", "uri": "using/mac.html#$", "dispname": "Using Python on a Mac"}, {"name": "using-on-misc-options", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "Miscellaneous options"}, {"name": "using-on-unix", "domain": "std", "role": "label", "priority": "-1", "uri": "using/unix.html#$", "dispname": "Using Python on Unix platforms"}, {"name": "using-on-warnings", "domain": "std", "role": "label", "priority": "-1", "uri": "using/cmdline.html#$", "dispname": "-"}, {"name": "using-on-windows", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Using Python on Windows"}, {"name": "using-the-cgi-module", "domain": "std", "role": "label", "priority": "-1", "uri": "library/cgi.html#$", "dispname": "Using the cgi module"}, {"name": "using-the-tracker", "domain": "std", "role": "label", "priority": "-1", "uri": "bugs.html#$", "dispname": "Using the Python issue tracker"}, {"name": "using/cmdline", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/cmdline.html", "dispname": "Command line and environment"}, {"name": "using/configure", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/configure.html", "dispname": "Configure Python"}, {"name": "using/editors", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/editors.html", "dispname": "Editors and IDEs"}, {"name": "using/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/index.html", "dispname": "Python Setup and Usage"}, {"name": "using/mac", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/mac.html", "dispname": "Using Python on a Mac"}, {"name": "using/unix", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/unix.html", "dispname": "Using Python on Unix platforms"}, {"name": "using/windows", "domain": "std", "role": "doc", "priority": "-1", "uri": "using/windows.html", "dispname": "Using Python on Windows"}, {"name": "utc-formatting", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Formatting times using UTC (GMT) via configuration"}, {"name": "utf8-mode", "domain": "std", "role": "label", "priority": "-1", "uri": "library/os.html#$", "dispname": "Python UTF-8 Mode"}, {"name": "utilities", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/utilities.html#$", "dispname": "Utilities"}, {"name": "uuid-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/uuid.html#$", "dispname": "Example"}, {"name": "value-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Value Patterns"}, {"name": "value-types", "domain": "std", "role": "label", "priority": "-1", "uri": "library/winreg.html#$", "dispname": "Value Types"}, {"name": "variable annotation", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-variable-annotation", "dispname": "-"}, {"name": "vectorcall", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/call.html#$", "dispname": "The Vectorcall Protocol"}, {"name": "venv-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/venv.html#$", "dispname": "API"}, {"name": "venv-def", "domain": "std", "role": "label", "priority": "-1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "venv-explanation", "domain": "std", "role": "label", "priority": "-1", "uri": "library/venv.html#$", "dispname": "How venvs work"}, {"name": "venv-intro", "domain": "std", "role": "label", "priority": "-1", "uri": "library/venv.html#$", "dispname": "-"}, {"name": "version", "domain": "std", "role": "label", "priority": "-1", "uri": "library/importlib.metadata.html#$", "dispname": "Distribution versions"}, {"name": "veryhigh", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/veryhigh.html#$", "dispname": "The Very High Level Layer"}, {"name": "view-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/msilib.html#$", "dispname": "View Objects"}, {"name": "virtual environment", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-virtual-environment", "dispname": "-"}, {"name": "virtual machine", "domain": "std", "role": "term", "priority": "-1", "uri": "glossary.html#term-virtual-machine", "dispname": "-"}, {"name": "warning-categories", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Warning Categories"}, {"name": "warning-categories-as-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/exceptions.html#$", "dispname": "Warnings"}, {"name": "warning-disable", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Overriding the default filter"}, {"name": "warning-filter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "The Warnings Filter"}, {"name": "warning-functions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Available Functions"}, {"name": "warning-ignored", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Updating Code For New Versions of Dependencies"}, {"name": "warning-suppress", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Temporarily Suppressing Warnings"}, {"name": "warning-testing", "domain": "std", "role": "label", "priority": "-1", "uri": "library/warnings.html#$", "dispname": "Testing Warnings"}, {"name": "watched-file-handler", "domain": "std", "role": "label", "priority": "-1", "uri": "library/logging.handlers.html#$", "dispname": "WatchedFileHandler"}, {"name": "wave-read-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/wave.html#$", "dispname": "Wave_read Objects"}, {"name": "wave-write-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/wave.html#$", "dispname": "Wave_write Objects"}, {"name": "weakref-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/weakref.html#$", "dispname": "Example"}, {"name": "weakref-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/weakref.html#$", "dispname": "Weak Reference Objects"}, {"name": "weakref-support", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/newtypes.html#$", "dispname": "Weak Reference Support"}, {"name": "weakrefobjects", "domain": "std", "role": "label", "priority": "-1", "uri": "c-api/weakref.html#$", "dispname": "Weak Reference Objects"}, {"name": "whatis", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "whats-new-in-2.6", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.6.html#whats-new-in-2-6", "dispname": "What\u2019s New in Python 2.6"}, {"name": "whatsnew-asyncio", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "asyncio"}, {"name": "whatsnew-ensurepip", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "ensurepip"}, {"name": "whatsnew-enum", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "enum"}, {"name": "whatsnew-index", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/index.html#$", "dispname": "What\u2019s New in Python"}, {"name": "whatsnew-isolated-mode", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew-lrucache", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "-"}, {"name": "whatsnew-marshal-3", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "marshal"}, {"name": "whatsnew-multiprocessing-no-fork", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew-ordereddict", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "-"}, {"name": "whatsnew-pathlib", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "pathlib"}, {"name": "whatsnew-pep-436", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 436: Argument Clinic"}, {"name": "whatsnew-pep-442", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 442: Safe Object Finalization"}, {"name": "whatsnew-pep-445", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 445: Customization of CPython Memory Allocators"}, {"name": "whatsnew-pep-446", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 446: Newly Created File Descriptors Are Non-Inheritable"}, {"name": "whatsnew-pep-448", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 448 - Additional Unpacking Generalizations"}, {"name": "whatsnew-pep-451", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 451: A ModuleSpec Type for the Import System"}, {"name": "whatsnew-pep-453", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 453: Explicit Bootstrapping of PIP in Python Installations"}, {"name": "whatsnew-pep-456", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "PEP 456: Secure and Interchangeable Hash Algorithm"}, {"name": "whatsnew-pep-461", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 461 - percent formatting support for bytes and bytearray"}, {"name": "whatsnew-pep-465", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 465 - A dedicated infix operator for matrix multiplication"}, {"name": "whatsnew-pep-471", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 471 - os.scandir() function \u2013 a better and faster directory iterator"}, {"name": "whatsnew-pep-475", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 475: Retry system calls failing with EINTR"}, {"name": "whatsnew-pep-479", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 479: Change StopIteration handling inside generators"}, {"name": "whatsnew-pep-484", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 484 - Type Hints"}, {"name": "whatsnew-pep-485", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 485: A function for testing approximate equality"}, {"name": "whatsnew-pep-486", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 486: Make the Python Launcher aware of virtual environments"}, {"name": "whatsnew-pep-488", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 488: Elimination of PYO files"}, {"name": "whatsnew-pep-489", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 489: Multi-phase extension module initialization"}, {"name": "whatsnew-pep-492", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "PEP 492 - Coroutines with async and await syntax"}, {"name": "whatsnew-protocol-4", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "pickle"}, {"name": "whatsnew-selectors", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "selectors"}, {"name": "whatsnew-singledispatch", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew-sslmemorybio", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "Memory BIO Support"}, {"name": "whatsnew-statistics", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "statistics"}, {"name": "whatsnew-subprocess", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "subprocess"}, {"name": "whatsnew-tls-11-12", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew-traceback", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "traceback"}, {"name": "whatsnew-tracemalloc", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "tracemalloc"}, {"name": "whatsnew-zipapp", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.5.html#$", "dispname": "zipapp"}, {"name": "whatsnew/2.0", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.0.html", "dispname": "What\u2019s New in Python 2.0"}, {"name": "whatsnew/2.1", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.1.html", "dispname": "What\u2019s New in Python 2.1"}, {"name": "whatsnew/2.2", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.2.html", "dispname": "What\u2019s New in Python 2.2"}, {"name": "whatsnew/2.3", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.3.html", "dispname": "What\u2019s New in Python 2.3"}, {"name": "whatsnew/2.4", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.4.html", "dispname": "What\u2019s New in Python 2.4"}, {"name": "whatsnew/2.5", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.5.html", "dispname": "What\u2019s New in Python 2.5"}, {"name": "whatsnew/2.6", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.6.html", "dispname": "What\u2019s New in Python 2.6"}, {"name": "whatsnew/2.7", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/2.7.html", "dispname": "What\u2019s New in Python 2.7"}, {"name": "whatsnew/3.0", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.0.html", "dispname": "What\u2019s New In Python 3.0"}, {"name": "whatsnew/3.1", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.1.html", "dispname": "What\u2019s New In Python 3.1"}, {"name": "whatsnew/3.10", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.10.html", "dispname": "What\u2019s New In Python 3.10"}, {"name": "whatsnew/3.2", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.2.html", "dispname": "What\u2019s New In Python 3.2"}, {"name": "whatsnew/3.3", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.3.html", "dispname": "What\u2019s New In Python 3.3"}, {"name": "whatsnew/3.4", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.4.html", "dispname": "What\u2019s New In Python 3.4"}, {"name": "whatsnew/3.5", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.5.html", "dispname": "What\u2019s New In Python 3.5"}, {"name": "whatsnew/3.6", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.6.html", "dispname": "What\u2019s New In Python 3.6"}, {"name": "whatsnew/3.7", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.7.html", "dispname": "What\u2019s New In Python 3.7"}, {"name": "whatsnew/3.8", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.8.html", "dispname": "What\u2019s New In Python 3.8"}, {"name": "whatsnew/3.9", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/3.9.html", "dispname": "What\u2019s New In Python 3.9"}, {"name": "whatsnew/changelog", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/changelog.html", "dispname": "Changelog"}, {"name": "whatsnew/index", "domain": "std", "role": "doc", "priority": "-1", "uri": "whatsnew/index.html", "dispname": "What\u2019s New in Python"}, {"name": "whatsnew27-capsules", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "Capsules"}, {"name": "whatsnew27-python31", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/2.7.html#$", "dispname": "The Future for Python 2.x"}, {"name": "whatsnew310-deprecated", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "Deprecated"}, {"name": "whatsnew310-pep563", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "Parenthesized context managers"}, {"name": "whatsnew310-pep597", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "Optional EncodingWarning and encoding=\"locale\" option"}, {"name": "whatsnew310-removed", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.10.html#$", "dispname": "Removed"}, {"name": "whatsnew34-sni", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew34-sslcontext", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew34-win-cert-store", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#$", "dispname": "-"}, {"name": "whatsnew36-compactdict", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "New dict implementation"}, {"name": "whatsnew36-pep468", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 468: Preserving Keyword Argument Order"}, {"name": "whatsnew36-pep487", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 487: Simpler customization of class creation"}, {"name": "whatsnew36-pep487-descriptors", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 487: Descriptor Protocol Enhancements"}, {"name": "whatsnew36-pep495", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 495: Local Time Disambiguation"}, {"name": "whatsnew36-pep498", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 498: Formatted string literals"}, {"name": "whatsnew36-pep506", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "secrets"}, {"name": "whatsnew36-pep515", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 515: Underscores in Numeric Literals"}, {"name": "whatsnew36-pep519", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 519: Adding a file system path protocol"}, {"name": "whatsnew36-pep520", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 520: Preserving Class Attribute Definition Order"}, {"name": "whatsnew36-pep523", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 523: Adding a frame evaluation API to CPython"}, {"name": "whatsnew36-pep525", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 525: Asynchronous Generators"}, {"name": "whatsnew36-pep526", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 526: Syntax for variable annotations"}, {"name": "whatsnew36-pep528", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 528: Change Windows console encoding to UTF-8"}, {"name": "whatsnew36-pep529", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 529: Change Windows filesystem encoding to UTF-8"}, {"name": "whatsnew36-pep530", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PEP 530: Asynchronous Comprehensions"}, {"name": "whatsnew36-pythonmalloc", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "PYTHONMALLOC environment variable"}, {"name": "whatsnew36-traceback", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "traceback"}, {"name": "whatsnew36-tracing", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "DTrace and SystemTap probing support"}, {"name": "whatsnew36-typing", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "typing"}, {"name": "whatsnew36-venv", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.6.html#$", "dispname": "venv"}, {"name": "whatsnew37-asyncio-deprecated", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "asyncio"}, {"name": "whatsnew37-asyncio-perf", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "-"}, {"name": "whatsnew37-devmode", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "Python Development Mode (-X dev)"}, {"name": "whatsnew37-pep538", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 538: Legacy C Locale Coercion"}, {"name": "whatsnew37-pep539", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 539: New C API for Thread-Local Storage"}, {"name": "whatsnew37-pep540", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 540: Forced UTF-8 Runtime Mode"}, {"name": "whatsnew37-pep545", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 545: Python Documentation Translations"}, {"name": "whatsnew37-pep552", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 552: Hash-based .pyc Files"}, {"name": "whatsnew37-pep553", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 553: Built-in breakpoint()"}, {"name": "whatsnew37-pep557", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "dataclasses"}, {"name": "whatsnew37-pep560", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 560: Core Support for typing module and Generic Types"}, {"name": "whatsnew37-pep562", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 562: Customization of Access to Module Attributes"}, {"name": "whatsnew37-pep563", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 563: Postponed Evaluation of Annotations"}, {"name": "whatsnew37-pep564", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 564: New Time Functions With Nanosecond Resolution"}, {"name": "whatsnew37-pep565", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "PEP 565: Show DeprecationWarning in __main__"}, {"name": "whatsnew37-pep567", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "contextvars"}, {"name": "whatsnew37-perf", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#$", "dispname": "Optimizations"}, {"name": "whatsnew37_asyncio", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#whatsnew37-asyncio", "dispname": "asyncio"}, {"name": "whatsnew37_importlib_resources", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.7.html#whatsnew37-importlib-resources", "dispname": "importlib.resources"}, {"name": "whatsnew_email_contentmanager", "domain": "std", "role": "label", "priority": "-1", "uri": "whatsnew/3.4.html#whatsnew-email-contentmanager", "dispname": "-"}, {"name": "where", "domain": "std", "role": "pdbcommand", "priority": "1", "uri": "library/pdb.html#pdbcommand-$", "dispname": "-"}, {"name": "where-to-patch", "domain": "std", "role": "label", "priority": "-1", "uri": "library/unittest.mock.html#$", "dispname": "Where to patch"}, {"name": "while", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The while statement"}, {"name": "whitespace", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/lexical_analysis.html#$", "dispname": "Whitespace between tokens"}, {"name": "why-can-t-i-use-an-assignment-in-an-expression", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/design.html#$", "dispname": "Why can\u2019t I use an assignment in an expression?"}, {"name": "why-self", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/design.html#$", "dispname": "Why must \u2018self\u2019 be used explicitly in method definitions and calls?"}, {"name": "wildcard-patterns", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "Wildcard Patterns"}, {"name": "win-cookbook", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/windows.html#$", "dispname": "A Cookbook Approach"}, {"name": "win-dlls", "domain": "std", "role": "label", "priority": "-1", "uri": "extending/windows.html#$", "dispname": "Using DLLs in Practice"}, {"name": "win-utf8-mode", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "UTF-8 mode"}, {"name": "windows-embeddable", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "The embeddable package"}, {"name": "windows-faq", "domain": "std", "role": "label", "priority": "-1", "uri": "faq/windows.html#$", "dispname": "Python on Windows FAQ"}, {"name": "windows-full", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "The full installer"}, {"name": "windows-nuget", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "The nuget.org packages"}, {"name": "windows-path-mod", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "Finding the Python executable"}, {"name": "windows-store", "domain": "std", "role": "label", "priority": "-1", "uri": "using/windows.html#$", "dispname": "The Microsoft Store package"}, {"name": "with", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/compound_stmts.html#$", "dispname": "The with statement"}, {"name": "with-locks", "domain": "std", "role": "label", "priority": "-1", "uri": "library/threading.html#$", "dispname": "Using locks, conditions, and semaphores in the with statement"}, {"name": "writing-tests", "domain": "std", "role": "label", "priority": "-1", "uri": "library/test.html#$", "dispname": "Writing Unit Tests for the test package"}, {"name": "ws_comma", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "xdr-exceptions", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xdrlib.html#$", "dispname": "Exceptions"}, {"name": "xdr-packer-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xdrlib.html#$", "dispname": "Packer Objects"}, {"name": "xdr-unpacker-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xdrlib.html#$", "dispname": "Unpacker Objects"}, {"name": "xml", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.html#$", "dispname": "XML Processing Modules"}, {"name": "xml-vulnerabilities", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.html#$", "dispname": "XML vulnerabilities"}, {"name": "xmlparser-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/pyexpat.html#$", "dispname": "XMLParser Objects"}, {"name": "xmlreader-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xml.sax.reader.html#$", "dispname": "XMLReader Objects"}, {"name": "xmlrpc-client-example", "domain": "std", "role": "label", "priority": "-1", "uri": "library/xmlrpc.client.html#$", "dispname": "Example of Client Usage"}, {"name": "xrange", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "xreadlines", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "yield", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/simple_stmts.html#$", "dispname": "The yield statement"}, {"name": "yieldexpr", "domain": "std", "role": "label", "priority": "-1", "uri": "reference/expressions.html#$", "dispname": "Yield expressions"}, {"name": "zeromq-handlers", "domain": "std", "role": "label", "priority": "-1", "uri": "howto/logging-cookbook.html#$", "dispname": "Subclassing QueueHandler - a ZeroMQ example"}, {"name": "zip", "domain": "std", "role": "2to3fixer", "priority": "1", "uri": "library/2to3.html#to3fixer-$", "dispname": "-"}, {"name": "zipapp-command-line-interface", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipapp.html#$", "dispname": "Command-Line Interface"}, {"name": "zipapp-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipapp.html#$", "dispname": "Examples"}, {"name": "zipapp-python-api", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipapp.html#$", "dispname": "Python API"}, {"name": "zipapp-specifying-the-interpreter", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipapp.html#$", "dispname": "Specifying the Interpreter"}, {"name": "zipapp.--compress", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-c", "dispname": "-"}, {"name": "zipapp.--help", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-h", "dispname": "-"}, {"name": "zipapp.--info", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-info", "dispname": "-"}, {"name": "zipapp.--main", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-m", "dispname": "-"}, {"name": "zipapp.--output", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-o", "dispname": "-"}, {"name": "zipapp.--python", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-p", "dispname": "-"}, {"name": "zipapp.-c", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-c", "dispname": "-"}, {"name": "zipapp.-h", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-h", "dispname": "-"}, {"name": "zipapp.-m", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-m", "dispname": "-"}, {"name": "zipapp.-o", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-o", "dispname": "-"}, {"name": "zipapp.-p", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipapp.html#cmdoption-zipapp-p", "dispname": "-"}, {"name": "zipfile-commandline", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipfile.html#$", "dispname": "Command-Line Interface"}, {"name": "zipfile-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipfile.html#$", "dispname": "ZipFile Objects"}, {"name": "zipfile-resources-limitations", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipfile.html#$", "dispname": "Resources limitations"}, {"name": "zipfile.--create", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-create", "dispname": "-"}, {"name": "zipfile.--extract", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-extract", "dispname": "-"}, {"name": "zipfile.--list", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-list", "dispname": "-"}, {"name": "zipfile.--test", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-test", "dispname": "-"}, {"name": "zipfile.-c", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-c", "dispname": "-"}, {"name": "zipfile.-e", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-e", "dispname": "-"}, {"name": "zipfile.-l", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-l", "dispname": "-"}, {"name": "zipfile.-t", "domain": "std", "role": "cmdoption", "priority": "1", "uri": "library/zipfile.html#cmdoption-zipfile-t", "dispname": "-"}, {"name": "zipimport-examples", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipimport.html#$", "dispname": "Examples"}, {"name": "zipimporter-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipimport.html#$", "dispname": "zipimporter Objects"}, {"name": "zipinfo-objects", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zipfile.html#$", "dispname": "ZipInfo Objects"}, {"name": "zoneinfo_data_compile_time_config", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zoneinfo.html#zoneinfo-data-compile-time-config", "dispname": "Compile-time configuration"}, {"name": "zoneinfo_data_configuration", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zoneinfo.html#zoneinfo-data-configuration", "dispname": "Configuring the data sources"}, {"name": "zoneinfo_data_environment_var", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zoneinfo.html#zoneinfo-data-environment-var", "dispname": "Environment configuration"}, {"name": "zoneinfo_data_runtime_config", "domain": "std", "role": "label", "priority": "-1", "uri": "library/zoneinfo.html#zoneinfo-data-runtime-config", "dispname": "Runtime configuration"}]} \ No newline at end of file diff --git a/_quarto.yml b/_quarto.yml new file mode 100644 index 0000000..b5c73dc --- /dev/null +++ b/_quarto.yml @@ -0,0 +1,80 @@ +project: + title: KIMMDY-Reactions + type: website + output-dir: docs + render: + - index.qmd + - _reference + + +website: + page-navigation: true + site-url: http://graeter-group.github.io/kimmdy-reactions + repo-url: https://github.com/graeter-group/kimmdy-reactions + repo-actions: [edit, issue] + reader-mode: true + back-to-top-navigation: true + navbar: + background: light + tools: + - icon: github + menu: + - text: Source Code + url: https://github.com/graeter-group/kimmdy-reactions + - text: Report a Bug + url: https://github.com/graeter-group/kimmdy-reactions/issues/new + left: + - file: _reference/index.qmd + text: Reference + +metadata-files: + - _sidebar.yml + +execute: + warning: false + echo: true + freeze: auto + +format: + html: + toc: true + toc-depth: 5 + toc-expand: true + mainfont: Roboto + number-depth: 0 + highlight-style: arrow + theme: + light: + - www/theme.scss + dark: + - www/theme.scss + - www/theme-dark.scss + code-copy: true + +filters: + - interlinks + +interlinks: + sources: + numpy: + url: https://numpy.org/doc/stable/ + python: + url: https://docs.python.org/3.10/ + +quartodoc: + sidebar: "_sidebar.yml" + render_interlinks: true + title: "References" + style: pkgdown + package: null + dir: _reference + sections: + - title: Homolysis + contents: + - homolysis.reaction + - title: Naive HAT + contents: + - hat_naive.reaction + - title: Dummyreaction + contents: + - dummyreaction.reaction diff --git a/_reference/dummyreaction.reaction.qmd b/_reference/dummyreaction.reaction.qmd new file mode 100644 index 0000000..e09028e --- /dev/null +++ b/_reference/dummyreaction.reaction.qmd @@ -0,0 +1,17 @@ +# dummyreaction.reaction { #dummyreaction.reaction } + +`reaction` + + + +## Classes + +| Name | Description | +| --- | --- | +| [DummyReaction](#dummyreaction.reaction.DummyReaction) | Dummy reaction, returns empty RecipeCollection | + +### DummyReaction { #dummyreaction.reaction.DummyReaction } + +`reaction.DummyReaction()` + +Dummy reaction, returns empty RecipeCollection \ No newline at end of file diff --git a/_reference/hat_naive.reaction.qmd b/_reference/hat_naive.reaction.qmd new file mode 100644 index 0000000..2493692 --- /dev/null +++ b/_reference/hat_naive.reaction.qmd @@ -0,0 +1,17 @@ +# hat_naive.reaction { #hat_naive.reaction } + +`reaction` + + + +## Classes + +| Name | Description | +| --- | --- | +| [NaiveHAT](#hat_naive.reaction.NaiveHAT) | Naive HAT reaction, selects hydrogens at random | + +### NaiveHAT { #hat_naive.reaction.NaiveHAT } + +`reaction.NaiveHAT()` + +Naive HAT reaction, selects hydrogens at random \ No newline at end of file diff --git a/_reference/homolysis.reaction.qmd b/_reference/homolysis.reaction.qmd new file mode 100644 index 0000000..b7942cf --- /dev/null +++ b/_reference/homolysis.reaction.qmd @@ -0,0 +1,18 @@ +# homolysis.reaction { #homolysis.reaction } + +`reaction` + + + +## Classes + +| Name | Description | +| --- | --- | +| [Homolysis](#homolysis.reaction.Homolysis) | Homolytic bond breaking leading to 2 radicals. | + +### Homolysis { #homolysis.reaction.Homolysis } + +`reaction.Homolysis()` + +Homolytic bond breaking leading to 2 radicals. +Implementation for time-varying rates \ No newline at end of file diff --git a/_reference/index.qmd b/_reference/index.qmd new file mode 100644 index 0000000..26987fe --- /dev/null +++ b/_reference/index.qmd @@ -0,0 +1,19 @@ +# References {.doc .doc-index} + +## Homolysis + +| | | +| --- | --- | +| [homolysis.reaction](homolysis.reaction.qmd#homolysis.reaction) | | + +## Naive HAT + +| | | +| --- | --- | +| [hat_naive.reaction](hat_naive.reaction.qmd#hat_naive.reaction) | | + +## Dummyreaction + +| | | +| --- | --- | +| [dummyreaction.reaction](dummyreaction.reaction.qmd#dummyreaction.reaction) | | \ No newline at end of file diff --git a/_reference/reaction.DummyReaction.qmd b/_reference/reaction.DummyReaction.qmd new file mode 100644 index 0000000..da1675b --- /dev/null +++ b/_reference/reaction.DummyReaction.qmd @@ -0,0 +1,5 @@ +# reaction.DummyReaction { #dummyreaction.reaction.DummyReaction } + +`reaction.DummyReaction()` + +Dummy reaction, returns empty RecipeCollection \ No newline at end of file diff --git a/_reference/reaction.Homolysis.qmd b/_reference/reaction.Homolysis.qmd new file mode 100644 index 0000000..a4c50ef --- /dev/null +++ b/_reference/reaction.Homolysis.qmd @@ -0,0 +1,6 @@ +# reaction.Homolysis { #homolysis.reaction.Homolysis } + +`reaction.Homolysis()` + +Homolytic bond breaking leading to 2 radicals. +Implementation for time-varying rates \ No newline at end of file diff --git a/_reference/reaction.NaiveHAT.qmd b/_reference/reaction.NaiveHAT.qmd new file mode 100644 index 0000000..32ce8a3 --- /dev/null +++ b/_reference/reaction.NaiveHAT.qmd @@ -0,0 +1,5 @@ +# reaction.NaiveHAT { #hat_naive.reaction.NaiveHAT } + +`reaction.NaiveHAT()` + +Naive HAT reaction, selects hydrogens at random \ No newline at end of file diff --git a/_reference/reaction.qmd b/_reference/reaction.qmd new file mode 100644 index 0000000..e25188f --- /dev/null +++ b/_reference/reaction.qmd @@ -0,0 +1,17 @@ +# reaction { #dummyreaction.reaction } + +`reaction` + + + +## Classes + +| Name | Description | +| --- | --- | +| [DummyReaction](#dummyreaction.reaction.DummyReaction) | Dummy reaction, returns empty RecipeCollection | + +### DummyReaction { #dummyreaction.reaction.DummyReaction } + +`reaction.DummyReaction()` + +Dummy reaction, returns empty RecipeCollection \ No newline at end of file diff --git a/_sidebar.yml b/_sidebar.yml new file mode 100644 index 0000000..4c10974 --- /dev/null +++ b/_sidebar.yml @@ -0,0 +1,15 @@ +website: + sidebar: + - contents: + - _reference/index.qmd + - contents: + - _reference/homolysis.reaction.qmd + section: Homolysis + - contents: + - _reference/hat_naive.reaction.qmd + section: Naive HAT + - contents: + - _reference/dummyreaction.reaction.qmd + section: Dummyreaction + id: _reference + - id: dummy-sidebar diff --git a/docs/_reference/dummyreaction.reaction.html b/docs/_reference/dummyreaction.reaction.html new file mode 100644 index 0000000..02a3f81 --- /dev/null +++ b/docs/_reference/dummyreaction.reaction.html @@ -0,0 +1,832 @@ + + + + + + + + + +dummyreaction.reaction – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ + + + +
+

dummyreaction.reaction

+

reaction

+
+

Classes

+ + + + + + + + + + + + + +
NameDescription
DummyReactionDummy reaction, returns empty RecipeCollection
+
+

DummyReaction

+

reaction.DummyReaction()

+

Dummy reaction, returns empty RecipeCollection

+ + +
+
+
+ + Back to top
+ + +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/hat_naive.reaction.html b/docs/_reference/hat_naive.reaction.html new file mode 100644 index 0000000..e7422e2 --- /dev/null +++ b/docs/_reference/hat_naive.reaction.html @@ -0,0 +1,836 @@ + + + + + + + + + +hat_naive.reaction – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ + + + +
+

hat_naive.reaction

+

reaction

+
+

Classes

+ + + + + + + + + + + + + +
NameDescription
NaiveHATNaive HAT reaction, selects hydrogens at random
+
+

NaiveHAT

+

reaction.NaiveHAT()

+

Naive HAT reaction, selects hydrogens at random

+ + +
+
+
+ + Back to top
+ + +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/homolysis.reaction.html b/docs/_reference/homolysis.reaction.html new file mode 100644 index 0000000..0c2ce74 --- /dev/null +++ b/docs/_reference/homolysis.reaction.html @@ -0,0 +1,836 @@ + + + + + + + + + +homolysis.reaction – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ + + + +
+

homolysis.reaction

+

reaction

+
+

Classes

+ + + + + + + + + + + + + +
NameDescription
HomolysisHomolytic bond breaking leading to 2 radicals.
+
+

Homolysis

+

reaction.Homolysis()

+

Homolytic bond breaking leading to 2 radicals. Implementation for time-varying rates

+ + +
+
+
+ + Back to top
+ + +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/index.html b/docs/_reference/index.html new file mode 100644 index 0000000..5344cc6 --- /dev/null +++ b/docs/_reference/index.html @@ -0,0 +1,841 @@ + + + + + + + + + +index – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+ +
+ + +
+ + + +
+ + + + +
+

References

+
+

Homolysis

+ + + + + + + +
homolysis.reaction
+
+
+

Naive HAT

+ + + + + + + +
hat_naive.reaction
+
+
+

Dummyreaction

+ + + + + + + +
dummyreaction.reaction
+ + +
+
+ + Back to top
+ + +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/reaction.DummyReaction.html b/docs/_reference/reaction.DummyReaction.html new file mode 100644 index 0000000..27f1442 --- /dev/null +++ b/docs/_reference/reaction.DummyReaction.html @@ -0,0 +1,721 @@ + + + + + + + + + +reaction.dummyreaction – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ + + + +
+

reaction.DummyReaction

+

reaction.DummyReaction()

+

Dummy reaction, returns empty RecipeCollection

+ + +
+ + Back to top
+ +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/reaction.Homolysis.html b/docs/_reference/reaction.Homolysis.html new file mode 100644 index 0000000..64d7735 --- /dev/null +++ b/docs/_reference/reaction.Homolysis.html @@ -0,0 +1,721 @@ + + + + + + + + + +reaction.homolysis – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ + + + +
+

reaction.Homolysis

+

reaction.Homolysis()

+

Homolytic bond breaking leading to 2 radicals. Implementation for time-varying rates

+ + +
+ + Back to top
+ +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/reaction.NaiveHAT.html b/docs/_reference/reaction.NaiveHAT.html new file mode 100644 index 0000000..ee80f59 --- /dev/null +++ b/docs/_reference/reaction.NaiveHAT.html @@ -0,0 +1,721 @@ + + + + + + + + + +reaction.naivehat – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ + + + +
+

reaction.NaiveHAT

+

reaction.NaiveHAT()

+

Naive HAT reaction, selects hydrogens at random

+ + +
+ + Back to top
+ +
+ + + + + \ No newline at end of file diff --git a/docs/_reference/reaction.html b/docs/_reference/reaction.html new file mode 100644 index 0000000..9d771bb --- /dev/null +++ b/docs/_reference/reaction.html @@ -0,0 +1,748 @@ + + + + + + + + + +reaction – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ + + + +
+

reaction

+

reaction

+
+

Classes

+ + + + + + + + + + + + + +
NameDescription
DummyReactionDummy reaction, returns empty RecipeCollection
+
+

DummyReaction

+

reaction.DummyReaction()

+

Dummy reaction, returns empty RecipeCollection

+ + +
+
+
+ + Back to top
+ +
+ + + + + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..06c1319 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,782 @@ + + + + + + + + + +KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ + + + +
+

A collection of simple reactions for KIMMDY

+
+
+

test latest release

+
test latest release
+
+
+
+

Documentation

+

See KIMMDY documentation.

+
+
+

Installation

+

Together with KIMMDY

+
pip installl kimmdy[reactions]
+

To install it separatly:

+
pip install kimmdy-reactions
+
+
+

Making your own

+
    +
  • Implement your reaction as a subclass of kimmdy.reaction.Reaction
  • +
  • Register your Reaction class in the [options.entry_points] section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy!
  • +
+ + +
+
+ + Back to top
+ +
+ + + + + \ No newline at end of file diff --git a/docs/robots.txt b/docs/robots.txt new file mode 100644 index 0000000..3b338f9 --- /dev/null +++ b/docs/robots.txt @@ -0,0 +1 @@ +Sitemap: http://graeter-group.github.io/kimmdy-reactions/sitemap.xml diff --git a/docs/search.json b/docs/search.json new file mode 100644 index 0000000..f4ca51d --- /dev/null +++ b/docs/search.json @@ -0,0 +1,181 @@ +[ + { + "objectID": "_reference/dummyreaction.reaction.html", + "href": "_reference/dummyreaction.reaction.html", + "title": "dummyreaction.reaction", + "section": "", + "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nDummyReaction\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection", + "crumbs": [ + "Reference", + "Dummyreaction", + "dummyreaction.reaction" + ] + }, + { + "objectID": "_reference/dummyreaction.reaction.html#classes", + "href": "_reference/dummyreaction.reaction.html#classes", + "title": "dummyreaction.reaction", + "section": "", + "text": "Name\nDescription\n\n\n\n\nDummyReaction\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection", + "crumbs": [ + "Reference", + "Dummyreaction", + "dummyreaction.reaction" + ] + }, + { + "objectID": "_reference/reaction.NaiveHAT.html", + "href": "_reference/reaction.NaiveHAT.html", + "title": "reaction.NaiveHAT", + "section": "", + "text": "reaction.NaiveHAT\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n Back to top" + }, + { + "objectID": "_reference/hat_naive.reaction.html", + "href": "_reference/hat_naive.reaction.html", + "title": "hat_naive.reaction", + "section": "", + "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nNaiveHAT\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random", + "crumbs": [ + "Reference", + "Naive HAT", + "hat_naive.reaction" + ] + }, + { + "objectID": "_reference/hat_naive.reaction.html#classes", + "href": "_reference/hat_naive.reaction.html#classes", + "title": "hat_naive.reaction", + "section": "", + "text": "Name\nDescription\n\n\n\n\nNaiveHAT\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random", + "crumbs": [ + "Reference", + "Naive HAT", + "hat_naive.reaction" + ] + }, + { + "objectID": "_reference/reaction.DummyReaction.html", + "href": "_reference/reaction.DummyReaction.html", + "title": "reaction.DummyReaction", + "section": "", + "text": "reaction.DummyReaction\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n Back to top" + }, + { + "objectID": "_reference/homolysis.reaction.html", + "href": "_reference/homolysis.reaction.html", + "title": "homolysis.reaction", + "section": "", + "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nHomolysis\nHomolytic bond breaking leading to 2 radicals.\n\n\n\n\n\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates", + "crumbs": [ + "Reference", + "Homolysis", + "homolysis.reaction" + ] + }, + { + "objectID": "_reference/homolysis.reaction.html#classes", + "href": "_reference/homolysis.reaction.html#classes", + "title": "homolysis.reaction", + "section": "", + "text": "Name\nDescription\n\n\n\n\nHomolysis\nHomolytic bond breaking leading to 2 radicals.\n\n\n\n\n\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates", + "crumbs": [ + "Reference", + "Homolysis", + "homolysis.reaction" + ] + }, + { + "objectID": "index.html", + "href": "index.html", + "title": "A collection of simple reactions for KIMMDY", + "section": "", + "text": "test latest release\n\n\n\n\nSee KIMMDY documentation.\n\n\n\nTogether with KIMMDY\npip installl kimmdy[reactions]\nTo install it separatly:\npip install kimmdy-reactions\n\n\n\n\nImplement your reaction as a subclass of kimmdy.reaction.Reaction\nRegister your Reaction class in the [options.entry_points] section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy!" + }, + { + "objectID": "index.html#documentation", + "href": "index.html#documentation", + "title": "A collection of simple reactions for KIMMDY", + "section": "", + "text": "See KIMMDY documentation." + }, + { + "objectID": "index.html#installation", + "href": "index.html#installation", + "title": "A collection of simple reactions for KIMMDY", + "section": "", + "text": "Together with KIMMDY\npip installl kimmdy[reactions]\nTo install it separatly:\npip install kimmdy-reactions" + }, + { + "objectID": "index.html#making-your-own", + "href": "index.html#making-your-own", + "title": "A collection of simple reactions for KIMMDY", + "section": "", + "text": "Implement your reaction as a subclass of kimmdy.reaction.Reaction\nRegister your Reaction class in the [options.entry_points] section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy!" + }, + { + "objectID": "_reference/index.html", + "href": "_reference/index.html", + "title": "References", + "section": "", + "text": "homolysis.reaction\n\n\n\n\n\n\n\n\n\n\nhat_naive.reaction\n\n\n\n\n\n\n\n\n\n\ndummyreaction.reaction", + "crumbs": [ + "Reference", + "References" + ] + }, + { + "objectID": "_reference/index.html#homolysis", + "href": "_reference/index.html#homolysis", + "title": "References", + "section": "", + "text": "homolysis.reaction", + "crumbs": [ + "Reference", + "References" + ] + }, + { + "objectID": "_reference/index.html#naive-hat", + "href": "_reference/index.html#naive-hat", + "title": "References", + "section": "", + "text": "hat_naive.reaction", + "crumbs": [ + "Reference", + "References" + ] + }, + { + "objectID": "_reference/index.html#dummyreaction", + "href": "_reference/index.html#dummyreaction", + "title": "References", + "section": "", + "text": "dummyreaction.reaction", + "crumbs": [ + "Reference", + "References" + ] + }, + { + "objectID": "_reference/reaction.html", + "href": "_reference/reaction.html", + "title": "reaction", + "section": "", + "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nDummyReaction\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection" + }, + { + "objectID": "_reference/reaction.html#classes", + "href": "_reference/reaction.html#classes", + "title": "reaction", + "section": "", + "text": "Name\nDescription\n\n\n\n\nDummyReaction\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection" + }, + { + "objectID": "_reference/reaction.Homolysis.html", + "href": "_reference/reaction.Homolysis.html", + "title": "reaction.Homolysis", + "section": "", + "text": "reaction.Homolysis\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates\n\n\n\n\n Back to top" + } +] \ No newline at end of file diff --git a/docs/site_libs/bootstrap/bootstrap-dark.min.css b/docs/site_libs/bootstrap/bootstrap-dark.min.css new file mode 100644 index 0000000..3e7da25 --- /dev/null +++ b/docs/site_libs/bootstrap/bootstrap-dark.min.css @@ -0,0 +1,12 @@ +@import"https://fonts.googleapis.com/css2?family=Miriam+Libre&family=Roboto&display=swap";/*! + * Bootstrap v5.3.1 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root,[data-bs-theme=light]{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #ffffff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-default: #dee2e6;--bs-primary: #1E4287;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-default-rgb: 222, 226, 230;--bs-primary-rgb: 30, 66, 135;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-primary-text-emphasis: #0c1a36;--bs-secondary-text-emphasis: #2b2f32;--bs-success-text-emphasis: #0a3622;--bs-info-text-emphasis: #055160;--bs-warning-text-emphasis: #664d03;--bs-danger-text-emphasis: #58151c;--bs-light-text-emphasis: #495057;--bs-dark-text-emphasis: #495057;--bs-primary-bg-subtle: #d2d9e7;--bs-secondary-bg-subtle: #e2e3e5;--bs-success-bg-subtle: #d1e7dd;--bs-info-bg-subtle: #cff4fc;--bs-warning-bg-subtle: #fff3cd;--bs-danger-bg-subtle: #f8d7da;--bs-light-bg-subtle: #fcfcfd;--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: #a5b3cf;--bs-secondary-border-subtle: #c4c8cb;--bs-success-border-subtle: #a3cfbb;--bs-info-border-subtle: #9eeaf9;--bs-warning-border-subtle: #ffe69c;--bs-danger-border-subtle: #f1aeb5;--bs-light-border-subtle: #e9ecef;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-font-sans-serif: "Roboto", "Helvetica Neue", sans-serif;--bs-font-monospace: "Fira Mono", Menlo, Consolas, monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 17px;--bs-body-font-family: Roboto;--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: rgba(255, 255, 255, 0.8705882353);--bs-body-color-rgb: 255, 255, 255;--bs-body-bg: #050725;--bs-body-bg-rgb: 5, 7, 37;--bs-emphasis-color: #000;--bs-emphasis-color-rgb: 0, 0, 0;--bs-secondary-color: rgba(255, 255, 255, 0.75);--bs-secondary-color-rgb: 255, 255, 255;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(255, 255, 255, 0.5);--bs-tertiary-color-rgb: 255, 255, 255;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: inherit;--bs-link-color: #75AADB;--bs-link-color-rgb: 117, 170, 219;--bs-link-decoration: underline;--bs-link-hover-color: #5e88af;--bs-link-hover-color-rgb: 94, 136, 175;--bs-code-color: #1E4287;--bs-highlight-bg: #fff3cd;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.25rem;--bs-border-radius-sm: 0.2em;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(30, 66, 135, 0.25);--bs-form-valid-color: #198754;--bs-form-valid-border-color: #198754;--bs-form-invalid-color: #dc3545;--bs-form-invalid-border-color: #dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color: #dee2e6;--bs-body-color-rgb: 222, 226, 230;--bs-body-bg: #212529;--bs-body-bg-rgb: 33, 37, 41;--bs-emphasis-color: #ffffff;--bs-emphasis-color-rgb: 255, 255, 255;--bs-secondary-color: rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb: 222, 226, 230;--bs-secondary-bg: #343a40;--bs-secondary-bg-rgb: 52, 58, 64;--bs-tertiary-color: rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb: 222, 226, 230;--bs-tertiary-bg: #2b3035;--bs-tertiary-bg-rgb: 43, 48, 53;--bs-primary-text-emphasis: #788eb7;--bs-secondary-text-emphasis: #a7acb1;--bs-success-text-emphasis: #75b798;--bs-info-text-emphasis: #6edff6;--bs-warning-text-emphasis: #ffda6a;--bs-danger-text-emphasis: #ea868f;--bs-light-text-emphasis: #f8f9fa;--bs-dark-text-emphasis: #dee2e6;--bs-primary-bg-subtle: #060d1b;--bs-secondary-bg-subtle: #161719;--bs-success-bg-subtle: #051b11;--bs-info-bg-subtle: #032830;--bs-warning-bg-subtle: #332701;--bs-danger-bg-subtle: #2c0b0e;--bs-light-bg-subtle: #343a40;--bs-dark-bg-subtle: #1a1d20;--bs-primary-border-subtle: #122851;--bs-secondary-border-subtle: #41464b;--bs-success-border-subtle: #0f5132;--bs-info-border-subtle: #087990;--bs-warning-border-subtle: #997404;--bs-danger-border-subtle: #842029;--bs-light-border-subtle: #495057;--bs-dark-border-subtle: #343a40;--bs-heading-color: inherit;--bs-link-color: #788eb7;--bs-link-hover-color: #93a5c5;--bs-link-color-rgb: 120, 142, 183;--bs-link-hover-color-rgb: 147, 165, 197;--bs-code-color: white;--bs-border-color: #495057;--bs-border-color-translucent: rgba(255, 255, 255, 0.15);--bs-form-valid-color: #75b798;--bs-form-valid-border-color: #75b798;--bs-form-invalid-color: #ea868f;--bs-form-invalid-border-color: #ea868f}*,*::before,*::after{box-sizing:border-box}:root{font-size:var(--bs-root-font-size)}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1,.h1{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h1,.h1{font-size:2rem}}h2,.h2{font-size:calc(1.29rem + 0.48vw)}@media(min-width: 1200px){h2,.h2{font-size:1.65rem}}h3,.h3{font-size:calc(1.27rem + 0.24vw)}@media(min-width: 1200px){h3,.h3{font-size:1.45rem}}h4,.h4{font-size:1.25rem}h5,.h5{font-size:1.1rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{text-decoration:underline dotted;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;-ms-text-decoration:underline dotted;-o-text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}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;padding:.625rem 1.25rem;border-left:.25rem solid #e9ecef}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:"Fira Mono",Menlo,Consolas,monospace;font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em;color:#000;background-color:#f8f9fa;padding:.5rem;border:1px solid var(--bs-border-color, #dee2e6);border-radius:.25rem}pre code{background-color:rgba(0,0,0,0);font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:var(--bs-code-color);background-color:#f8f9fa;border-radius:.25rem;padding:.125rem .25rem;word-wrap:break-word}a>code{color:inherit}kbd{padding:.4rem .4rem;font-size:0.875em;color:#050725;background-color:rgba(255,255,255,.8705882353);border-radius:.2em}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(255,255,255,.75);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.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:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#050725;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:rgba(255,255,255,.75)}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}:root{--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px}.grid{display:grid;grid-template-rows:repeat(var(--bs-rows, 1), 1fr);grid-template-columns:repeat(var(--bs-columns, 12), 1fr);gap:var(--bs-gap, 1.5rem)}.grid .g-col-1{grid-column:auto/span 1}.grid .g-col-2{grid-column:auto/span 2}.grid .g-col-3{grid-column:auto/span 3}.grid .g-col-4{grid-column:auto/span 4}.grid .g-col-5{grid-column:auto/span 5}.grid .g-col-6{grid-column:auto/span 6}.grid .g-col-7{grid-column:auto/span 7}.grid .g-col-8{grid-column:auto/span 8}.grid .g-col-9{grid-column:auto/span 9}.grid .g-col-10{grid-column:auto/span 10}.grid .g-col-11{grid-column:auto/span 11}.grid .g-col-12{grid-column:auto/span 12}.grid .g-start-1{grid-column-start:1}.grid .g-start-2{grid-column-start:2}.grid .g-start-3{grid-column-start:3}.grid .g-start-4{grid-column-start:4}.grid .g-start-5{grid-column-start:5}.grid .g-start-6{grid-column-start:6}.grid .g-start-7{grid-column-start:7}.grid .g-start-8{grid-column-start:8}.grid .g-start-9{grid-column-start:9}.grid .g-start-10{grid-column-start:10}.grid .g-start-11{grid-column-start:11}@media(min-width: 576px){.grid .g-col-sm-1{grid-column:auto/span 1}.grid .g-col-sm-2{grid-column:auto/span 2}.grid .g-col-sm-3{grid-column:auto/span 3}.grid .g-col-sm-4{grid-column:auto/span 4}.grid .g-col-sm-5{grid-column:auto/span 5}.grid .g-col-sm-6{grid-column:auto/span 6}.grid .g-col-sm-7{grid-column:auto/span 7}.grid .g-col-sm-8{grid-column:auto/span 8}.grid .g-col-sm-9{grid-column:auto/span 9}.grid .g-col-sm-10{grid-column:auto/span 10}.grid .g-col-sm-11{grid-column:auto/span 11}.grid .g-col-sm-12{grid-column:auto/span 12}.grid .g-start-sm-1{grid-column-start:1}.grid .g-start-sm-2{grid-column-start:2}.grid .g-start-sm-3{grid-column-start:3}.grid .g-start-sm-4{grid-column-start:4}.grid .g-start-sm-5{grid-column-start:5}.grid .g-start-sm-6{grid-column-start:6}.grid .g-start-sm-7{grid-column-start:7}.grid .g-start-sm-8{grid-column-start:8}.grid .g-start-sm-9{grid-column-start:9}.grid .g-start-sm-10{grid-column-start:10}.grid .g-start-sm-11{grid-column-start:11}}@media(min-width: 768px){.grid .g-col-md-1{grid-column:auto/span 1}.grid .g-col-md-2{grid-column:auto/span 2}.grid .g-col-md-3{grid-column:auto/span 3}.grid .g-col-md-4{grid-column:auto/span 4}.grid .g-col-md-5{grid-column:auto/span 5}.grid .g-col-md-6{grid-column:auto/span 6}.grid .g-col-md-7{grid-column:auto/span 7}.grid .g-col-md-8{grid-column:auto/span 8}.grid .g-col-md-9{grid-column:auto/span 9}.grid .g-col-md-10{grid-column:auto/span 10}.grid .g-col-md-11{grid-column:auto/span 11}.grid .g-col-md-12{grid-column:auto/span 12}.grid .g-start-md-1{grid-column-start:1}.grid .g-start-md-2{grid-column-start:2}.grid .g-start-md-3{grid-column-start:3}.grid .g-start-md-4{grid-column-start:4}.grid .g-start-md-5{grid-column-start:5}.grid .g-start-md-6{grid-column-start:6}.grid .g-start-md-7{grid-column-start:7}.grid .g-start-md-8{grid-column-start:8}.grid .g-start-md-9{grid-column-start:9}.grid .g-start-md-10{grid-column-start:10}.grid .g-start-md-11{grid-column-start:11}}@media(min-width: 992px){.grid .g-col-lg-1{grid-column:auto/span 1}.grid .g-col-lg-2{grid-column:auto/span 2}.grid .g-col-lg-3{grid-column:auto/span 3}.grid .g-col-lg-4{grid-column:auto/span 4}.grid .g-col-lg-5{grid-column:auto/span 5}.grid .g-col-lg-6{grid-column:auto/span 6}.grid .g-col-lg-7{grid-column:auto/span 7}.grid .g-col-lg-8{grid-column:auto/span 8}.grid .g-col-lg-9{grid-column:auto/span 9}.grid .g-col-lg-10{grid-column:auto/span 10}.grid .g-col-lg-11{grid-column:auto/span 11}.grid .g-col-lg-12{grid-column:auto/span 12}.grid .g-start-lg-1{grid-column-start:1}.grid .g-start-lg-2{grid-column-start:2}.grid .g-start-lg-3{grid-column-start:3}.grid .g-start-lg-4{grid-column-start:4}.grid .g-start-lg-5{grid-column-start:5}.grid .g-start-lg-6{grid-column-start:6}.grid .g-start-lg-7{grid-column-start:7}.grid .g-start-lg-8{grid-column-start:8}.grid .g-start-lg-9{grid-column-start:9}.grid .g-start-lg-10{grid-column-start:10}.grid .g-start-lg-11{grid-column-start:11}}@media(min-width: 1200px){.grid .g-col-xl-1{grid-column:auto/span 1}.grid .g-col-xl-2{grid-column:auto/span 2}.grid .g-col-xl-3{grid-column:auto/span 3}.grid .g-col-xl-4{grid-column:auto/span 4}.grid .g-col-xl-5{grid-column:auto/span 5}.grid .g-col-xl-6{grid-column:auto/span 6}.grid .g-col-xl-7{grid-column:auto/span 7}.grid .g-col-xl-8{grid-column:auto/span 8}.grid .g-col-xl-9{grid-column:auto/span 9}.grid .g-col-xl-10{grid-column:auto/span 10}.grid .g-col-xl-11{grid-column:auto/span 11}.grid .g-col-xl-12{grid-column:auto/span 12}.grid .g-start-xl-1{grid-column-start:1}.grid .g-start-xl-2{grid-column-start:2}.grid .g-start-xl-3{grid-column-start:3}.grid .g-start-xl-4{grid-column-start:4}.grid .g-start-xl-5{grid-column-start:5}.grid .g-start-xl-6{grid-column-start:6}.grid .g-start-xl-7{grid-column-start:7}.grid .g-start-xl-8{grid-column-start:8}.grid .g-start-xl-9{grid-column-start:9}.grid .g-start-xl-10{grid-column-start:10}.grid .g-start-xl-11{grid-column-start:11}}@media(min-width: 1400px){.grid .g-col-xxl-1{grid-column:auto/span 1}.grid .g-col-xxl-2{grid-column:auto/span 2}.grid .g-col-xxl-3{grid-column:auto/span 3}.grid .g-col-xxl-4{grid-column:auto/span 4}.grid .g-col-xxl-5{grid-column:auto/span 5}.grid .g-col-xxl-6{grid-column:auto/span 6}.grid .g-col-xxl-7{grid-column:auto/span 7}.grid .g-col-xxl-8{grid-column:auto/span 8}.grid .g-col-xxl-9{grid-column:auto/span 9}.grid .g-col-xxl-10{grid-column:auto/span 10}.grid .g-col-xxl-11{grid-column:auto/span 11}.grid .g-col-xxl-12{grid-column:auto/span 12}.grid .g-start-xxl-1{grid-column-start:1}.grid .g-start-xxl-2{grid-column-start:2}.grid .g-start-xxl-3{grid-column-start:3}.grid .g-start-xxl-4{grid-column-start:4}.grid .g-start-xxl-5{grid-column-start:5}.grid .g-start-xxl-6{grid-column-start:6}.grid .g-start-xxl-7{grid-column-start:7}.grid .g-start-xxl-8{grid-column-start:8}.grid .g-start-xxl-9{grid-column-start:9}.grid .g-start-xxl-10{grid-column-start:10}.grid .g-start-xxl-11{grid-column-start:11}}.table{--bs-table-color-type: initial;--bs-table-bg-type: initial;--bs-table-color-state: initial;--bs-table-bg-state: initial;--bs-table-color: rgba(255, 255, 255, 0.8705882353);--bs-table-bg: #050725;--bs-table-border-color: #dee2e6;--bs-table-accent-bg: transparent;--bs-table-striped-color: rgba(255, 255, 255, 0.8705882353);--bs-table-striped-bg: rgba(0, 0, 0, 0.05);--bs-table-active-color: rgba(255, 255, 255, 0.8705882353);--bs-table-active-bg: rgba(0, 0, 0, 0.1);--bs-table-hover-color: rgba(255, 255, 255, 0.8705882353);--bs-table-hover-bg: rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(1px*2) solid rgba(255,255,255,.8705882353)}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-active{--bs-table-color-state: var(--bs-table-active-color);--bs-table-bg-state: var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state: var(--bs-table-hover-color);--bs-table-bg-state: var(--bs-table-hover-bg)}.table-primary{--bs-table-color: #000;--bs-table-bg: #d2d9e7;--bs-table-border-color: #bdc3d0;--bs-table-striped-bg: #c8cedb;--bs-table-striped-color: #000;--bs-table-active-bg: #bdc3d0;--bs-table-active-color: #000;--bs-table-hover-bg: #c2c9d6;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color: #000;--bs-table-bg: #e2e3e5;--bs-table-border-color: #cbccce;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color: #000;--bs-table-bg: #d1e7dd;--bs-table-border-color: #bcd0c7;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color: #000;--bs-table-bg: #cff4fc;--bs-table-border-color: #badce3;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color: #000;--bs-table-bg: #fff3cd;--bs-table-border-color: #e6dbb9;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color: #000;--bs-table-bg: #f8d7da;--bs-table-border-color: #dfc2c4;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color: #000;--bs-table-bg: #f8f9fa;--bs-table-border-color: #dfe0e1;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color: #ffffff;--bs-table-bg: #212529;--bs-table-border-color: #373b3e;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #ffffff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #ffffff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #ffffff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.shiny-input-container .control-label{margin-bottom:.5rem}.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}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem}.form-text{margin-top:.25rem;font-size:0.875em;color:rgba(255,255,255,.75)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#75aadb;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#050725;background-clip:padding-box;border:1px solid #dee2e6;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#75aadb;background-color:#050725;border-color:#8fa1c3;outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::placeholder{color:rgba(255,255,255,.75);opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#75aadb;background-color:#f8f9fa;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e9ecef}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:rgba(255,255,255,.8705882353);background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2));padding:.25rem .5rem;font-size:0.875rem;border-radius:.2em}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 0.75rem + calc(1px * 2))}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2))}.form-control-color{width:3rem;height:calc(1.5em + 0.75rem + calc(1px * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0 !important;border-radius:.25rem}.form-control-color::-webkit-color-swatch{border:0 !important;border-radius:.25rem}.form-control-color.form-control-sm{height:calc(1.5em + 0.5rem + calc(1px * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(1px * 2))}.form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#75aadb;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#050725;background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon, none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #dee2e6;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#8fa1c3;outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #75aadb}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem;border-radius:.2em}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check,.shiny-input-container .checkbox,.shiny-input-container .radio{display:block;min-height:1.5rem;padding-left:0;margin-bottom:.125rem}.form-check .form-check-input,.form-check .shiny-input-container .checkbox input,.form-check .shiny-input-container .radio input,.shiny-input-container .checkbox .form-check-input,.shiny-input-container .checkbox .shiny-input-container .checkbox input,.shiny-input-container .checkbox .shiny-input-container .radio input,.shiny-input-container .radio .form-check-input,.shiny-input-container .radio .shiny-input-container .checkbox input,.shiny-input-container .radio .shiny-input-container .radio input{float:left;margin-left:0}.form-check-reverse{padding-right:0;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:0;margin-left:0}.form-check-input,.shiny-input-container .checkbox input,.shiny-input-container .checkbox-inline input,.shiny-input-container .radio input,.shiny-input-container .radio-inline input{--bs-form-check-bg: #050725;width:1em;height:1em;margin-top:.25em;vertical-align:top;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid #dee2e6;print-color-adjust:exact}.form-check-input[type=checkbox],.shiny-input-container .checkbox input[type=checkbox],.shiny-input-container .checkbox-inline input[type=checkbox],.shiny-input-container .radio input[type=checkbox],.shiny-input-container .radio-inline input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio],.shiny-input-container .checkbox input[type=radio],.shiny-input-container .checkbox-inline input[type=radio],.shiny-input-container .radio input[type=radio],.shiny-input-container .radio-inline input[type=radio]{border-radius:50%}.form-check-input:active,.shiny-input-container .checkbox input:active,.shiny-input-container .checkbox-inline input:active,.shiny-input-container .radio input:active,.shiny-input-container .radio-inline input:active{filter:brightness(90%)}.form-check-input:focus,.shiny-input-container .checkbox input:focus,.shiny-input-container .checkbox-inline input:focus,.shiny-input-container .radio input:focus,.shiny-input-container .radio-inline input:focus{border-color:#8fa1c3;outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.form-check-input:checked,.shiny-input-container .checkbox input:checked,.shiny-input-container .checkbox-inline input:checked,.shiny-input-container .radio input:checked,.shiny-input-container .radio-inline input:checked{background-color:#1e4287;border-color:#1e4287}.form-check-input:checked[type=checkbox],.shiny-input-container .checkbox input:checked[type=checkbox],.shiny-input-container .checkbox-inline input:checked[type=checkbox],.shiny-input-container .radio input:checked[type=checkbox],.shiny-input-container .radio-inline input:checked[type=checkbox]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.shiny-input-container .checkbox input:checked[type=radio],.shiny-input-container .checkbox-inline input:checked[type=radio],.shiny-input-container .radio input:checked[type=radio],.shiny-input-container .radio-inline input:checked[type=radio]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.shiny-input-container .checkbox input[type=checkbox]:indeterminate,.shiny-input-container .checkbox-inline input[type=checkbox]:indeterminate,.shiny-input-container .radio input[type=checkbox]:indeterminate,.shiny-input-container .radio-inline input[type=checkbox]:indeterminate{background-color:#1e4287;border-color:#1e4287;--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled,.shiny-input-container .checkbox input:disabled,.shiny-input-container .checkbox-inline input:disabled,.shiny-input-container .radio input:disabled,.shiny-input-container .radio-inline input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input[disabled]~span,.form-check-input:disabled~.form-check-label,.form-check-input:disabled~span,.shiny-input-container .checkbox input[disabled]~.form-check-label,.shiny-input-container .checkbox input[disabled]~span,.shiny-input-container .checkbox input:disabled~.form-check-label,.shiny-input-container .checkbox input:disabled~span,.shiny-input-container .checkbox-inline input[disabled]~.form-check-label,.shiny-input-container .checkbox-inline input[disabled]~span,.shiny-input-container .checkbox-inline input:disabled~.form-check-label,.shiny-input-container .checkbox-inline input:disabled~span,.shiny-input-container .radio input[disabled]~.form-check-label,.shiny-input-container .radio input[disabled]~span,.shiny-input-container .radio input:disabled~.form-check-label,.shiny-input-container .radio input:disabled~span,.shiny-input-container .radio-inline input[disabled]~.form-check-label,.shiny-input-container .radio-inline input[disabled]~span,.shiny-input-container .radio-inline input:disabled~.form-check-label,.shiny-input-container .radio-inline input:disabled~span{cursor:default;opacity:.5}.form-check-label,.shiny-input-container .checkbox label,.shiny-input-container .checkbox-inline label,.shiny-input-container .radio label,.shiny-input-container .radio-inline label{cursor:pointer}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238fa1c3'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:rgba(0,0,0,0)}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #050725,0 0 0 .25rem rgba(30,66,135,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #050725,0 0 0 .25rem rgba(30,66,135,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#1e4287;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#bcc6db}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#1e4287;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#bcc6db}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:rgba(255,255,255,.75)}.form-range:disabled::-moz-range-thumb{background-color:rgba(255,255,255,.75)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(1px * 2));min-height:calc(3.5rem + calc(1px * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control::placeholder,.form-floating>.form-control-plaintext::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown),.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill,.form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-control-plaintext~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-control-plaintext~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem .375rem;z-index:-1;height:1.5em;content:"";background-color:#050725;border-radius:.25rem}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.form-floating>:disabled~label,.form-floating>.form-control:disabled~label{color:#6c757d}.form-floating>:disabled~label::after,.form-floating>.form-control:disabled~label::after{background-color:#e9ecef}.input-group{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:stretch;-webkit-align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select,.input-group>.form-floating{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus,.input-group>.form-floating:focus-within{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#75aadb;text-align:center;white-space:nowrap;background-color:#f8f9fa;border:1px solid #dee2e6;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;border-radius:.2em}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(1px*-1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#198754;border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-control-color:valid,.form-control-color.is-valid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):valid,.input-group>.form-control:not(:focus).is-valid,.was-validated .input-group>.form-select:not(:focus):valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.input-group>.form-floating:not(:focus-within).is-valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#dc3545;border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-control-color:invalid,.form-control-color.is-invalid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):invalid,.input-group>.form-control:not(:focus).is-invalid,.was-validated .input-group>.form-select:not(:focus):invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.input-group>.form-floating:not(:focus-within).is-invalid{z-index:4}.btn{--bs-btn-padding-x: 0.75rem;--bs-btn-padding-y: 0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight: 400;--bs-btn-line-height: 1.5;--bs-btn-color: rgba(255, 255, 255, 0.8705882353);--bs-btn-bg: transparent;--bs-btn-border-width: 1px;--bs-btn-border-color: transparent;--bs-btn-border-radius: 0.25rem;--bs-btn-hover-border-color: transparent;--bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity: 0.65;--bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,:not(.btn-check)+.btn:active,.btn:first-child:active,.btn.active,.btn.show{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,:not(.btn-check)+.btn:active:focus-visible,.btn:first-child:active:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-default{--bs-btn-color: #000;--bs-btn-bg: #dee2e6;--bs-btn-border-color: #dee2e6;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #e3e6ea;--bs-btn-hover-border-color: #e1e5e9;--bs-btn-focus-shadow-rgb: 189, 192, 196;--bs-btn-active-color: #000;--bs-btn-active-bg: #e5e8eb;--bs-btn-active-border-color: #e1e5e9;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #dee2e6;--bs-btn-disabled-border-color: #dee2e6}.btn-primary{--bs-btn-color: #ffffff;--bs-btn-bg: #1E4287;--bs-btn-border-color: #1E4287;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #1a3873;--bs-btn-hover-border-color: #18356c;--bs-btn-focus-shadow-rgb: 64, 94, 153;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #18356c;--bs-btn-active-border-color: #173265;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #1E4287;--bs-btn-disabled-border-color: #1E4287}.btn-secondary{--bs-btn-color: #ffffff;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #5c636a;--bs-btn-hover-border-color: #565e64;--bs-btn-focus-shadow-rgb: 130, 138, 145;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #565e64;--bs-btn-active-border-color: #51585e;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}.btn-success{--bs-btn-color: #ffffff;--bs-btn-bg: #198754;--bs-btn-border-color: #198754;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #157347;--bs-btn-hover-border-color: #146c43;--bs-btn-focus-shadow-rgb: 60, 153, 110;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #146c43;--bs-btn-active-border-color: #13653f;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #198754;--bs-btn-disabled-border-color: #198754}.btn-info{--bs-btn-color: #000;--bs-btn-bg: #0dcaf0;--bs-btn-border-color: #0dcaf0;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #31d2f2;--bs-btn-hover-border-color: #25cff2;--bs-btn-focus-shadow-rgb: 11, 172, 204;--bs-btn-active-color: #000;--bs-btn-active-bg: #3dd5f3;--bs-btn-active-border-color: #25cff2;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #0dcaf0;--bs-btn-disabled-border-color: #0dcaf0}.btn-warning{--bs-btn-color: #000;--bs-btn-bg: #ffc107;--bs-btn-border-color: #ffc107;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ffca2c;--bs-btn-hover-border-color: #ffc720;--bs-btn-focus-shadow-rgb: 217, 164, 6;--bs-btn-active-color: #000;--bs-btn-active-bg: #ffcd39;--bs-btn-active-border-color: #ffc720;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #ffc107;--bs-btn-disabled-border-color: #ffc107}.btn-danger{--bs-btn-color: #ffffff;--bs-btn-bg: #dc3545;--bs-btn-border-color: #dc3545;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #bb2d3b;--bs-btn-hover-border-color: #b02a37;--bs-btn-focus-shadow-rgb: 225, 83, 97;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #b02a37;--bs-btn-active-border-color: #a52834;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #dc3545;--bs-btn-disabled-border-color: #dc3545}.btn-light{--bs-btn-color: #000;--bs-btn-bg: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #d3d4d5;--bs-btn-hover-border-color: #c6c7c8;--bs-btn-focus-shadow-rgb: 211, 212, 213;--bs-btn-active-color: #000;--bs-btn-active-bg: #c6c7c8;--bs-btn-active-border-color: #babbbc;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #f8f9fa;--bs-btn-disabled-border-color: #f8f9fa}.btn-dark{--bs-btn-color: #ffffff;--bs-btn-bg: #212529;--bs-btn-border-color: #212529;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #424649;--bs-btn-hover-border-color: #373b3e;--bs-btn-focus-shadow-rgb: 66, 70, 73;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #4d5154;--bs-btn-active-border-color: #373b3e;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #212529;--bs-btn-disabled-border-color: #212529}.btn-outline-default{--bs-btn-color: #dee2e6;--bs-btn-border-color: #dee2e6;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #dee2e6;--bs-btn-hover-border-color: #dee2e6;--bs-btn-focus-shadow-rgb: 222, 226, 230;--bs-btn-active-color: #000;--bs-btn-active-bg: #dee2e6;--bs-btn-active-border-color: #dee2e6;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #dee2e6;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #dee2e6;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-primary{--bs-btn-color: #1E4287;--bs-btn-border-color: #1E4287;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #1E4287;--bs-btn-hover-border-color: #1E4287;--bs-btn-focus-shadow-rgb: 30, 66, 135;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #1E4287;--bs-btn-active-border-color: #1E4287;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #1E4287;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #1E4287;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-secondary{--bs-btn-color: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #6c757d;--bs-btn-hover-border-color: #6c757d;--bs-btn-focus-shadow-rgb: 108, 117, 125;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #6c757d;--bs-btn-active-border-color: #6c757d;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #6c757d;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-success{--bs-btn-color: #198754;--bs-btn-border-color: #198754;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #198754;--bs-btn-hover-border-color: #198754;--bs-btn-focus-shadow-rgb: 25, 135, 84;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #198754;--bs-btn-active-border-color: #198754;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #198754;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #198754;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-info{--bs-btn-color: #0dcaf0;--bs-btn-border-color: #0dcaf0;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #0dcaf0;--bs-btn-hover-border-color: #0dcaf0;--bs-btn-focus-shadow-rgb: 13, 202, 240;--bs-btn-active-color: #000;--bs-btn-active-bg: #0dcaf0;--bs-btn-active-border-color: #0dcaf0;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #0dcaf0;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #0dcaf0;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-warning{--bs-btn-color: #ffc107;--bs-btn-border-color: #ffc107;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ffc107;--bs-btn-hover-border-color: #ffc107;--bs-btn-focus-shadow-rgb: 255, 193, 7;--bs-btn-active-color: #000;--bs-btn-active-bg: #ffc107;--bs-btn-active-border-color: #ffc107;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffc107;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ffc107;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-danger{--bs-btn-color: #dc3545;--bs-btn-border-color: #dc3545;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #dc3545;--bs-btn-hover-border-color: #dc3545;--bs-btn-focus-shadow-rgb: 220, 53, 69;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #dc3545;--bs-btn-active-border-color: #dc3545;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #dc3545;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #dc3545;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-light{--bs-btn-color: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #f8f9fa;--bs-btn-hover-border-color: #f8f9fa;--bs-btn-focus-shadow-rgb: 248, 249, 250;--bs-btn-active-color: #000;--bs-btn-active-bg: #f8f9fa;--bs-btn-active-border-color: #f8f9fa;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #f8f9fa;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #f8f9fa;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-dark{--bs-btn-color: #212529;--bs-btn-border-color: #212529;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #212529;--bs-btn-hover-border-color: #212529;--bs-btn-focus-shadow-rgb: 33, 37, 41;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #212529;--bs-btn-active-border-color: #212529;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #212529;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #212529;--bs-btn-bg: transparent;--bs-gradient: none}.btn-link{--bs-btn-font-weight: 400;--bs-btn-color: #75AADB;--bs-btn-bg: transparent;--bs-btn-border-color: transparent;--bs-btn-hover-color: #5e88af;--bs-btn-hover-border-color: transparent;--bs-btn-active-color: #5e88af;--bs-btn-active-border-color: transparent;--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-border-color: transparent;--bs-btn-box-shadow: 0 0 0 #000;--bs-btn-focus-shadow-rgb: 99, 145, 186;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.btn-group-lg>.btn{--bs-btn-padding-y: 0.5rem;--bs-btn-padding-x: 1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius: 0.5rem}.btn-sm,.btn-group-sm>.btn{--bs-btn-padding-y: 0.25rem;--bs-btn-padding-x: 0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius: 0.2em}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .2s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart,.dropup-center,.dropdown-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex: 1000;--bs-dropdown-min-width: 10rem;--bs-dropdown-padding-x: 0;--bs-dropdown-padding-y: 0.5rem;--bs-dropdown-spacer: 0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color: rgba(255, 255, 255, 0.8705882353);--bs-dropdown-bg: #050725;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-border-radius: 0.25rem;--bs-dropdown-border-width: 1px;--bs-dropdown-inner-border-radius: calc(0.25rem - 1px);--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-divider-margin-y: 0.5rem;--bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color: rgba(255, 255, 255, 0.8705882353);--bs-dropdown-link-hover-color: rgba(255, 255, 255, 0.8705882353);--bs-dropdown-link-hover-bg: #f8f9fa;--bs-dropdown-link-active-color: #ffffff;--bs-dropdown-link-active-bg: #1E4287;--bs-dropdown-link-disabled-color: rgba(255, 255, 255, 0.5);--bs-dropdown-item-padding-x: 1rem;--bs-dropdown-item-padding-y: 0.25rem;--bs-dropdown-header-color: #6c757d;--bs-dropdown-header-padding-x: 1rem;--bs-dropdown-header-padding-y: 0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0;border-radius:var(--bs-dropdown-item-border-radius, 0)}.dropdown-item:hover,.dropdown-item:focus{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:0.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color: #dee2e6;--bs-dropdown-bg: #343a40;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color: #dee2e6;--bs-dropdown-link-hover-color: #ffffff;--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color: #ffffff;--bs-dropdown-link-active-bg: #1E4287;--bs-dropdown-link-disabled-color: #adb5bd;--bs-dropdown-header-color: #adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:flex-start;-webkit-justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.25rem}.btn-group>:not(.btn-check:first-child)+.btn,.btn-group>.btn-group:not(:first-child){margin-left:calc(1px*-1)}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;-webkit-flex-direction:column;align-items:flex-start;-webkit-align-items:flex-start;justify-content:center;-webkit-justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:calc(1px*-1)}.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~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x: 1rem;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: #75AADB;--bs-nav-link-hover-color: #5e88af;--bs-nav-link-disabled-color: rgba(255, 255, 255, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background:none;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width: 1px;--bs-nav-tabs-border-color: #dee2e6;--bs-nav-tabs-border-radius: 0.25rem;--bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color: #000;--bs-nav-tabs-link-active-bg: #050725;--bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #050725;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1*var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid rgba(0,0,0,0);border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1*var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius: 0.25rem;--bs-nav-pills-link-active-color: #ffffff;--bs-nav-pills-link-active-bg: #1E4287}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap: 1rem;--bs-nav-underline-border-width: 0.125rem;--bs-nav-underline-link-active-color: #000;gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid rgba(0,0,0,0)}.nav-underline .nav-link:hover,.nav-underline .nav-link:focus{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;-webkit-flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;-webkit-flex-basis:0;flex-grow:1;-webkit-flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x: 0;--bs-navbar-padding-y: 0.5rem;--bs-navbar-color: #98989f;--bs-navbar-hover-color: rgba(117, 170, 219, 0.8);--bs-navbar-disabled-color: rgba(152, 152, 159, 0.75);--bs-navbar-active-color: #75aadb;--bs-navbar-brand-padding-y: 0.3125rem;--bs-navbar-brand-margin-end: 1rem;--bs-navbar-brand-font-size: 1.25rem;--bs-navbar-brand-color: #98989f;--bs-navbar-brand-hover-color: #75aadb;--bs-navbar-nav-link-padding-x: 0.5rem;--bs-navbar-toggler-padding-y: 0.25;--bs-navbar-toggler-padding-x: 0;--bs-navbar-toggler-font-size: 1.25rem;--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2398989f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color: rgba(152, 152, 159, 0);--bs-navbar-toggler-border-radius: 0.25rem;--bs-navbar-toggler-focus-width: 0.25rem;--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;display:-webkit-flex;flex-wrap:inherit;-webkit-flex-wrap:inherit;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x: 0;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: var(--bs-navbar-color);--bs-nav-link-hover-color: var(--bs-navbar-hover-color);--bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:hover,.navbar-text a:focus{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;-webkit-flex-basis:100%;flex-grow:1;-webkit-flex-grow:1;align-items:center;-webkit-align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:rgba(0,0,0,0);border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}.navbar-dark,.navbar[data-bs-theme=dark]{--bs-navbar-color: #98989f;--bs-navbar-hover-color: rgba(117, 170, 219, 0.8);--bs-navbar-disabled-color: rgba(152, 152, 159, 0.75);--bs-navbar-active-color: #75aadb;--bs-navbar-brand-color: #98989f;--bs-navbar-brand-hover-color: #75aadb;--bs-navbar-toggler-border-color: rgba(152, 152, 159, 0);--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2398989f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2398989f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: 0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width: 1px;--bs-card-border-color: rgba(0, 0, 0, 0.175);--bs-card-border-radius: 0.25rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius: calc(0.25rem - 1px);--bs-card-cap-padding-y: 0.5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(52, 58, 64, 0.25);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: #050725;--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: 0.75rem;position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-0.5*var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-bottom:calc(-1*var(--bs-card-cap-padding-y));margin-left:calc(-0.5*var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-left:calc(-0.5*var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media(min-width: 576px){.card-group{display:flex;display:-webkit-flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.card-group>.card{flex:1 0 0%;-webkit-flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion{--bs-accordion-color: rgba(255, 255, 255, 0.8705882353);--bs-accordion-bg: #050725;--bs-accordion-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, border-radius 0.15s ease;--bs-accordion-border-color: #dee2e6;--bs-accordion-border-width: 1px;--bs-accordion-border-radius: 0.25rem;--bs-accordion-inner-border-radius: calc(0.25rem - 1px);--bs-accordion-btn-padding-x: 1.25rem;--bs-accordion-btn-padding-y: 1rem;--bs-accordion-btn-color: rgba(255, 255, 255, 0.8705882353);--bs-accordion-btn-bg: #050725;--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba%28255, 255, 255, 0.8705882353%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width: 1.25rem;--bs-accordion-btn-icon-transform: rotate(-180deg);--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c1a36'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color: #8fa1c3;--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(30, 66, 135, 0.25);--bs-accordion-body-padding-x: 1.25rem;--bs-accordion-body-padding-y: 1rem;--bs-accordion-active-color: #0c1a36;--bs-accordion-active-bg: #d2d9e7}.accordion-button{position:relative;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1*var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;-webkit-flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23788eb7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23788eb7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x: 0;--bs-breadcrumb-padding-y: 0;--bs-breadcrumb-margin-bottom: 1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.75);--bs-breadcrumb-item-padding-x: 0.5rem;--bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, ">") /* rtl: var(--bs-breadcrumb-divider, ">") */}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x: 0.75rem;--bs-pagination-padding-y: 0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color: #75AADB;--bs-pagination-bg: #050725;--bs-pagination-border-width: 1px;--bs-pagination-border-color: #dee2e6;--bs-pagination-border-radius: 0.25rem;--bs-pagination-hover-color: #5e88af;--bs-pagination-hover-bg: #f8f9fa;--bs-pagination-hover-border-color: #dee2e6;--bs-pagination-focus-color: #5e88af;--bs-pagination-focus-bg: #e9ecef;--bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(30, 66, 135, 0.25);--bs-pagination-active-color: #ffffff;--bs-pagination-active-bg: #1E4287;--bs-pagination-active-border-color: #1E4287;--bs-pagination-disabled-color: rgba(255, 255, 255, 0.75);--bs-pagination-disabled-bg: #e9ecef;--bs-pagination-disabled-border-color: #dee2e6;display:flex;display:-webkit-flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.page-link.active,.active>.page-link{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.page-link.disabled,.disabled>.page-link{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(1px*-1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x: 1.5rem;--bs-pagination-padding-y: 0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius: 0.5rem}.pagination-sm{--bs-pagination-padding-x: 0.5rem;--bs-pagination-padding-y: 0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius: 0.2em}.badge{--bs-badge-padding-x: 0.65em;--bs-badge-padding-y: 0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight: 700;--bs-badge-color: #ffffff;--bs-badge-border-radius: 0.25rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg: transparent;--bs-alert-padding-x: 1rem;--bs-alert-padding-y: 1rem;--bs-alert-margin-bottom: 1rem;--bs-alert-color: inherit;--bs-alert-border-color: transparent;--bs-alert-border: 1px solid var(--bs-alert-border-color);--bs-alert-border-radius: 0.25rem;--bs-alert-link-color: inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-default{--bs-alert-color: var(--bs-default-text-emphasis);--bs-alert-bg: var(--bs-default-bg-subtle);--bs-alert-border-color: var(--bs-default-border-subtle);--bs-alert-link-color: var(--bs-default-text-emphasis)}.alert-primary{--bs-alert-color: var(--bs-primary-text-emphasis);--bs-alert-bg: var(--bs-primary-bg-subtle);--bs-alert-border-color: var(--bs-primary-border-subtle);--bs-alert-link-color: var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color: var(--bs-secondary-text-emphasis);--bs-alert-bg: var(--bs-secondary-bg-subtle);--bs-alert-border-color: var(--bs-secondary-border-subtle);--bs-alert-link-color: var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color: var(--bs-success-text-emphasis);--bs-alert-bg: var(--bs-success-bg-subtle);--bs-alert-border-color: var(--bs-success-border-subtle);--bs-alert-link-color: var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color: var(--bs-info-text-emphasis);--bs-alert-bg: var(--bs-info-bg-subtle);--bs-alert-border-color: var(--bs-info-border-subtle);--bs-alert-link-color: var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color: var(--bs-warning-text-emphasis);--bs-alert-bg: var(--bs-warning-bg-subtle);--bs-alert-border-color: var(--bs-warning-border-subtle);--bs-alert-link-color: var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color: var(--bs-danger-text-emphasis);--bs-alert-bg: var(--bs-danger-bg-subtle);--bs-alert-border-color: var(--bs-danger-border-subtle);--bs-alert-link-color: var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color: var(--bs-light-text-emphasis);--bs-alert-bg: var(--bs-light-bg-subtle);--bs-alert-border-color: var(--bs-light-border-subtle);--bs-alert-link-color: var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color: var(--bs-dark-text-emphasis);--bs-alert-bg: var(--bs-dark-bg-subtle);--bs-alert-border-color: var(--bs-dark-border-subtle);--bs-alert-link-color: var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height: 1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg: #e9ecef;--bs-progress-border-radius: 0.25rem;--bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color: #ffffff;--bs-progress-bar-bg: #1E4287;--bs-progress-bar-transition: width 0.6s ease;display:flex;display:-webkit-flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;justify-content:center;-webkit-justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.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:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color: rgba(255, 255, 255, 0.8705882353);--bs-list-group-bg: #050725;--bs-list-group-border-color: #dee2e6;--bs-list-group-border-width: 1px;--bs-list-group-border-radius: 0.25rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: 0.5rem;--bs-list-group-action-color: rgba(255, 255, 255, 0.75);--bs-list-group-action-hover-color: #000;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: rgba(255, 255, 255, 0.8705882353);--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: rgba(255, 255, 255, 0.75);--bs-list-group-disabled-bg: #050725;--bs-list-group-active-color: #ffffff;--bs-list-group-active-bg: #1E4287;--bs-list-group-active-border-color: #1E4287;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1*var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-default{--bs-list-group-color: var(--bs-default-text-emphasis);--bs-list-group-bg: var(--bs-default-bg-subtle);--bs-list-group-border-color: var(--bs-default-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-default-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-default-border-subtle);--bs-list-group-active-color: var(--bs-default-bg-subtle);--bs-list-group-active-bg: var(--bs-default-text-emphasis);--bs-list-group-active-border-color: var(--bs-default-text-emphasis)}.list-group-item-primary{--bs-list-group-color: var(--bs-primary-text-emphasis);--bs-list-group-bg: var(--bs-primary-bg-subtle);--bs-list-group-border-color: var(--bs-primary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-primary-border-subtle);--bs-list-group-active-color: var(--bs-primary-bg-subtle);--bs-list-group-active-bg: var(--bs-primary-text-emphasis);--bs-list-group-active-border-color: var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color: var(--bs-secondary-text-emphasis);--bs-list-group-bg: var(--bs-secondary-bg-subtle);--bs-list-group-border-color: var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);--bs-list-group-active-color: var(--bs-secondary-bg-subtle);--bs-list-group-active-bg: var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color: var(--bs-success-text-emphasis);--bs-list-group-bg: var(--bs-success-bg-subtle);--bs-list-group-border-color: var(--bs-success-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-success-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-success-border-subtle);--bs-list-group-active-color: var(--bs-success-bg-subtle);--bs-list-group-active-bg: var(--bs-success-text-emphasis);--bs-list-group-active-border-color: var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color: var(--bs-info-text-emphasis);--bs-list-group-bg: var(--bs-info-bg-subtle);--bs-list-group-border-color: var(--bs-info-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-info-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-info-border-subtle);--bs-list-group-active-color: var(--bs-info-bg-subtle);--bs-list-group-active-bg: var(--bs-info-text-emphasis);--bs-list-group-active-border-color: var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color: var(--bs-warning-text-emphasis);--bs-list-group-bg: var(--bs-warning-bg-subtle);--bs-list-group-border-color: var(--bs-warning-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-warning-border-subtle);--bs-list-group-active-color: var(--bs-warning-bg-subtle);--bs-list-group-active-bg: var(--bs-warning-text-emphasis);--bs-list-group-active-border-color: var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color: var(--bs-danger-text-emphasis);--bs-list-group-bg: var(--bs-danger-bg-subtle);--bs-list-group-border-color: var(--bs-danger-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-danger-border-subtle);--bs-list-group-active-color: var(--bs-danger-bg-subtle);--bs-list-group-active-bg: var(--bs-danger-text-emphasis);--bs-list-group-active-border-color: var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color: var(--bs-light-text-emphasis);--bs-list-group-bg: var(--bs-light-bg-subtle);--bs-list-group-border-color: var(--bs-light-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-light-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-light-border-subtle);--bs-list-group-active-color: var(--bs-light-bg-subtle);--bs-list-group-active-bg: var(--bs-light-text-emphasis);--bs-list-group-active-border-color: var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color: var(--bs-dark-text-emphasis);--bs-list-group-bg: var(--bs-dark-bg-subtle);--bs-list-group-border-color: var(--bs-dark-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-dark-border-subtle);--bs-list-group-active-color: var(--bs-dark-bg-subtle);--bs-list-group-active-bg: var(--bs-dark-text-emphasis);--bs-list-group-active-border-color: var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color: #000;--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity: 0.5;--bs-btn-close-hover-opacity: 0.75;--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(30, 66, 135, 0.25);--bs-btn-close-focus-opacity: 1;--bs-btn-close-disabled-opacity: 0.25;--bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:rgba(0,0,0,0) var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex: 1090;--bs-toast-padding-x: 0.75rem;--bs-toast-padding-y: 0.5rem;--bs-toast-spacing: 1.5rem;--bs-toast-max-width: 350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg: rgba(5, 7, 37, 0.85);--bs-toast-border-width: 1px;--bs-toast-border-color: rgba(0, 0, 0, 0.175);--bs-toast-border-radius: 0.25rem;--bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color: rgba(255, 255, 255, 0.75);--bs-toast-header-bg: rgba(5, 7, 37, 0.85);--bs-toast-header-border-color: rgba(0, 0, 0, 0.175);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex: 1090;position:absolute;z-index:var(--bs-toast-zindex);width:max-content;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:-o-max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-0.5*var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex: 1055;--bs-modal-width: 500px;--bs-modal-padding: 1rem;--bs-modal-margin: 0.5rem;--bs-modal-color: ;--bs-modal-bg: #050725;--bs-modal-border-color: rgba(0, 0, 0, 0.175);--bs-modal-border-width: 1px;--bs-modal-border-radius: 0.5rem;--bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius: calc(0.5rem - 1px);--bs-modal-header-padding-x: 1rem;--bs-modal-header-padding-y: 1rem;--bs-modal-header-padding: 1rem 1rem;--bs-modal-header-border-color: #dee2e6;--bs-modal-header-border-width: 1px;--bs-modal-title-line-height: 1.5;--bs-modal-footer-gap: 0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color: #dee2e6;--bs-modal-footer-border-width: 1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin)*2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;min-height:calc(100% - var(--bs-modal-margin)*2)}.modal-content{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex: 1050;--bs-backdrop-bg: #000;--bs-backdrop-opacity: 0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);margin:calc(-0.5*var(--bs-modal-header-padding-y)) calc(-0.5*var(--bs-modal-header-padding-x)) calc(-0.5*var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:flex-end;-webkit-justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap)*.5)}@media(min-width: 576px){.modal{--bs-modal-margin: 1.75rem;--bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width: 300px}}@media(min-width: 992px){.modal-lg,.modal-xl{--bs-modal-width: 800px}}@media(min-width: 1200px){.modal-xl{--bs-modal-width: 1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header,.modal-fullscreen .modal-footer{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header,.modal-fullscreen-sm-down .modal-footer{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header,.modal-fullscreen-md-down .modal-footer{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header,.modal-fullscreen-lg-down .modal-footer{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header,.modal-fullscreen-xl-down .modal-footer{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header,.modal-fullscreen-xxl-down .modal-footer{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex: 1080;--bs-tooltip-max-width: 200px;--bs-tooltip-padding-x: 0.5rem;--bs-tooltip-padding-y: 0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color: #050725;--bs-tooltip-bg: #000;--bs-tooltip-border-radius: 0.25rem;--bs-tooltip-opacity: 0.9;--bs-tooltip-arrow-width: 0.8rem;--bs-tooltip-arrow-height: 0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:Roboto;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;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex: 1070;--bs-popover-max-width: 276px;--bs-popover-font-size:0.875rem;--bs-popover-bg: #050725;--bs-popover-border-width: 1px;--bs-popover-border-color: rgba(0, 0, 0, 0.175);--bs-popover-border-radius: 0.5rem;--bs-popover-inner-border-radius: calc(0.5rem - 1px);--bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x: 1rem;--bs-popover-header-padding-y: 0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: inherit;--bs-popover-header-bg: #e9ecef;--bs-popover-body-padding-x: 1rem;--bs-popover-body-padding-y: 1rem;--bs-popover-body-color: rgba(255, 255, 255, 0.8705882353);--bs-popover-arrow-width: 1rem;--bs-popover-arrow-height: 0.5rem;--bs-popover-arrow-border: var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:Roboto;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;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid;border-width:0}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{border-width:0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-0.5*var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) 0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y;-webkit-touch-action:pan-y;-moz-touch-action:pan-y;-ms-touch-action:pan-y;-o-touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.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:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;display:-webkit-flex;justify-content:center;-webkit-justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;-webkit-flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-grow,.spinner-border{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-border-width: 0.25em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:rgba(0,0,0,0)}.spinner-border-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem;--bs-spinner-border-width: 0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed: 1.5s}}.offcanvas,.offcanvas-xxl,.offcanvas-xl,.offcanvas-lg,.offcanvas-md,.offcanvas-sm{--bs-offcanvas-zindex: 1045;--bs-offcanvas-width: 400px;--bs-offcanvas-height: 30vh;--bs-offcanvas-padding-x: 1rem;--bs-offcanvas-padding-y: 1rem;--bs-offcanvas-color: rgba(255, 255, 255, 0.8705882353);--bs-offcanvas-bg: #050725;--bs-offcanvas-border-width: 1px;--bs-offcanvas-border-color: rgba(0, 0, 0, 0.175);--bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition: transform 0.3s ease-in-out;--bs-offcanvas-title-line-height: 1.5}@media(max-width: 575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 575.98px)and (prefers-reduced-motion: reduce){.offcanvas-sm{transition:none}}@media(max-width: 575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.showing,.offcanvas-sm.show:not(.hiding){transform:none}.offcanvas-sm.showing,.offcanvas-sm.hiding,.offcanvas-sm.show{visibility:visible}}@media(min-width: 576px){.offcanvas-sm{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 767.98px)and (prefers-reduced-motion: reduce){.offcanvas-md{transition:none}}@media(max-width: 767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.showing,.offcanvas-md.show:not(.hiding){transform:none}.offcanvas-md.showing,.offcanvas-md.hiding,.offcanvas-md.show{visibility:visible}}@media(min-width: 768px){.offcanvas-md{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 991.98px)and (prefers-reduced-motion: reduce){.offcanvas-lg{transition:none}}@media(max-width: 991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.showing,.offcanvas-lg.show:not(.hiding){transform:none}.offcanvas-lg.showing,.offcanvas-lg.hiding,.offcanvas-lg.show{visibility:visible}}@media(min-width: 992px){.offcanvas-lg{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1199.98px)and (prefers-reduced-motion: reduce){.offcanvas-xl{transition:none}}@media(max-width: 1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.showing,.offcanvas-xl.show:not(.hiding){transform:none}.offcanvas-xl.showing,.offcanvas-xl.hiding,.offcanvas-xl.show{visibility:visible}}@media(min-width: 1200px){.offcanvas-xl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1399.98px)and (prefers-reduced-motion: reduce){.offcanvas-xxl{transition:none}}@media(max-width: 1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.showing,.offcanvas-xxl.show:not(.hiding){transform:none}.offcanvas-xxl.showing,.offcanvas-xxl.hiding,.offcanvas-xxl.show{visibility:visible}}@media(min-width: 1400px){.offcanvas-xxl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.showing,.offcanvas.show:not(.hiding){transform:none}.offcanvas.showing,.offcanvas.hiding,.offcanvas.show{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y)*.5) calc(var(--bs-offcanvas-padding-x)*.5);margin-top:calc(-0.5*var(--bs-offcanvas-padding-y));margin-right:calc(-0.5*var(--bs-offcanvas-padding-x));margin-bottom:calc(-0.5*var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;-webkit-flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-size:200% 100%;-webkit-mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%;-webkit-mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-default{color:#000 !important;background-color:RGBA(var(--bs-default-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-primary{color:#fff !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#000 !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#000 !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.link-default{color:RGBA(var(--bs-default-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-default-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-default:hover,.link-default:focus{color:RGBA(229, 232, 235, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(229, 232, 235, var(--bs-link-underline-opacity, 1)) !important}.link-primary{color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(24, 53, 108, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(24, 53, 108, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;-webkit-flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media(prefers-reduced-motion: reduce){.icon-link>.bi{transition:none}}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-21x9{--bs-aspect-ratio: 42.8571428571%}.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}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;display:-webkit-flex;flex-direction:row;-webkit-flex-direction:row;align-items:center;-webkit-align-items:center;align-self:stretch;-webkit-align-self:stretch}.vstack{display:flex;display:-webkit-flex;flex:1 1 auto;-webkit-flex:1 1 auto;flex-direction:column;-webkit-flex-direction:column;align-self:stretch;-webkit-align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;-webkit-align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.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}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.object-fit-contain{object-fit:contain !important}.object-fit-cover{object-fit:cover !important}.object-fit-fill{object-fit:fill !important}.object-fit-scale{object-fit:scale-down !important}.object-fit-none{object-fit:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-auto{overflow-y:auto !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-y-visible{overflow-y:visible !important}.overflow-y-scroll{overflow-y:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.focus-ring-default{--bs-focus-ring-color: rgba(var(--bs-default-rgb), var(--bs-focus-ring-opacity))}.focus-ring-primary{--bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-0{border:0 !important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-top-0{border-top:0 !important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-start-0{border-left:0 !important}.border-default{--bs-border-opacity: 1;border-color:rgba(var(--bs-default-rgb), var(--bs-border-opacity)) !important}.border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important}.border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important}.border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important}.border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important}.border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important}.border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important}.border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important}.border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important}.border-black{--bs-border-opacity: 1;border-color:rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important}.border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle) !important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle) !important}.border-success-subtle{border-color:var(--bs-success-border-subtle) !important}.border-info-subtle{border-color:var(--bs-info-border-subtle) !important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle) !important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle) !important}.border-light-subtle{border-color:var(--bs-light-border-subtle) !important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle) !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.border-opacity-10{--bs-border-opacity: 0.1}.border-opacity-25{--bs-border-opacity: 0.25}.border-opacity-50{--bs-border-opacity: 0.5}.border-opacity-75{--bs-border-opacity: 0.75}.border-opacity-100{--bs-border-opacity: 1}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.row-gap-0{row-gap:0 !important}.row-gap-1{row-gap:.25rem !important}.row-gap-2{row-gap:.5rem !important}.row-gap-3{row-gap:1rem !important}.row-gap-4{row-gap:1.5rem !important}.row-gap-5{row-gap:3rem !important}.column-gap-0{column-gap:0 !important}.column-gap-1{column-gap:.25rem !important}.column-gap-2{column-gap:.5rem !important}.column-gap-3{column-gap:1rem !important}.column-gap-4{column-gap:1.5rem !important}.column-gap-5{column-gap:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.325rem + 0.9vw) !important}.fs-2{font-size:calc(1.29rem + 0.48vw) !important}.fs-3{font-size:calc(1.27rem + 0.24vw) !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.1rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-lighter{font-weight:lighter !important}.fw-light{font-weight:300 !important}.fw-normal{font-weight:400 !important}.fw-medium{font-weight:500 !important}.fw-semibold{font-weight:600 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-default{--bs-text-opacity: 1;color:rgba(var(--bs-default-rgb), var(--bs-text-opacity)) !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-body-secondary{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-body-tertiary{--bs-text-opacity: 1;color:var(--bs-tertiary-color) !important}.text-body-emphasis{--bs-text-opacity: 1;color:var(--bs-emphasis-color) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis) !important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis) !important}.text-success-emphasis{color:var(--bs-success-text-emphasis) !important}.text-info-emphasis{color:var(--bs-info-text-emphasis) !important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis) !important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis) !important}.text-light-emphasis{color:var(--bs-light-text-emphasis) !important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis) !important}.link-opacity-10{--bs-link-opacity: 0.1}.link-opacity-10-hover:hover{--bs-link-opacity: 0.1}.link-opacity-25{--bs-link-opacity: 0.25}.link-opacity-25-hover:hover{--bs-link-opacity: 0.25}.link-opacity-50{--bs-link-opacity: 0.5}.link-opacity-50-hover:hover{--bs-link-opacity: 0.5}.link-opacity-75{--bs-link-opacity: 0.75}.link-opacity-75-hover:hover{--bs-link-opacity: 0.75}.link-opacity-100{--bs-link-opacity: 1}.link-opacity-100-hover:hover{--bs-link-opacity: 1}.link-offset-1{text-underline-offset:.125em !important}.link-offset-1-hover:hover{text-underline-offset:.125em !important}.link-offset-2{text-underline-offset:.25em !important}.link-offset-2-hover:hover{text-underline-offset:.25em !important}.link-offset-3{text-underline-offset:.375em !important}.link-offset-3-hover:hover{text-underline-offset:.375em !important}.link-underline-default{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-default-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-primary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-secondary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-success{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-info{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-warning{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-danger{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-light{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-dark{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important}.link-underline{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-underline-opacity-0{--bs-link-underline-opacity: 0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity: 0}.link-underline-opacity-10{--bs-link-underline-opacity: 0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity: 0.1}.link-underline-opacity-25{--bs-link-underline-opacity: 0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity: 0.25}.link-underline-opacity-50{--bs-link-underline-opacity: 0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity: 0.5}.link-underline-opacity-75{--bs-link-underline-opacity: 0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity: 0.75}.link-underline-opacity-100{--bs-link-underline-opacity: 1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity: 1}.bg-default{--bs-bg-opacity: 1;background-color:rgba(var(--bs-default-rgb), var(--bs-bg-opacity)) !important}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-body-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-body-tertiary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle) !important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle) !important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle) !important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle) !important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle) !important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle) !important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle) !important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle) !important}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:var(--bs-border-radius) !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:var(--bs-border-radius-sm) !important}.rounded-2{border-radius:var(--bs-border-radius) !important}.rounded-3{border-radius:var(--bs-border-radius-lg) !important}.rounded-4{border-radius:var(--bs-border-radius-xl) !important}.rounded-5{border-radius:var(--bs-border-radius-xxl) !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:var(--bs-border-radius-pill) !important}.rounded-top{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm) !important;border-top-right-radius:var(--bs-border-radius-sm) !important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg) !important;border-top-right-radius:var(--bs-border-radius-lg) !important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl) !important;border-top-right-radius:var(--bs-border-radius-xl) !important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl) !important;border-top-right-radius:var(--bs-border-radius-xxl) !important}.rounded-top-circle{border-top-left-radius:50% !important;border-top-right-radius:50% !important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill) !important;border-top-right-radius:var(--bs-border-radius-pill) !important}.rounded-end{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm) !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg) !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl) !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important}.rounded-end-circle{border-top-right-radius:50% !important;border-bottom-right-radius:50% !important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill) !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm) !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg) !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl) !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important}.rounded-bottom-circle{border-bottom-right-radius:50% !important;border-bottom-left-radius:50% !important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill) !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm) !important;border-top-left-radius:var(--bs-border-radius-sm) !important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg) !important;border-top-left-radius:var(--bs-border-radius-lg) !important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl) !important;border-top-left-radius:var(--bs-border-radius-xl) !important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl) !important;border-top-left-radius:var(--bs-border-radius-xxl) !important}.rounded-start-circle{border-bottom-left-radius:50% !important;border-top-left-radius:50% !important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill) !important;border-top-left-radius:var(--bs-border-radius-pill) !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.z-n1{z-index:-1 !important}.z-0{z-index:0 !important}.z-1{z-index:1 !important}.z-2{z-index:2 !important}.z-3{z-index:3 !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.object-fit-sm-contain{object-fit:contain !important}.object-fit-sm-cover{object-fit:cover !important}.object-fit-sm-fill{object-fit:fill !important}.object-fit-sm-scale{object-fit:scale-down !important}.object-fit-sm-none{object-fit:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.row-gap-sm-0{row-gap:0 !important}.row-gap-sm-1{row-gap:.25rem !important}.row-gap-sm-2{row-gap:.5rem !important}.row-gap-sm-3{row-gap:1rem !important}.row-gap-sm-4{row-gap:1.5rem !important}.row-gap-sm-5{row-gap:3rem !important}.column-gap-sm-0{column-gap:0 !important}.column-gap-sm-1{column-gap:.25rem !important}.column-gap-sm-2{column-gap:.5rem !important}.column-gap-sm-3{column-gap:1rem !important}.column-gap-sm-4{column-gap:1.5rem !important}.column-gap-sm-5{column-gap:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.object-fit-md-contain{object-fit:contain !important}.object-fit-md-cover{object-fit:cover !important}.object-fit-md-fill{object-fit:fill !important}.object-fit-md-scale{object-fit:scale-down !important}.object-fit-md-none{object-fit:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.row-gap-md-0{row-gap:0 !important}.row-gap-md-1{row-gap:.25rem !important}.row-gap-md-2{row-gap:.5rem !important}.row-gap-md-3{row-gap:1rem !important}.row-gap-md-4{row-gap:1.5rem !important}.row-gap-md-5{row-gap:3rem !important}.column-gap-md-0{column-gap:0 !important}.column-gap-md-1{column-gap:.25rem !important}.column-gap-md-2{column-gap:.5rem !important}.column-gap-md-3{column-gap:1rem !important}.column-gap-md-4{column-gap:1.5rem !important}.column-gap-md-5{column-gap:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.object-fit-lg-contain{object-fit:contain !important}.object-fit-lg-cover{object-fit:cover !important}.object-fit-lg-fill{object-fit:fill !important}.object-fit-lg-scale{object-fit:scale-down !important}.object-fit-lg-none{object-fit:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.row-gap-lg-0{row-gap:0 !important}.row-gap-lg-1{row-gap:.25rem !important}.row-gap-lg-2{row-gap:.5rem !important}.row-gap-lg-3{row-gap:1rem !important}.row-gap-lg-4{row-gap:1.5rem !important}.row-gap-lg-5{row-gap:3rem !important}.column-gap-lg-0{column-gap:0 !important}.column-gap-lg-1{column-gap:.25rem !important}.column-gap-lg-2{column-gap:.5rem !important}.column-gap-lg-3{column-gap:1rem !important}.column-gap-lg-4{column-gap:1.5rem !important}.column-gap-lg-5{column-gap:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.object-fit-xl-contain{object-fit:contain !important}.object-fit-xl-cover{object-fit:cover !important}.object-fit-xl-fill{object-fit:fill !important}.object-fit-xl-scale{object-fit:scale-down !important}.object-fit-xl-none{object-fit:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.row-gap-xl-0{row-gap:0 !important}.row-gap-xl-1{row-gap:.25rem !important}.row-gap-xl-2{row-gap:.5rem !important}.row-gap-xl-3{row-gap:1rem !important}.row-gap-xl-4{row-gap:1.5rem !important}.row-gap-xl-5{row-gap:3rem !important}.column-gap-xl-0{column-gap:0 !important}.column-gap-xl-1{column-gap:.25rem !important}.column-gap-xl-2{column-gap:.5rem !important}.column-gap-xl-3{column-gap:1rem !important}.column-gap-xl-4{column-gap:1.5rem !important}.column-gap-xl-5{column-gap:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.object-fit-xxl-contain{object-fit:contain !important}.object-fit-xxl-cover{object-fit:cover !important}.object-fit-xxl-fill{object-fit:fill !important}.object-fit-xxl-scale{object-fit:scale-down !important}.object-fit-xxl-none{object-fit:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.row-gap-xxl-0{row-gap:0 !important}.row-gap-xxl-1{row-gap:.25rem !important}.row-gap-xxl-2{row-gap:.5rem !important}.row-gap-xxl-3{row-gap:1rem !important}.row-gap-xxl-4{row-gap:1.5rem !important}.row-gap-xxl-5{row-gap:3rem !important}.column-gap-xxl-0{column-gap:0 !important}.column-gap-xxl-1{column-gap:.25rem !important}.column-gap-xxl-2{column-gap:.5rem !important}.column-gap-xxl-3{column-gap:1rem !important}.column-gap-xxl-4{column-gap:1.5rem !important}.column-gap-xxl-5{column-gap:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}.bg-default{color:#000}.bg-primary{color:#fff}.bg-secondary{color:#fff}.bg-success{color:#fff}.bg-info{color:#000}.bg-warning{color:#000}.bg-danger{color:#fff}.bg-light{color:#000}.bg-dark{color:#fff}@media(min-width: 1200px){.fs-1{font-size:2rem !important}.fs-2{font-size:1.65rem !important}.fs-3{font-size:1.45rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.bg-blue{--bslib-color-bg: #0d6efd;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #0d6efd;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #6f42c1;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #6f42c1;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #d63384;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #d63384;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #dc3545;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #fd7e14;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #fd7e14;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #ffc107;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #ffc107;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #198754;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #0dcaf0;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #dee2e6}.bg-default{--bslib-color-bg: #dee2e6;--bslib-color-fg: #000}.text-primary{--bslib-color-fg: #1E4287}.bg-primary{--bslib-color-bg: #1E4287;--bslib-color-fg: #ffffff}.text-secondary{--bslib-color-fg: #6c757d}.bg-secondary{--bslib-color-bg: #6c757d;--bslib-color-fg: #ffffff}.text-success{--bslib-color-fg: #198754}.bg-success{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff}.text-info{--bslib-color-fg: #0dcaf0}.bg-info{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000}.text-warning{--bslib-color-fg: #ffc107}.bg-warning{--bslib-color-bg: #ffc107;--bslib-color-fg: #000}.text-danger{--bslib-color-fg: #dc3545}.bg-danger{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff}.text-light{--bslib-color-fg: #f8f9fa}.bg-light{--bslib-color-bg: #f8f9fa;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #212529}.bg-dark{--bslib-color-bg: #212529;--bslib-color-fg: #ffffff}.bg-gradient-blue-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #3148f9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3148f9;color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #345ce5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #345ce5;color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #5d56cd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d56cd;color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #6057b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6057b3;color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #6d74a0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6d74a0;color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6e8f9b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6e8f9b;color:#000}.bg-gradient-blue-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #1278b9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1278b9;color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #000;--bslib-color-bg: #1592d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1592d4;color:#000}.bg-gradient-blue-cyan{--bslib-color-fg: #000;--bslib-color-bg: #0d93f8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #0d93f8;color:#000}.bg-gradient-indigo-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4236f6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4236f6;color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #6a24de;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #6a24de;color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #931ec6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #931ec6;color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #951fad;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #951fad;color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a23c99;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a23c99;color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #ffffff;--bslib-color-bg: #a35794;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a35794;color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4740b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4740b3;color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4a5ace;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4a5ace;color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #ffffff;--bslib-color-bg: #425af1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #425af1;color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4854d9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4854d9;color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #6b2ed5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #6b2ed5;color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #983ca9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #983ca9;color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #9b3d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #9b3d8f;color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a85a7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a85a7c;color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #000;--bslib-color-bg: #a97577;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a97577;color:#000}.bg-gradient-purple-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4d5e95;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4d5e95;color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4f78b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4f78b0;color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #000;--bslib-color-bg: #4878d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #4878d4;color:#000}.bg-gradient-pink-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #864bb4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #864bb4;color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #a925b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #a925b0;color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad399c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #ad399c;color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #d8346b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #d8346b;color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #000;--bslib-color-bg: #e65157;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e65157;color:#000}.bg-gradient-pink-yellow{--bslib-color-fg: #000;--bslib-color-bg: #e66c52;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #e66c52;color:#000}.bg-gradient-pink-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8a5571;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8a5571;color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #000;--bslib-color-bg: #8d6f8c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #8d6f8c;color:#000}.bg-gradient-pink-cyan{--bslib-color-fg: #000;--bslib-color-bg: #866faf;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #866faf;color:#000}.bg-gradient-red-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #894c8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #894c8f;color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad268a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #ad268a;color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #b03a77;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #b03a77;color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #da345e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #da345e;color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #000;--bslib-color-bg: #e95231;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e95231;color:#000}.bg-gradient-red-yellow{--bslib-color-fg: #000;--bslib-color-bg: #ea6d2c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #ea6d2c;color:#000}.bg-gradient-red-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8e564b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8e564b;color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #000;--bslib-color-bg: #917066;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #917066;color:#000}.bg-gradient-red-cyan{--bslib-color-fg: #000;--bslib-color-bg: #897189;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #897189;color:#000}.bg-gradient-orange-blue{--bslib-color-fg: #000;--bslib-color-bg: #9d7871;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9d7871;color:#000}.bg-gradient-orange-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c1526d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c1526d;color:#000}.bg-gradient-orange-purple{--bslib-color-fg: #000;--bslib-color-bg: #c46659;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c46659;color:#000}.bg-gradient-orange-pink{--bslib-color-fg: #000;--bslib-color-bg: #ed6041;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ed6041;color:#000}.bg-gradient-orange-red{--bslib-color-fg: #000;--bslib-color-bg: #f06128;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f06128;color:#000}.bg-gradient-orange-yellow{--bslib-color-fg: #000;--bslib-color-bg: #fe990f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #fe990f;color:#000}.bg-gradient-orange-green{--bslib-color-fg: #000;--bslib-color-bg: #a2822e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a2822e;color:#000}.bg-gradient-orange-teal{--bslib-color-fg: #000;--bslib-color-bg: #a59c48;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a59c48;color:#000}.bg-gradient-orange-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9d9c6c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9d9c6c;color:#000}.bg-gradient-yellow-blue{--bslib-color-fg: #000;--bslib-color-bg: #9ea069;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9ea069;color:#000}.bg-gradient-yellow-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c27a65;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c27a65;color:#000}.bg-gradient-yellow-purple{--bslib-color-fg: #000;--bslib-color-bg: #c58e51;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c58e51;color:#000}.bg-gradient-yellow-pink{--bslib-color-fg: #000;--bslib-color-bg: #ef8839;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ef8839;color:#000}.bg-gradient-yellow-red{--bslib-color-fg: #000;--bslib-color-bg: #f18920;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f18920;color:#000}.bg-gradient-yellow-orange{--bslib-color-fg: #000;--bslib-color-bg: #fea60c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #fea60c;color:#000}.bg-gradient-yellow-green{--bslib-color-fg: #000;--bslib-color-bg: #a3aa26;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a3aa26;color:#000}.bg-gradient-yellow-teal{--bslib-color-fg: #000;--bslib-color-bg: #a6c441;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6c441;color:#000}.bg-gradient-yellow-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9ec564;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9ec564;color:#000}.bg-gradient-green-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #147d98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #147d98;color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #385793;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #385793;color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #3b6b80;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3b6b80;color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #656567;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #656567;color:#fff}.bg-gradient-green-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #67664e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #67664e;color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #000;--bslib-color-bg: #74833a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #74833a;color:#000}.bg-gradient-green-yellow{--bslib-color-fg: #000;--bslib-color-bg: #759e35;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #759e35;color:#000}.bg-gradient-green-teal{--bslib-color-fg: #000;--bslib-color-bg: #1ca16f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1ca16f;color:#000}.bg-gradient-green-cyan{--bslib-color-fg: #000;--bslib-color-bg: #14a292;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #14a292;color:#000}.bg-gradient-teal-blue{--bslib-color-fg: #000;--bslib-color-bg: #18a5c0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #18a5c0;color:#000}.bg-gradient-teal-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3c7fbb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3c7fbb;color:#000}.bg-gradient-teal-purple{--bslib-color-fg: #000;--bslib-color-bg: #4093a8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #4093a8;color:#000}.bg-gradient-teal-pink{--bslib-color-fg: #000;--bslib-color-bg: #698d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #698d8f;color:#000}.bg-gradient-teal-red{--bslib-color-fg: #000;--bslib-color-bg: #6b8e76;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6b8e76;color:#000}.bg-gradient-teal-orange{--bslib-color-fg: #000;--bslib-color-bg: #78ab63;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #78ab63;color:#000}.bg-gradient-teal-yellow{--bslib-color-fg: #000;--bslib-color-bg: #79c65d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #79c65d;color:#000}.bg-gradient-teal-green{--bslib-color-fg: #000;--bslib-color-bg: #1daf7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1daf7c;color:#000}.bg-gradient-teal-cyan{--bslib-color-fg: #000;--bslib-color-bg: #18c9bb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #18c9bb;color:#000}.bg-gradient-cyan-blue{--bslib-color-fg: #000;--bslib-color-bg: #0da5f5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #0da5f5;color:#000}.bg-gradient-cyan-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3180f1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3180f1;color:#000}.bg-gradient-cyan-purple{--bslib-color-fg: #000;--bslib-color-bg: #3494dd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3494dd;color:#000}.bg-gradient-cyan-pink{--bslib-color-fg: #000;--bslib-color-bg: #5d8ec5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d8ec5;color:#000}.bg-gradient-cyan-red{--bslib-color-fg: #000;--bslib-color-bg: #608eac;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #608eac;color:#000}.bg-gradient-cyan-orange{--bslib-color-fg: #000;--bslib-color-bg: #6dac98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6dac98;color:#000}.bg-gradient-cyan-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6ec693;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6ec693;color:#000}.bg-gradient-cyan-green{--bslib-color-fg: #000;--bslib-color-bg: #12afb2;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #12afb2;color:#000}.bg-gradient-cyan-teal{--bslib-color-fg: #000;--bslib-color-bg: #15cacc;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #15cacc;color:#000}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}.bg-blue{--bslib-color-bg: #0d6efd;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #0d6efd;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #6f42c1;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #6f42c1;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #d63384;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #d63384;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #dc3545;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #fd7e14;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #fd7e14;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #ffc107;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #ffc107;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #198754;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #0dcaf0;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #dee2e6}.bg-default{--bslib-color-bg: #dee2e6;--bslib-color-fg: #000}.text-primary{--bslib-color-fg: #1E4287}.bg-primary{--bslib-color-bg: #1E4287;--bslib-color-fg: #ffffff}.text-secondary{--bslib-color-fg: #6c757d}.bg-secondary{--bslib-color-bg: #6c757d;--bslib-color-fg: #ffffff}.text-success{--bslib-color-fg: #198754}.bg-success{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff}.text-info{--bslib-color-fg: #0dcaf0}.bg-info{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000}.text-warning{--bslib-color-fg: #ffc107}.bg-warning{--bslib-color-bg: #ffc107;--bslib-color-fg: #000}.text-danger{--bslib-color-fg: #dc3545}.bg-danger{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff}.text-light{--bslib-color-fg: #f8f9fa}.bg-light{--bslib-color-bg: #f8f9fa;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #212529}.bg-dark{--bslib-color-bg: #212529;--bslib-color-fg: #ffffff}.bg-gradient-blue-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #3148f9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3148f9;color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #345ce5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #345ce5;color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #5d56cd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d56cd;color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #6057b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6057b3;color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #6d74a0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6d74a0;color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6e8f9b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6e8f9b;color:#000}.bg-gradient-blue-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #1278b9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1278b9;color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #000;--bslib-color-bg: #1592d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1592d4;color:#000}.bg-gradient-blue-cyan{--bslib-color-fg: #000;--bslib-color-bg: #0d93f8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #0d93f8;color:#000}.bg-gradient-indigo-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4236f6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4236f6;color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #6a24de;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #6a24de;color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #931ec6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #931ec6;color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #951fad;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #951fad;color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a23c99;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a23c99;color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #ffffff;--bslib-color-bg: #a35794;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a35794;color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4740b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4740b3;color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4a5ace;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4a5ace;color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #ffffff;--bslib-color-bg: #425af1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #425af1;color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4854d9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4854d9;color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #6b2ed5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #6b2ed5;color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #983ca9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #983ca9;color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #9b3d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #9b3d8f;color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a85a7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a85a7c;color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #000;--bslib-color-bg: #a97577;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a97577;color:#000}.bg-gradient-purple-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4d5e95;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4d5e95;color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4f78b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4f78b0;color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #000;--bslib-color-bg: #4878d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #4878d4;color:#000}.bg-gradient-pink-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #864bb4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #864bb4;color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #a925b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #a925b0;color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad399c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #ad399c;color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #d8346b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #d8346b;color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #000;--bslib-color-bg: #e65157;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e65157;color:#000}.bg-gradient-pink-yellow{--bslib-color-fg: #000;--bslib-color-bg: #e66c52;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #e66c52;color:#000}.bg-gradient-pink-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8a5571;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8a5571;color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #000;--bslib-color-bg: #8d6f8c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #8d6f8c;color:#000}.bg-gradient-pink-cyan{--bslib-color-fg: #000;--bslib-color-bg: #866faf;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #866faf;color:#000}.bg-gradient-red-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #894c8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #894c8f;color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad268a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #ad268a;color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #b03a77;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #b03a77;color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #da345e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #da345e;color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #000;--bslib-color-bg: #e95231;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e95231;color:#000}.bg-gradient-red-yellow{--bslib-color-fg: #000;--bslib-color-bg: #ea6d2c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #ea6d2c;color:#000}.bg-gradient-red-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8e564b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8e564b;color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #000;--bslib-color-bg: #917066;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #917066;color:#000}.bg-gradient-red-cyan{--bslib-color-fg: #000;--bslib-color-bg: #897189;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #897189;color:#000}.bg-gradient-orange-blue{--bslib-color-fg: #000;--bslib-color-bg: #9d7871;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9d7871;color:#000}.bg-gradient-orange-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c1526d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c1526d;color:#000}.bg-gradient-orange-purple{--bslib-color-fg: #000;--bslib-color-bg: #c46659;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c46659;color:#000}.bg-gradient-orange-pink{--bslib-color-fg: #000;--bslib-color-bg: #ed6041;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ed6041;color:#000}.bg-gradient-orange-red{--bslib-color-fg: #000;--bslib-color-bg: #f06128;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f06128;color:#000}.bg-gradient-orange-yellow{--bslib-color-fg: #000;--bslib-color-bg: #fe990f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #fe990f;color:#000}.bg-gradient-orange-green{--bslib-color-fg: #000;--bslib-color-bg: #a2822e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a2822e;color:#000}.bg-gradient-orange-teal{--bslib-color-fg: #000;--bslib-color-bg: #a59c48;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a59c48;color:#000}.bg-gradient-orange-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9d9c6c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9d9c6c;color:#000}.bg-gradient-yellow-blue{--bslib-color-fg: #000;--bslib-color-bg: #9ea069;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9ea069;color:#000}.bg-gradient-yellow-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c27a65;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c27a65;color:#000}.bg-gradient-yellow-purple{--bslib-color-fg: #000;--bslib-color-bg: #c58e51;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c58e51;color:#000}.bg-gradient-yellow-pink{--bslib-color-fg: #000;--bslib-color-bg: #ef8839;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ef8839;color:#000}.bg-gradient-yellow-red{--bslib-color-fg: #000;--bslib-color-bg: #f18920;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f18920;color:#000}.bg-gradient-yellow-orange{--bslib-color-fg: #000;--bslib-color-bg: #fea60c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #fea60c;color:#000}.bg-gradient-yellow-green{--bslib-color-fg: #000;--bslib-color-bg: #a3aa26;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a3aa26;color:#000}.bg-gradient-yellow-teal{--bslib-color-fg: #000;--bslib-color-bg: #a6c441;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6c441;color:#000}.bg-gradient-yellow-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9ec564;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9ec564;color:#000}.bg-gradient-green-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #147d98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #147d98;color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #385793;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #385793;color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #3b6b80;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3b6b80;color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #656567;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #656567;color:#fff}.bg-gradient-green-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #67664e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #67664e;color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #000;--bslib-color-bg: #74833a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #74833a;color:#000}.bg-gradient-green-yellow{--bslib-color-fg: #000;--bslib-color-bg: #759e35;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #759e35;color:#000}.bg-gradient-green-teal{--bslib-color-fg: #000;--bslib-color-bg: #1ca16f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1ca16f;color:#000}.bg-gradient-green-cyan{--bslib-color-fg: #000;--bslib-color-bg: #14a292;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #14a292;color:#000}.bg-gradient-teal-blue{--bslib-color-fg: #000;--bslib-color-bg: #18a5c0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #18a5c0;color:#000}.bg-gradient-teal-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3c7fbb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3c7fbb;color:#000}.bg-gradient-teal-purple{--bslib-color-fg: #000;--bslib-color-bg: #4093a8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #4093a8;color:#000}.bg-gradient-teal-pink{--bslib-color-fg: #000;--bslib-color-bg: #698d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #698d8f;color:#000}.bg-gradient-teal-red{--bslib-color-fg: #000;--bslib-color-bg: #6b8e76;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6b8e76;color:#000}.bg-gradient-teal-orange{--bslib-color-fg: #000;--bslib-color-bg: #78ab63;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #78ab63;color:#000}.bg-gradient-teal-yellow{--bslib-color-fg: #000;--bslib-color-bg: #79c65d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #79c65d;color:#000}.bg-gradient-teal-green{--bslib-color-fg: #000;--bslib-color-bg: #1daf7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1daf7c;color:#000}.bg-gradient-teal-cyan{--bslib-color-fg: #000;--bslib-color-bg: #18c9bb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #18c9bb;color:#000}.bg-gradient-cyan-blue{--bslib-color-fg: #000;--bslib-color-bg: #0da5f5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #0da5f5;color:#000}.bg-gradient-cyan-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3180f1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3180f1;color:#000}.bg-gradient-cyan-purple{--bslib-color-fg: #000;--bslib-color-bg: #3494dd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3494dd;color:#000}.bg-gradient-cyan-pink{--bslib-color-fg: #000;--bslib-color-bg: #5d8ec5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d8ec5;color:#000}.bg-gradient-cyan-red{--bslib-color-fg: #000;--bslib-color-bg: #608eac;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #608eac;color:#000}.bg-gradient-cyan-orange{--bslib-color-fg: #000;--bslib-color-bg: #6dac98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6dac98;color:#000}.bg-gradient-cyan-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6ec693;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6ec693;color:#000}.bg-gradient-cyan-green{--bslib-color-fg: #000;--bslib-color-bg: #12afb2;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #12afb2;color:#000}.bg-gradient-cyan-teal{--bslib-color-fg: #000;--bslib-color-bg: #15cacc;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #15cacc;color:#000}:root{--bslib-value-box-shadow: none;--bslib-value-box-border-width-auto-yes: var(--bslib-value-box-border-width-baseline);--bslib-value-box-border-width-auto-no: 0;--bslib-value-box-border-width-baseline: 1px}.bslib-value-box{border-width:var(--bslib-value-box-border-width-auto-no, var(--bslib-value-box-border-width-baseline));container-name:bslib-value-box;container-type:inline-size}.bslib-value-box.card{box-shadow:var(--bslib-value-box-shadow)}.bslib-value-box.border-auto{border-width:var(--bslib-value-box-border-width-auto-yes, var(--bslib-value-box-border-width-baseline))}.bslib-value-box.default{--bslib-value-box-bg-default: var(--bs-card-bg, #050725);--bslib-value-box-border-color-default: var(--bs-card-border-color, rgba(0, 0, 0, 0.175));color:var(--bslib-value-box-color);background-color:var(--bslib-value-box-bg, var(--bslib-value-box-bg-default));border-color:var(--bslib-value-box-border-color, var(--bslib-value-box-border-color-default))}.bslib-value-box .value-box-grid{display:grid;grid-template-areas:"left right";align-items:center;overflow:hidden}.bslib-value-box .value-box-showcase{height:100%;max-height:var(---bslib-value-box-showcase-max-h, 100%)}.bslib-value-box .value-box-showcase,.bslib-value-box .value-box-showcase>.html-fill-item{width:100%}.bslib-value-box[data-full-screen=true] .value-box-showcase{max-height:var(---bslib-value-box-showcase-max-h-fs, 100%)}@media screen and (min-width: 575.98px){@container bslib-value-box (max-width: 300px){.bslib-value-box:not(.showcase-bottom) .value-box-grid{grid-template-columns:1fr !important;grid-template-rows:auto auto;grid-template-areas:"top" "bottom"}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-showcase{grid-area:top !important}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-area{grid-area:bottom !important;justify-content:end}}}.bslib-value-box .value-box-area{justify-content:center;padding:1.5rem 1rem;font-size:.9rem;font-weight:500}.bslib-value-box .value-box-area *{margin-bottom:0;margin-top:0}.bslib-value-box .value-box-title{font-size:1rem;margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2}.bslib-value-box .value-box-title:empty::after{content:" "}.bslib-value-box .value-box-value{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2}@media(min-width: 1200px){.bslib-value-box .value-box-value{font-size:1.65rem}}.bslib-value-box .value-box-value:empty::after{content:" "}.bslib-value-box .value-box-showcase{align-items:center;justify-content:center;margin-top:auto;margin-bottom:auto;padding:1rem}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{opacity:.85;min-width:50px;max-width:125%}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{font-size:4rem}.bslib-value-box.showcase-top-right .value-box-grid{grid-template-columns:1fr var(---bslib-value-box-showcase-w, 50%)}.bslib-value-box.showcase-top-right .value-box-grid .value-box-showcase{grid-area:right;margin-left:auto;align-self:start;align-items:end;padding-left:0;padding-bottom:0}.bslib-value-box.showcase-top-right .value-box-grid .value-box-area{grid-area:left;align-self:end}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid{grid-template-columns:auto var(---bslib-value-box-showcase-w-fs, 1fr)}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid>div{align-self:center}.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-showcase{margin-top:0}@container bslib-value-box (max-width: 300px){.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-grid .value-box-showcase{padding-left:1rem}}.bslib-value-box.showcase-left-center .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w, 30%) auto}.bslib-value-box.showcase-left-center[data-full-screen=true] .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w-fs, 1fr) auto}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-showcase{grid-area:left}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-area{grid-area:right}.bslib-value-box.showcase-bottom .value-box-grid{grid-template-columns:1fr;grid-template-rows:1fr var(---bslib-value-box-showcase-h, auto);grid-template-areas:"top" "bottom";overflow:hidden}.bslib-value-box.showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.bslib-value-box.showcase-bottom .value-box-grid .value-box-area{grid-area:top}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid{grid-template-rows:1fr var(---bslib-value-box-showcase-h-fs, 2fr)}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid .value-box-showcase{padding:1rem}[data-bs-theme=dark] .bslib-value-box{--bslib-value-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 50%)}@media(min-width: 576px){.nav:not(.nav-hidden){display:flex !important;display:-webkit-flex !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column){float:none !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.bslib-nav-spacer{margin-left:auto !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.form-inline{margin-top:auto;margin-bottom:auto}.nav:not(.nav-hidden).nav-stacked{flex-direction:column;-webkit-flex-direction:column;height:100%}.nav:not(.nav-hidden).nav-stacked>.bslib-nav-spacer{margin-top:auto !important}}.accordion .accordion-header{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2;color:var(--bs-heading-color);margin-bottom:0}@media(min-width: 1200px){.accordion .accordion-header{font-size:1.65rem}}.accordion .accordion-icon:not(:empty){margin-right:.75rem;display:flex}.accordion .accordion-button:not(.collapsed){box-shadow:none}.accordion .accordion-button:not(.collapsed):focus{box-shadow:var(--bs-accordion-btn-focus-box-shadow)}html{height:100%}.bslib-page-fill{width:100%;height:100%;margin:0;padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}@media(max-width: 575.98px){.bslib-page-fill{height:var(--bslib-page-fill-mobile-height, auto)}}.navbar+.container-fluid:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-sm:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-md:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-lg:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xl:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xxl:has(>.tab-content>.tab-pane.active.html-fill-container){padding-left:0;padding-right:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container{padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child){padding:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]){border-left:none;border-right:none;border-bottom:none}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]){border-radius:0}.navbar+div>.bslib-sidebar-layout{border-top:var(--bslib-sidebar-border)}.bslib-sidebar-layout{--bslib-sidebar-transition-duration: 500ms;--bslib-sidebar-transition-easing-x: cubic-bezier(0.8, 0.78, 0.22, 1.07);--bslib-sidebar-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-border-radius: var(--bs-border-radius);--bslib-sidebar-vert-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.05);--bslib-sidebar-fg: var(--bs-emphasis-color, black);--bslib-sidebar-main-fg: var(--bs-card-color, var(--bs-body-color));--bslib-sidebar-main-bg: var(--bs-card-bg, var(--bs-body-bg));--bslib-sidebar-toggle-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.1);--bslib-sidebar-padding: calc(var(--bslib-spacer) * 1.5);--bslib-sidebar-icon-size: var(--bslib-spacer, 1rem);--bslib-sidebar-icon-button-size: calc(var(--bslib-sidebar-icon-size, 1rem) * 2);--bslib-sidebar-padding-icon: calc(var(--bslib-sidebar-icon-button-size, 2rem) * 1.5);--bslib-collapse-toggle-border-radius: var(--bs-border-radius, 0.25rem);--bslib-collapse-toggle-transform: 0deg;--bslib-sidebar-toggle-transition-easing: cubic-bezier(1, 0, 0, 1);--bslib-collapse-toggle-right-transform: 180deg;--bslib-sidebar-column-main: minmax(0, 1fr);display:grid !important;grid-template-columns:min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px)) var(--bslib-sidebar-column-main);position:relative;transition:grid-template-columns ease-in-out var(--bslib-sidebar-transition-duration);border:var(--bslib-sidebar-border);border-radius:var(--bslib-sidebar-border-radius)}@media(prefers-reduced-motion: reduce){.bslib-sidebar-layout{transition:none}}.bslib-sidebar-layout[data-bslib-sidebar-border=false]{border:none}.bslib-sidebar-layout[data-bslib-sidebar-border-radius=false]{border-radius:initial}.bslib-sidebar-layout>.main,.bslib-sidebar-layout>.sidebar{grid-row:1/2;border-radius:inherit;overflow:auto}.bslib-sidebar-layout>.main{grid-column:2/3;border-top-left-radius:0;border-bottom-left-radius:0;padding:var(--bslib-sidebar-padding);transition:padding var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration);color:var(--bslib-sidebar-main-fg);background-color:var(--bslib-sidebar-main-bg)}.bslib-sidebar-layout>.sidebar{grid-column:1/2;width:100%;height:100%;border-right:var(--bslib-sidebar-vert-border);border-top-right-radius:0;border-bottom-right-radius:0;color:var(--bslib-sidebar-fg);background-color:var(--bslib-sidebar-bg);backdrop-filter:blur(5px)}.bslib-sidebar-layout>.sidebar>.sidebar-content{display:flex;flex-direction:column;gap:var(--bslib-spacer, 1rem);padding:var(--bslib-sidebar-padding);padding-top:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout>.sidebar>.sidebar-content>:last-child:not(.sidebar-title){margin-bottom:0}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion{margin-left:calc(-1*var(--bslib-sidebar-padding));margin-right:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:last-child{margin-bottom:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child){margin-bottom:1rem}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion .accordion-body{display:flex;flex-direction:column}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:first-child) .accordion-item:first-child{border-top:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child) .accordion-item:last-child{border-bottom:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content.has-accordion>.sidebar-title{border-bottom:none;padding-bottom:0}.bslib-sidebar-layout>.sidebar .shiny-input-container{width:100%}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar>.sidebar-content{padding-top:var(--bslib-sidebar-padding)}.bslib-sidebar-layout>.collapse-toggle{grid-row:1/2;grid-column:1/2;display:inline-flex;align-items:center;position:absolute;right:calc(var(--bslib-sidebar-icon-size));top:calc(var(--bslib-sidebar-icon-size, 1rem)/2);border:none;border-radius:var(--bslib-collapse-toggle-border-radius);height:var(--bslib-sidebar-icon-button-size, 2rem);width:var(--bslib-sidebar-icon-button-size, 2rem);display:flex;align-items:center;justify-content:center;padding:0;color:var(--bslib-sidebar-fg);background-color:unset;transition:color var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),top var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),right var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),left var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover{background-color:var(--bslib-sidebar-toggle-bg)}.bslib-sidebar-layout>.collapse-toggle>.collapse-icon{opacity:.8;width:var(--bslib-sidebar-icon-size);height:var(--bslib-sidebar-icon-size);transform:rotateY(var(--bslib-collapse-toggle-transform));transition:transform var(--bslib-sidebar-toggle-transition-easing) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover>.collapse-icon{opacity:1}.bslib-sidebar-layout .sidebar-title{font-size:1.25rem;line-height:1.25;margin-top:0;margin-bottom:1rem;padding-bottom:1rem;border-bottom:var(--bslib-sidebar-border)}.bslib-sidebar-layout.sidebar-right{grid-template-columns:var(--bslib-sidebar-column-main) min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px))}.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/2;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit}.bslib-sidebar-layout.sidebar-right>.sidebar{grid-column:2/3;border-right:none;border-left:var(--bslib-sidebar-vert-border);border-top-left-radius:0;border-bottom-left-radius:0}.bslib-sidebar-layout.sidebar-right>.collapse-toggle{grid-column:2/3;left:var(--bslib-sidebar-icon-size);right:unset;border:var(--bslib-collapse-toggle-border)}.bslib-sidebar-layout.sidebar-right>.collapse-toggle>.collapse-icon{transform:rotateY(var(--bslib-collapse-toggle-right-transform))}.bslib-sidebar-layout.sidebar-collapsed{--bslib-collapse-toggle-transform: 180deg;--bslib-collapse-toggle-right-transform: 0deg;--bslib-sidebar-vert-border: none;grid-template-columns:0 minmax(0, 1fr)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right{grid-template-columns:minmax(0, 1fr) 0}.bslib-sidebar-layout.sidebar-collapsed:not(.transitioning)>.sidebar>*{display:none}.bslib-sidebar-layout.sidebar-collapsed>.main{border-radius:inherit}.bslib-sidebar-layout.sidebar-collapsed:not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed>.collapse-toggle{color:var(--bslib-sidebar-main-fg);top:calc(var(--bslib-sidebar-overlap-counter, 0)*(var(--bslib-sidebar-icon-size) + var(--bslib-sidebar-padding)) + var(--bslib-sidebar-icon-size, 1rem)/2);right:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px))}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.collapse-toggle{left:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px));right:unset}@media(min-width: 576px){.bslib-sidebar-layout.transitioning>.sidebar>.sidebar-content{display:none}}@media(max-width: 575.98px){.bslib-sidebar-layout[data-bslib-sidebar-open=desktop]{--bslib-sidebar-js-init-collapsed: true}.bslib-sidebar-layout>.sidebar,.bslib-sidebar-layout.sidebar-right>.sidebar{border:none}.bslib-sidebar-layout>.main,.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/3}.bslib-sidebar-layout[data-bslib-sidebar-open=always]{display:block !important}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar{max-height:var(--bslib-sidebar-max-height-mobile);overflow-y:auto;border-top:var(--bslib-sidebar-vert-border)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]){grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.sidebar{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.collapse-toggle{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed.sidebar-right{grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always])>.main{opacity:0;transition:opacity var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed>.main{opacity:1}}.bslib-card{overflow:auto}.bslib-card .card-body+.card-body{padding-top:0}.bslib-card .card-body{overflow:auto}.bslib-card .card-body p{margin-top:0}.bslib-card .card-body p:last-child{margin-bottom:0}.bslib-card .card-body{max-height:var(--bslib-card-body-max-height, none)}.bslib-card[data-full-screen=true]>.card-body{max-height:var(--bslib-card-body-max-height-full-screen, none)}.bslib-card .card-header .form-group{margin-bottom:0}.bslib-card .card-header .selectize-control{margin-bottom:0}.bslib-card .card-header .selectize-control .item{margin-right:1.15rem}.bslib-card .card-footer{margin-top:auto}.bslib-card .bslib-navs-card-title{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.bslib-card .bslib-navs-card-title .nav{margin-left:auto}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border=true]){border:none}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border-radius=true]){border-top-left-radius:0;border-top-right-radius:0}[data-full-screen=true]{position:fixed;inset:3.5rem 1rem 1rem;height:auto !important;max-height:none !important;width:auto !important;z-index:1070}.bslib-full-screen-enter{display:none;position:absolute;bottom:var(--bslib-full-screen-enter-bottom, 0.2rem);right:var(--bslib-full-screen-enter-right, 0);top:var(--bslib-full-screen-enter-top);left:var(--bslib-full-screen-enter-left);color:var(--bslib-color-fg, var(--bs-card-color));background-color:var(--bslib-color-bg, var(--bs-card-bg, var(--bs-body-bg)));border:var(--bs-card-border-width) solid var(--bslib-color-fg, var(--bs-card-border-color));box-shadow:0 2px 4px rgba(0,0,0,.15);margin:.2rem .4rem;padding:.55rem !important;font-size:.8rem;cursor:pointer;opacity:.7;z-index:1070}.bslib-full-screen-enter:hover{opacity:1}.card[data-full-screen=false]:hover>*>.bslib-full-screen-enter{display:block}.bslib-has-full-screen .card:hover>*>.bslib-full-screen-enter{display:none}@media(max-width: 575.98px){.bslib-full-screen-enter{display:none !important}}.bslib-full-screen-exit{position:relative;top:1.35rem;font-size:.9rem;cursor:pointer;text-decoration:none;display:flex;float:right;margin-right:2.15rem;align-items:center;color:rgba(var(--bs-body-bg-rgb), 0.8)}.bslib-full-screen-exit:hover{color:rgba(var(--bs-body-bg-rgb), 1)}.bslib-full-screen-exit svg{margin-left:.5rem;font-size:1.5rem}#bslib-full-screen-overlay{position:fixed;inset:0;background-color:rgba(var(--bs-body-color-rgb), 0.6);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);z-index:1069;animation:bslib-full-screen-overlay-enter 400ms cubic-bezier(0.6, 0.02, 0.65, 1) forwards}@keyframes bslib-full-screen-overlay-enter{0%{opacity:0}100%{opacity:1}}:root{--bslib-page-sidebar-title-bg: #030316;--bslib-page-sidebar-title-color: #ffffff}.bslib-page-title{background-color:var(--bslib-page-sidebar-title-bg);color:var(--bslib-page-sidebar-title-color);font-size:1.25rem;font-weight:300;padding:var(--bslib-spacer, 1rem);padding-left:1.5rem;margin-bottom:0;border-bottom:1px solid #dee2e6}.bslib-grid{display:grid !important;gap:var(--bslib-spacer, 1rem);height:var(--bslib-grid-height)}.bslib-grid.grid{grid-template-columns:repeat(var(--bs-columns, 12), minmax(0, 1fr));grid-template-rows:unset;grid-auto-rows:var(--bslib-grid--row-heights);--bslib-grid--row-heights--xs: unset;--bslib-grid--row-heights--sm: unset;--bslib-grid--row-heights--md: unset;--bslib-grid--row-heights--lg: unset;--bslib-grid--row-heights--xl: unset;--bslib-grid--row-heights--xxl: unset}.bslib-grid.grid.bslib-grid--row-heights--xs{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xs)}@media(min-width: 576px){.bslib-grid.grid.bslib-grid--row-heights--sm{--bslib-grid--row-heights: var(--bslib-grid--row-heights--sm)}}@media(min-width: 768px){.bslib-grid.grid.bslib-grid--row-heights--md{--bslib-grid--row-heights: var(--bslib-grid--row-heights--md)}}@media(min-width: 992px){.bslib-grid.grid.bslib-grid--row-heights--lg{--bslib-grid--row-heights: var(--bslib-grid--row-heights--lg)}}@media(min-width: 1200px){.bslib-grid.grid.bslib-grid--row-heights--xl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xl)}}@media(min-width: 1400px){.bslib-grid.grid.bslib-grid--row-heights--xxl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xxl)}}.bslib-grid>*>.shiny-input-container{width:100%}.bslib-grid-item{grid-column:auto/span 1}@media(max-width: 767.98px){.bslib-grid-item{grid-column:1/-1}}@media(max-width: 575.98px){.bslib-grid{grid-template-columns:1fr !important;height:var(--bslib-grid-height-mobile)}.bslib-grid.grid{height:unset !important;grid-auto-rows:var(--bslib-grid--row-heights--xs, auto)}}.html-fill-container{display:flex;flex-direction:column;min-height:0;min-width:0}.html-fill-container>.html-fill-item{flex:1 1 auto;min-height:0;min-width:0}.html-fill-container>:not(.html-fill-item){flex:0 0 auto}.quarto-container{min-height:calc(100vh - 132px)}body.hypothesis-enabled #quarto-header{margin-right:16px}footer.footer .nav-footer,#quarto-header>nav{padding-left:1em;padding-right:1em}footer.footer div.nav-footer p:first-child{margin-top:0}footer.footer div.nav-footer p:last-child{margin-bottom:0}#quarto-content>*{padding-top:14px}#quarto-content>#quarto-sidebar-glass{padding-top:0px}@media(max-width: 991.98px){#quarto-content>*{padding-top:0}#quarto-content .subtitle{padding-top:14px}#quarto-content section:first-of-type h2:first-of-type,#quarto-content section:first-of-type .h2:first-of-type{margin-top:1rem}}.headroom-target,header.headroom{will-change:transform;transition:position 200ms linear;transition:all 200ms linear}header.headroom--pinned{transform:translateY(0%)}header.headroom--unpinned{transform:translateY(-100%)}.navbar-container{width:100%}.navbar-brand{overflow:hidden;text-overflow:ellipsis}.navbar-brand-container{max-width:calc(100% - 115px);min-width:0;display:flex;align-items:center}@media(min-width: 992px){.navbar-brand-container{margin-right:1em}}.navbar-brand.navbar-brand-logo{margin-right:4px;display:inline-flex}.navbar-toggler{flex-basis:content;flex-shrink:0}.navbar .navbar-brand-container{order:2}.navbar .navbar-toggler{order:1}.navbar .navbar-container>.navbar-nav{order:20}.navbar .navbar-container>.navbar-brand-container{margin-left:0 !important;margin-right:0 !important}.navbar .navbar-collapse{order:20}.navbar #quarto-search{order:4;margin-left:auto}.navbar .navbar-toggler{margin-right:.5em}.navbar-collapse .quarto-navbar-tools{margin-left:.5em}.navbar-logo{max-height:24px;width:auto;padding-right:4px}nav .nav-item:not(.compact){padding-top:1px}nav .nav-link i,nav .dropdown-item i{padding-right:1px}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.6rem;padding-right:.6rem}nav .nav-item.compact .nav-link{padding-left:.5rem;padding-right:.5rem;font-size:1.1rem}.navbar .quarto-navbar-tools{order:3}.navbar .quarto-navbar-tools div.dropdown{display:inline-block}.navbar .quarto-navbar-tools .quarto-navigation-tool{color:#98989f}.navbar .quarto-navbar-tools .quarto-navigation-tool:hover{color:#75aadb}.navbar-nav .dropdown-menu{min-width:220px;font-size:.9rem}.navbar .navbar-nav .nav-link.dropdown-toggle::after{opacity:.75;vertical-align:.175em}.navbar ul.dropdown-menu{padding-top:0;padding-bottom:0}.navbar .dropdown-header{text-transform:uppercase;font-size:.8rem;padding:0 .5rem}.navbar .dropdown-item{padding:.4rem .5rem}.navbar .dropdown-item>i.bi{margin-left:.1rem;margin-right:.25em}.sidebar #quarto-search{margin-top:-1px}.sidebar #quarto-search svg.aa-SubmitIcon{width:16px;height:16px}.sidebar-navigation a{color:inherit}.sidebar-title{margin-top:.25rem;padding-bottom:.5rem;font-size:1.3rem;line-height:1.6rem;visibility:visible}.sidebar-title>a{font-size:inherit;text-decoration:none}.sidebar-title .sidebar-tools-main{margin-top:-6px}@media(max-width: 991.98px){#quarto-sidebar div.sidebar-header{padding-top:.2em}}.sidebar-header-stacked .sidebar-title{margin-top:.6rem}.sidebar-logo{max-width:90%;padding-bottom:.5rem}.sidebar-logo-link{text-decoration:none}.sidebar-navigation li a{text-decoration:none}.sidebar-navigation .quarto-navigation-tool{opacity:.7;font-size:.875rem}#quarto-sidebar>nav>.sidebar-tools-main{margin-left:14px}.sidebar-tools-main{display:inline-flex;margin-left:0px;order:2}.sidebar-tools-main:not(.tools-wide){vertical-align:middle}.sidebar-navigation .quarto-navigation-tool.dropdown-toggle::after{display:none}.sidebar.sidebar-navigation>*{padding-top:1em}.sidebar-item{margin-bottom:.2em;line-height:1rem;margin-top:.4rem}.sidebar-section{padding-left:.5em;padding-bottom:.2em}.sidebar-item .sidebar-item-container{display:flex;justify-content:space-between;cursor:pointer}.sidebar-item-toggle:hover{cursor:pointer}.sidebar-item .sidebar-item-toggle .bi{font-size:.7rem;text-align:center}.sidebar-item .sidebar-item-toggle .bi-chevron-right::before{transition:transform 200ms ease}.sidebar-item .sidebar-item-toggle[aria-expanded=false] .bi-chevron-right::before{transform:none}.sidebar-item .sidebar-item-toggle[aria-expanded=true] .bi-chevron-right::before{transform:rotate(90deg)}.sidebar-item-text{width:100%}.sidebar-navigation .sidebar-divider{margin-left:0;margin-right:0;margin-top:.5rem;margin-bottom:.5rem}@media(max-width: 991.98px){.quarto-secondary-nav{display:block}.quarto-secondary-nav button.quarto-search-button{padding-right:0em;padding-left:2em}.quarto-secondary-nav button.quarto-btn-toggle{margin-left:-0.75rem;margin-right:.15rem}.quarto-secondary-nav nav.quarto-title-breadcrumbs{display:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs{display:flex;align-items:center;padding-right:1em;margin-left:-0.25em}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{text-decoration:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs ol.breadcrumb{margin-bottom:0}}@media(min-width: 992px){.quarto-secondary-nav{display:none}}.quarto-title-breadcrumbs .breadcrumb{margin-bottom:.5em;font-size:.9rem}.quarto-title-breadcrumbs .breadcrumb li:last-of-type a{color:#6c757d}.quarto-secondary-nav .quarto-btn-toggle{color:#98989f}.quarto-secondary-nav[aria-expanded=false] .quarto-btn-toggle .bi-chevron-right::before{transform:none}.quarto-secondary-nav[aria-expanded=true] .quarto-btn-toggle .bi-chevron-right::before{transform:rotate(90deg)}.quarto-secondary-nav .quarto-btn-toggle .bi-chevron-right::before{transition:transform 200ms ease}.quarto-secondary-nav{cursor:pointer}.no-decor{text-decoration:none}.quarto-secondary-nav-title{margin-top:.3em;color:#98989f;padding-top:4px}.quarto-secondary-nav nav.quarto-page-breadcrumbs{color:#98989f}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{color:#98989f}.quarto-secondary-nav nav.quarto-page-breadcrumbs a:hover{color:rgba(117,170,219,.8)}.quarto-secondary-nav nav.quarto-page-breadcrumbs .breadcrumb-item::before{color:#65656c}.breadcrumb-item{line-height:1.2rem}div.sidebar-item-container{color:#98989f}div.sidebar-item-container:hover,div.sidebar-item-container:focus{color:rgba(117,170,219,.8)}div.sidebar-item-container.disabled{color:rgba(152,152,159,.75)}div.sidebar-item-container .active,div.sidebar-item-container .show>.nav-link,div.sidebar-item-container .sidebar-link>code{color:#75aadb}div.sidebar.sidebar-navigation.rollup.quarto-sidebar-toggle-contents,nav.sidebar.sidebar-navigation:not(.rollup){background-color:#030316}@media(max-width: 991.98px){.sidebar-navigation .sidebar-item a,.nav-page .nav-page-text,.sidebar-navigation{font-size:1rem}.sidebar-navigation ul.sidebar-section.depth1 .sidebar-section-item{font-size:1.1rem}.sidebar-logo{display:none}.sidebar.sidebar-navigation{position:static;border-bottom:1px solid #dee2e6}.sidebar.sidebar-navigation.collapsing{position:fixed;z-index:1000}.sidebar.sidebar-navigation.show{position:fixed;z-index:1000}.sidebar.sidebar-navigation{min-height:100%}nav.quarto-secondary-nav{background-color:#030316;border-bottom:1px solid #dee2e6}.quarto-banner nav.quarto-secondary-nav{background-color:#030316;color:#98989f;border-top:1px solid #dee2e6}.sidebar .sidebar-footer{visibility:visible;padding-top:1rem;position:inherit}.sidebar-tools-collapse{display:block}}#quarto-sidebar{transition:width .15s ease-in}#quarto-sidebar>*{padding-right:1em}@media(max-width: 991.98px){#quarto-sidebar .sidebar-menu-container{white-space:nowrap;min-width:225px}#quarto-sidebar.show{transition:width .15s ease-out}}@media(min-width: 992px){#quarto-sidebar{display:flex;flex-direction:column}.nav-page .nav-page-text,.sidebar-navigation .sidebar-section .sidebar-item{font-size:.875rem}.sidebar-navigation .sidebar-item{font-size:.925rem}.sidebar.sidebar-navigation{display:block;position:sticky}.sidebar-search{width:100%}.sidebar .sidebar-footer{visibility:visible}}@media(min-width: 992px){#quarto-sidebar-glass{display:none}}@media(max-width: 991.98px){#quarto-sidebar-glass{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(255,255,255,0);transition:background-color .15s ease-in;z-index:-1}#quarto-sidebar-glass.collapsing{z-index:1000}#quarto-sidebar-glass.show{transition:background-color .15s ease-out;background-color:rgba(102,102,102,.4);z-index:1000}}.sidebar .sidebar-footer{padding:.5rem 1rem;align-self:flex-end;color:#6c757d;width:100%}.quarto-page-breadcrumbs .breadcrumb-item+.breadcrumb-item,.quarto-page-breadcrumbs .breadcrumb-item{padding-right:.33em;padding-left:0}.quarto-page-breadcrumbs .breadcrumb-item::before{padding-right:.33em}.quarto-sidebar-footer{font-size:.875em}.sidebar-section .bi-chevron-right{vertical-align:middle}.sidebar-section .bi-chevron-right::before{font-size:.9em}.notransition{-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.btn:focus:not(:focus-visible){box-shadow:none}.page-navigation{display:flex;justify-content:space-between}.nav-page{padding-bottom:.75em}.nav-page .bi{font-size:1.8rem;vertical-align:middle}.nav-page .nav-page-text{padding-left:.25em;padding-right:.25em}.nav-page a{color:#6c757d;text-decoration:none;display:flex;align-items:center}.nav-page a:hover{color:#5e88af}.nav-footer .toc-actions{padding-bottom:.5em;padding-top:.5em}.nav-footer .toc-actions a,.nav-footer .toc-actions a:hover{text-decoration:none}.nav-footer .toc-actions ul{display:flex;list-style:none}.nav-footer .toc-actions ul :first-child{margin-left:auto}.nav-footer .toc-actions ul :last-child{margin-right:auto}.nav-footer .toc-actions ul li{padding-right:1.5em}.nav-footer .toc-actions ul li i.bi{padding-right:.4em}.nav-footer .toc-actions ul li:last-of-type{padding-right:0}.nav-footer{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:baseline;text-align:center;padding-top:.5rem;padding-bottom:.5rem;background-color:#030316}body.nav-fixed{padding-top:64px}.nav-footer-contents{color:#6c757d;margin-top:.25rem}.nav-footer{min-height:3.5em;color:#777781}.nav-footer a{color:#777781}.nav-footer .nav-footer-left{font-size:.825em}.nav-footer .nav-footer-center{font-size:.825em}.nav-footer .nav-footer-right{font-size:.825em}.nav-footer-left .footer-items,.nav-footer-center .footer-items,.nav-footer-right .footer-items{display:inline-flex;padding-top:.3em;padding-bottom:.3em;margin-bottom:0em}.nav-footer-left .footer-items .nav-link,.nav-footer-center .footer-items .nav-link,.nav-footer-right .footer-items .nav-link{padding-left:.6em;padding-right:.6em}@media(min-width: 768px){.nav-footer-left{flex:1 1 0px;text-align:left}}@media(max-width: 575.98px){.nav-footer-left{margin-bottom:1em;flex:100%}}@media(min-width: 768px){.nav-footer-right{flex:1 1 0px;text-align:right}}@media(max-width: 575.98px){.nav-footer-right{margin-bottom:1em;flex:100%}}.nav-footer-center{text-align:center;min-height:3em}@media(min-width: 768px){.nav-footer-center{flex:1 1 0px}}.nav-footer-center .footer-items{justify-content:center}@media(max-width: 767.98px){.nav-footer-center{margin-bottom:1em;flex:100%}}@media(max-width: 767.98px){.nav-footer-center{margin-top:3em;order:10}}.navbar .quarto-reader-toggle.reader .quarto-reader-toggle-btn{background-color:#98989f;border-radius:3px}@media(max-width: 991.98px){.quarto-reader-toggle{display:none}}.quarto-reader-toggle.reader.quarto-navigation-tool .quarto-reader-toggle-btn{background-color:#98989f;border-radius:3px}.quarto-reader-toggle .quarto-reader-toggle-btn{display:inline-flex;padding-left:.2em;padding-right:.2em;margin-left:-0.2em;margin-right:-0.2em;text-align:center}.navbar .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}#quarto-back-to-top{display:none;position:fixed;bottom:50px;background-color:#050725;border-radius:.25rem;box-shadow:0 .2rem .5rem #6c757d,0 0 .05rem #6c757d;color:#6c757d;text-decoration:none;font-size:.9em;text-align:center;left:50%;padding:.4rem .8rem;transform:translate(-50%, 0)}#quarto-announcement{padding:.5em;display:flex;justify-content:space-between;margin-bottom:0;font-size:.9em}#quarto-announcement .quarto-announcement-content{margin-right:auto}#quarto-announcement .quarto-announcement-content p{margin-bottom:0}#quarto-announcement .quarto-announcement-icon{margin-right:.5em;font-size:1.2em;margin-top:-0.15em}#quarto-announcement .quarto-announcement-action{cursor:pointer}.aa-DetachedSearchButtonQuery{display:none}.aa-DetachedOverlay ul.aa-List,#quarto-search-results ul.aa-List{list-style:none;padding-left:0}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{background-color:#050725;position:absolute;z-index:2000}#quarto-search-results .aa-Panel{max-width:400px}#quarto-search input{font-size:.925rem}@media(min-width: 992px){.navbar #quarto-search{margin-left:.25rem;order:999}}.navbar.navbar-expand-sm #quarto-search,.navbar.navbar-expand-md #quarto-search{order:999}@media(min-width: 992px){.navbar .quarto-navbar-tools{order:900}}@media(min-width: 992px){.navbar .quarto-navbar-tools.tools-end{margin-left:auto !important}}@media(max-width: 991.98px){#quarto-sidebar .sidebar-search{display:none}}#quarto-sidebar .sidebar-search .aa-Autocomplete{width:100%}.navbar .aa-Autocomplete .aa-Form{width:180px}.navbar #quarto-search.type-overlay .aa-Autocomplete{width:40px}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form{background-color:inherit;border:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form:focus-within{box-shadow:none;outline:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper{display:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper:focus-within{display:inherit}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-Label svg,.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-LoadingIndicator svg{width:26px;height:26px;color:#98989f;opacity:1}.navbar #quarto-search.type-overlay .aa-Autocomplete svg.aa-SubmitIcon{width:26px;height:26px;color:#98989f;opacity:1}.aa-Autocomplete .aa-Form,.aa-DetachedFormContainer .aa-Form{align-items:center;background-color:#050725;border:1px solid #dee2e6;border-radius:.25rem;color:#75aadb;display:flex;line-height:1em;margin:0;position:relative;width:100%}.aa-Autocomplete .aa-Form:focus-within,.aa-DetachedFormContainer .aa-Form:focus-within{box-shadow:rgba(30,66,135,.6) 0 0 0 1px;outline:currentColor none medium}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix{align-items:center;display:flex;flex-shrink:0;order:1}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{cursor:initial;flex-shrink:0;padding:0;text-align:left}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg{color:#75aadb;opacity:.5}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton{appearance:none;background:none;border:0;margin:0}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{align-items:center;display:flex;justify-content:center}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapper,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper{order:3;position:relative;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input{appearance:none;background:none;border:0;color:#75aadb;font:inherit;height:calc(1.5em + .1rem + 2px);padding:0;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::placeholder,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::placeholder{color:#75aadb;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input:focus{border-color:none;box-shadow:none;outline:none}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix{align-items:center;display:flex;order:4}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton{align-items:center;background:none;border:0;color:#75aadb;opacity:.8;cursor:pointer;display:flex;margin:0;width:calc(1.5em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus{color:#75aadb;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg{width:calc(1.5em + 0.75rem + calc(1px * 2))}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton{border:none;align-items:center;background:none;color:#75aadb;opacity:.4;font-size:.7rem;cursor:pointer;display:none;margin:0;width:calc(1em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus{color:#75aadb;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden]{display:none}.aa-PanelLayout:empty{display:none}.quarto-search-no-results.no-query{display:none}.aa-Source:has(.no-query){display:none}#quarto-search-results .aa-Panel{border:solid #dee2e6 1px}#quarto-search-results .aa-SourceNoResults{width:398px}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{max-height:65vh;overflow-y:auto;font-size:.925rem}.aa-DetachedOverlay .aa-SourceNoResults,#quarto-search-results .aa-SourceNoResults{height:60px;display:flex;justify-content:center;align-items:center}.aa-DetachedOverlay .search-error,#quarto-search-results .search-error{padding-top:10px;padding-left:20px;padding-right:20px;cursor:default}.aa-DetachedOverlay .search-error .search-error-title,#quarto-search-results .search-error .search-error-title{font-size:1.1rem;margin-bottom:.5rem}.aa-DetachedOverlay .search-error .search-error-title .search-error-icon,#quarto-search-results .search-error .search-error-title .search-error-icon{margin-right:8px}.aa-DetachedOverlay .search-error .search-error-text,#quarto-search-results .search-error .search-error-text{font-weight:300}.aa-DetachedOverlay .search-result-text,#quarto-search-results .search-result-text{font-weight:300;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:1.2rem;max-height:2.4rem}.aa-DetachedOverlay .aa-SourceHeader .search-result-header,#quarto-search-results .aa-SourceHeader .search-result-header{font-size:.875rem;background-color:#080b3b;padding-left:14px;padding-bottom:4px;padding-top:4px}.aa-DetachedOverlay .aa-SourceHeader .search-result-header-no-results,#quarto-search-results .aa-SourceHeader .search-result-header-no-results{display:none}.aa-DetachedOverlay .aa-SourceFooter .algolia-search-logo,#quarto-search-results .aa-SourceFooter .algolia-search-logo{width:110px;opacity:.85;margin:8px;float:right}.aa-DetachedOverlay .search-result-section,#quarto-search-results .search-result-section{font-size:.925em}.aa-DetachedOverlay a.search-result-link,#quarto-search-results a.search-result-link{color:inherit;text-decoration:none}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item,#quarto-search-results li.aa-Item[aria-selected=true] .search-item{background-color:#1e4287}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text-container{color:#fff;background-color:#1e4287}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=true] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-match.mark{color:#fff;background-color:#173266}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item,#quarto-search-results li.aa-Item[aria-selected=false] .search-item{background-color:#050725}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text-container{color:rgba(255,255,255,.8705882353)}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=false] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-match.mark{color:inherit;background-color:#000}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container{background-color:#050725;color:rgba(255,255,255,.8705882353)}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container{padding-top:0px}.aa-DetachedOverlay li.aa-Item .search-result-doc.document-selectable .search-result-text-container,#quarto-search-results li.aa-Item .search-result-doc.document-selectable .search-result-text-container{margin-top:-4px}.aa-DetachedOverlay .aa-Item,#quarto-search-results .aa-Item{cursor:pointer}.aa-DetachedOverlay .aa-Item .search-item,#quarto-search-results .aa-Item .search-item{border-left:none;border-right:none;border-top:none;background-color:#050725;border-color:#dee2e6;color:rgba(255,255,255,.8705882353)}.aa-DetachedOverlay .aa-Item .search-item p,#quarto-search-results .aa-Item .search-item p{margin-top:0;margin-bottom:0}.aa-DetachedOverlay .aa-Item .search-item i.bi,#quarto-search-results .aa-Item .search-item i.bi{padding-left:8px;padding-right:8px;font-size:1.3em}.aa-DetachedOverlay .aa-Item .search-item .search-result-title,#quarto-search-results .aa-Item .search-item .search-result-title{margin-top:.3em;margin-bottom:0em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs,#quarto-search-results .aa-Item .search-item .search-result-crumbs{white-space:nowrap;text-overflow:ellipsis;font-size:.8em;font-weight:300;margin-right:1em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap),#quarto-search-results .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap){max-width:30%;margin-left:auto;margin-top:.5em;margin-bottom:.1rem}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap,#quarto-search-results .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap{flex-basis:100%;margin-top:0em;margin-bottom:.2em;margin-left:37px}.aa-DetachedOverlay .aa-Item .search-result-title-container,#quarto-search-results .aa-Item .search-result-title-container{font-size:1em;display:flex;flex-wrap:wrap;padding:6px 4px 6px 4px}.aa-DetachedOverlay .aa-Item .search-result-text-container,#quarto-search-results .aa-Item .search-result-text-container{padding-bottom:8px;padding-right:8px;margin-left:42px}.aa-DetachedOverlay .aa-Item .search-result-doc-section,.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-doc-section,#quarto-search-results .aa-Item .search-result-more{padding-top:8px;padding-bottom:8px;padding-left:44px}.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-more{font-size:.8em;font-weight:400}.aa-DetachedOverlay .aa-Item .search-result-doc,#quarto-search-results .aa-Item .search-result-doc{border-top:1px solid #dee2e6}.aa-DetachedSearchButton{background:none;border:none}.aa-DetachedSearchButton .aa-DetachedSearchButtonPlaceholder{display:none}.navbar .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#98989f}.sidebar-tools-collapse #quarto-search,.sidebar-tools-main #quarto-search{display:inline}.sidebar-tools-collapse #quarto-search .aa-Autocomplete,.sidebar-tools-main #quarto-search .aa-Autocomplete{display:inline}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton{padding-left:4px;padding-right:4px}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#98989f}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon{margin-top:-3px}.aa-DetachedContainer{background:rgba(5,7,37,.65);width:90%;bottom:0;box-shadow:rgba(222,226,230,.6) 0 0 0 1px;outline:currentColor none medium;display:flex;flex-direction:column;left:0;margin:0;overflow:hidden;padding:0;position:fixed;right:0;top:0;z-index:1101}.aa-DetachedContainer::after{height:32px}.aa-DetachedContainer .aa-SourceHeader{margin:var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px}.aa-DetachedContainer .aa-Panel{background-color:#050725;border-radius:0;box-shadow:none;flex-grow:1;margin:0;padding:0;position:relative}.aa-DetachedContainer .aa-PanelLayout{bottom:0;box-shadow:none;left:0;margin:0;max-height:none;overflow-y:auto;position:absolute;right:0;top:0;width:100%}.aa-DetachedFormContainer{background-color:#050725;border-bottom:1px solid #dee2e6;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:.5em}.aa-DetachedCancelButton{background:none;font-size:.8em;border:0;border-radius:3px;color:rgba(255,255,255,.8705882353);cursor:pointer;margin:0 0 0 .5em;padding:0 .5em}.aa-DetachedCancelButton:hover,.aa-DetachedCancelButton:focus{box-shadow:rgba(30,66,135,.6) 0 0 0 1px;outline:currentColor none medium}.aa-DetachedContainer--modal{bottom:inherit;height:auto;margin:0 auto;position:absolute;top:100px;border-radius:6px;max-width:850px}@media(max-width: 575.98px){.aa-DetachedContainer--modal{width:100%;top:0px;border-radius:0px;border:none}}.aa-DetachedContainer--modal .aa-PanelLayout{max-height:var(--aa-detached-modal-max-height);padding-bottom:var(--aa-spacing-half);position:static}.aa-Detached{height:100vh;overflow:hidden}.aa-DetachedOverlay{background-color:rgba(255,255,255,.4);position:fixed;left:0;right:0;top:0;margin:0;padding:0;height:100vh;z-index:1100}.quarto-dashboard.nav-fixed.dashboard-sidebar #quarto-content.quarto-dashboard-content{padding:0em}.quarto-dashboard #quarto-content.quarto-dashboard-content{padding:1em}.quarto-dashboard #quarto-content.quarto-dashboard-content>*{padding-top:0}@media(min-width: 576px){.quarto-dashboard{height:100%}}.quarto-dashboard .card.valuebox.bslib-card.bg-primary{background-color:#1e4287 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-secondary{background-color:#6c757d !important}.quarto-dashboard .card.valuebox.bslib-card.bg-success{background-color:#198754 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-info{background-color:#0dcaf0 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-warning{background-color:#ffc107 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-danger{background-color:#dc3545 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-light{background-color:#f8f9fa !important}.quarto-dashboard .card.valuebox.bslib-card.bg-dark{background-color:#212529 !important}.quarto-dashboard.dashboard-fill{display:flex;flex-direction:column}.quarto-dashboard #quarto-appendix{display:none}.quarto-dashboard #quarto-header #quarto-dashboard-header{border-top:solid 1px #090943;border-bottom:solid 1px #090943}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav{padding-left:1em;padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav .navbar-brand-container{padding-left:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler{margin-right:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler-icon{height:1em;width:1em;background-image:url('data:image/svg+xml,')}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-brand-container{padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-title{font-size:1.1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-nav{font-size:.9em}.quarto-dashboard #quarto-dashboard-header .navbar{padding:0}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-container{padding-left:1em}.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-brand-container .nav-link,.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-nav .nav-link{padding:.7em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-color-scheme-toggle{order:9}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-toggler{margin-left:.5em;order:10}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .nav-link{padding:.5em;height:100%;display:flex;align-items:center}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .active{background-color:#08083a}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{padding:.5em .5em .5em 0;display:flex;flex-direction:row;margin-right:2em;align-items:center}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{margin-right:auto}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{align-self:stretch}@media(min-width: 768px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:8}}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:1000;padding-bottom:.5em}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse .navbar-nav{align-self:stretch}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title{font-size:1.25em;line-height:1.1em;display:flex;flex-direction:row;flex-wrap:wrap;align-items:baseline}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title .navbar-title-text{margin-right:.4em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title a{text-decoration:none;color:inherit}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-subtitle,.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{font-size:.9rem;margin-right:.5em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{margin-left:auto}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-logo{max-height:48px;min-height:30px;object-fit:cover;margin-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-links{order:9;padding-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link-text{margin-left:.25em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link{padding-right:0em;padding-left:.7em;text-decoration:none;color:#98989f}.quarto-dashboard .page-layout-custom .tab-content{padding:0;border:none}.quarto-dashboard-img-contain{height:100%;width:100%;object-fit:contain}@media(max-width: 575.98px){.quarto-dashboard .bslib-grid{grid-template-rows:minmax(1em, max-content) !important}.quarto-dashboard .sidebar-content{height:inherit}.quarto-dashboard .page-layout-custom{min-height:100vh}}.quarto-dashboard.dashboard-toolbar>.page-layout-custom,.quarto-dashboard.dashboard-sidebar>.page-layout-custom{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages{padding:0}.quarto-dashboard .callout{margin-bottom:0;margin-top:0}.quarto-dashboard .html-fill-container figure{overflow:hidden}.quarto-dashboard bslib-tooltip .rounded-pill{border:solid #6c757d 1px}.quarto-dashboard bslib-tooltip .rounded-pill .svg{fill:rgba(255,255,255,.8705882353)}.quarto-dashboard .tabset .dashboard-card-no-title .nav-tabs{margin-left:0;margin-right:auto}.quarto-dashboard .tabset .tab-content{border:none}.quarto-dashboard .tabset .card-header .nav-link[role=tab]{margin-top:-6px;padding-top:6px;padding-bottom:6px}.quarto-dashboard .card.valuebox,.quarto-dashboard .card.bslib-value-box{min-height:3rem}.quarto-dashboard .card.valuebox .card-body,.quarto-dashboard .card.bslib-value-box .card-body{padding:0}.quarto-dashboard .bslib-value-box .value-box-value{font-size:clamp(.1em,15cqw,5em)}.quarto-dashboard .bslib-value-box .value-box-showcase .bi{font-size:clamp(.1em,max(18cqw,5.2cqh),5em);text-align:center;height:1em}.quarto-dashboard .bslib-value-box .value-box-showcase .bi::before{vertical-align:1em}.quarto-dashboard .bslib-value-box .value-box-area{margin-top:auto;margin-bottom:auto}.quarto-dashboard .card figure.quarto-float{display:flex;flex-direction:column;align-items:center}.quarto-dashboard .dashboard-scrolling{padding:1em}.quarto-dashboard .full-height{height:100%}.quarto-dashboard .showcase-bottom .value-box-grid{display:grid;grid-template-columns:1fr;grid-template-rows:1fr auto;grid-template-areas:"top" "bottom"}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase i.bi{font-size:4rem}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-area{grid-area:top}.quarto-dashboard .tab-content{margin-bottom:0}.quarto-dashboard .bslib-card .bslib-navs-card-title{justify-content:stretch;align-items:end}.quarto-dashboard .card-header{display:flex;flex-wrap:wrap;justify-content:space-between}.quarto-dashboard .card-header .card-title{display:flex;flex-direction:column;justify-content:center;margin-bottom:0}.quarto-dashboard .tabset .card-toolbar{margin-bottom:1em}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{border:none;gap:var(--bslib-spacer, 1rem)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{padding:0}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.sidebar{border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.collapse-toggle{display:none}@media(max-width: 767.98px){.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{grid-template-columns:1fr;grid-template-rows:max-content 1fr}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{grid-column:1;grid-row:2}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout .sidebar{grid-column:1;grid-row:1}}.quarto-dashboard .sidebar-right .sidebar{padding-left:2.5em}.quarto-dashboard .sidebar-right .collapse-toggle{left:2px}.quarto-dashboard .quarto-dashboard .sidebar-right button.collapse-toggle:not(.transitioning){left:unset}.quarto-dashboard aside.sidebar{padding-left:1em;padding-right:1em;background-color:rgba(52,58,64,.25);color:rgba(255,255,255,.8705882353)}.quarto-dashboard .bslib-sidebar-layout>div.main{padding:.7em}.quarto-dashboard .bslib-sidebar-layout button.collapse-toggle{margin-top:.3em}.quarto-dashboard .bslib-sidebar-layout .collapse-toggle{top:0}.quarto-dashboard .bslib-sidebar-layout.sidebar-collapsed:not(.transitioning):not(.sidebar-right) .collapse-toggle{left:2px}.quarto-dashboard .sidebar>section>.h3:first-of-type{margin-top:0em}.quarto-dashboard .sidebar .h3,.quarto-dashboard .sidebar .h4,.quarto-dashboard .sidebar .h5,.quarto-dashboard .sidebar .h6{margin-top:.5em}.quarto-dashboard .sidebar form{flex-direction:column;align-items:start;margin-bottom:1em}.quarto-dashboard .sidebar form div[class*=oi-][class$=-input]{flex-direction:column}.quarto-dashboard .sidebar form[class*=oi-][class$=-toggle]{flex-direction:row-reverse;align-items:center;justify-content:start}.quarto-dashboard .sidebar form input[type=range]{margin-top:.5em;margin-right:.8em;margin-left:1em}.quarto-dashboard .sidebar label{width:fit-content}.quarto-dashboard .sidebar .card-body{margin-bottom:2em}.quarto-dashboard .sidebar .shiny-input-container{margin-bottom:1em}.quarto-dashboard .sidebar .shiny-options-group{margin-top:0}.quarto-dashboard .sidebar .control-label{margin-bottom:.3em}.quarto-dashboard .card .card-body .quarto-layout-row{align-items:stretch}.quarto-dashboard .toolbar{font-size:.9em;display:flex;flex-direction:row;border-top:solid 1px #c7c9cd;padding:1em;flex-wrap:wrap;background-color:rgba(52,58,64,.25)}.quarto-dashboard .toolbar .cell-output-display{display:flex}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar>*:last-child{margin-right:0}.quarto-dashboard .toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .toolbar .input-daterange{width:inherit}.quarto-dashboard .toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar form{width:fit-content}.quarto-dashboard .toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .toolbar form input[type=date]{width:fit-content}.quarto-dashboard .toolbar form input[type=color]{width:3em}.quarto-dashboard .toolbar form button{padding:.4em}.quarto-dashboard .toolbar form select{width:fit-content}.quarto-dashboard .toolbar>*{font-size:.9em;flex-grow:0}.quarto-dashboard .toolbar .shiny-input-container label{margin-bottom:1px}.quarto-dashboard .toolbar-bottom{margin-top:1em;margin-bottom:0 !important;order:2}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>.tab-content>.tab-pane>*:not(.bslib-sidebar-layout){padding:1em}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>*:not(.tab-content){padding:1em}.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page>.dashboard-toolbar-container>.toolbar-content,.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page:not(.dashboard-sidebar-container)>*:not(.dashboard-toolbar-container){padding:1em}.quarto-dashboard .toolbar-content{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages .tab-pane>.dashboard-toolbar-container .toolbar{border-radius:0;margin-bottom:0}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar{border-bottom:1px solid rgba(0,0,0,.175)}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar-bottom{margin-top:0}.quarto-dashboard .dashboard-toolbar-container:not(.toolbar-toplevel) .toolbar{margin-bottom:1em;border-top:none;border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .vega-embed.has-actions details{width:1.7em;height:2em;position:absolute !important;top:0;right:0}.quarto-dashboard .dashboard-toolbar-container{padding:0}.quarto-dashboard .card .card-header p:last-child,.quarto-dashboard .card .card-footer p:last-child{margin-bottom:0}.quarto-dashboard .card .card-body>.h4:first-child{margin-top:0}.quarto-dashboard .card .card-body{z-index:4}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_length,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_info,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate{text-align:initial}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_filter{text-align:right}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:initial}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding-top:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper table{flex-shrink:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons{margin-bottom:.5em;margin-left:auto;width:fit-content;float:right}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons.btn-group{background:#050725;border:none}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn-secondary{background-color:#050725;background-image:none;border:solid #dee2e6 1px;padding:.2em .7em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn span{font-size:.8em;color:rgba(255,255,255,.8705882353)}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{margin-left:.5em;margin-bottom:.5em;padding-top:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.875em}}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.8em}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter{margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter input[type=search]{padding:1px 5px 1px 5px;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length{flex-basis:1 1 50%;margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length select{padding:.4em 3em .4em .5em;font-size:.875em;margin-left:.2em;margin-right:.2em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{flex-shrink:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{margin-left:auto}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate ul.pagination .paginate_button .page-link{font-size:.8em}.quarto-dashboard .card .card-footer{font-size:.9em}.quarto-dashboard .card .card-toolbar{display:flex;flex-grow:1;flex-direction:row;width:100%;flex-wrap:wrap}.quarto-dashboard .card .card-toolbar>*{font-size:.8em;flex-grow:0}.quarto-dashboard .card .card-toolbar>.card-title{font-size:1em;flex-grow:1;align-self:flex-start;margin-top:.1em}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar form{width:fit-content}.quarto-dashboard .card .card-toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=date]{width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=color]{width:3em}.quarto-dashboard .card .card-toolbar form button{padding:.4em}.quarto-dashboard .card .card-toolbar form select{width:fit-content}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .card .card-toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .card .card-toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .card .card-toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange{width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .card .card-toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .card .card-toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .card .card-toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .card .card-toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card-body>table>thead{border-top:none}.quarto-dashboard .card-body>.table>:not(caption)>*>*{background-color:#050725}.tableFloatingHeaderOriginal{background-color:#050725;position:sticky !important;top:0 !important}.dashboard-data-table{margin-top:-1px}div.value-box-area span.observablehq--number{font-size:calc(clamp(.1em,15cqw,5em)*1.25);line-height:1.2;color:inherit;font-family:var(--bs-body-font-family)}.quarto-listing{padding-bottom:1em}.listing-pagination{padding-top:.5em}ul.pagination{float:right;padding-left:8px;padding-top:.5em}ul.pagination li{padding-right:.75em}ul.pagination li.disabled a,ul.pagination li.active a{color:#fff;text-decoration:none}ul.pagination li:last-of-type{padding-right:0}.listing-actions-group{display:flex}.quarto-listing-filter{margin-bottom:1em;width:200px;margin-left:auto}.quarto-listing-sort{margin-bottom:1em;margin-right:auto;width:auto}.quarto-listing-sort .input-group-text{font-size:.8em}.input-group-text{border-right:none}.quarto-listing-sort select.form-select{font-size:.8em}.listing-no-matching{text-align:center;padding-top:2em;padding-bottom:3em;font-size:1em}#quarto-margin-sidebar .quarto-listing-category{padding-top:0;font-size:1rem}#quarto-margin-sidebar .quarto-listing-category-title{cursor:pointer;font-weight:600;font-size:1rem}.quarto-listing-category .category{cursor:pointer}.quarto-listing-category .category.active{font-weight:600}.quarto-listing-category.category-cloud{display:flex;flex-wrap:wrap;align-items:baseline}.quarto-listing-category.category-cloud .category{padding-right:5px}.quarto-listing-category.category-cloud .category-cloud-1{font-size:.75em}.quarto-listing-category.category-cloud .category-cloud-2{font-size:.95em}.quarto-listing-category.category-cloud .category-cloud-3{font-size:1.15em}.quarto-listing-category.category-cloud .category-cloud-4{font-size:1.35em}.quarto-listing-category.category-cloud .category-cloud-5{font-size:1.55em}.quarto-listing-category.category-cloud .category-cloud-6{font-size:1.75em}.quarto-listing-category.category-cloud .category-cloud-7{font-size:1.95em}.quarto-listing-category.category-cloud .category-cloud-8{font-size:2.15em}.quarto-listing-category.category-cloud .category-cloud-9{font-size:2.35em}.quarto-listing-category.category-cloud .category-cloud-10{font-size:2.55em}.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-1{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-2{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-3{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-3{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-4{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-4{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-5{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-5{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-6{grid-template-columns:repeat(6, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-6{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-6{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-7{grid-template-columns:repeat(7, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-7{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-7{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-8{grid-template-columns:repeat(8, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-8{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-8{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-9{grid-template-columns:repeat(9, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-9{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-9{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-10{grid-template-columns:repeat(10, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-10{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-10{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-11{grid-template-columns:repeat(11, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-11{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-11{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-12{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-12{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-grid{gap:1.5em}.quarto-grid-item.borderless{border:none}.quarto-grid-item.borderless .listing-categories .listing-category:last-of-type,.quarto-grid-item.borderless .listing-categories .listing-category:first-of-type{padding-left:0}.quarto-grid-item.borderless .listing-categories .listing-category{border:0}.quarto-grid-link{text-decoration:none;color:inherit}.quarto-grid-link:hover{text-decoration:none;color:inherit}.quarto-grid-item h5.title,.quarto-grid-item .title.h5{margin-top:0;margin-bottom:0}.quarto-grid-item .card-footer{display:flex;justify-content:space-between;font-size:.8em}.quarto-grid-item .card-footer p{margin-bottom:0}.quarto-grid-item p.card-img-top{margin-bottom:0}.quarto-grid-item p.card-img-top>img{object-fit:cover}.quarto-grid-item .card-other-values{margin-top:.5em;font-size:.8em}.quarto-grid-item .card-other-values tr{margin-bottom:.5em}.quarto-grid-item .card-other-values tr>td:first-of-type{font-weight:600;padding-right:1em;padding-left:1em;vertical-align:top}.quarto-grid-item div.post-contents{display:flex;flex-direction:column;text-decoration:none;height:100%}.quarto-grid-item .listing-item-img-placeholder{background-color:rgba(52,58,64,.25);flex-shrink:0}.quarto-grid-item .card-attribution{padding-top:1em;display:flex;gap:1em;text-transform:uppercase;color:#6c757d;font-weight:500;flex-grow:10;align-items:flex-end}.quarto-grid-item .description{padding-bottom:1em}.quarto-grid-item .card-attribution .date{align-self:flex-end}.quarto-grid-item .card-attribution.justify{justify-content:space-between}.quarto-grid-item .card-attribution.start{justify-content:flex-start}.quarto-grid-item .card-attribution.end{justify-content:flex-end}.quarto-grid-item .card-title{margin-bottom:.1em}.quarto-grid-item .card-subtitle{padding-top:.25em}.quarto-grid-item .card-text{font-size:.9em}.quarto-grid-item .listing-reading-time{padding-bottom:.25em}.quarto-grid-item .card-text-small{font-size:.8em}.quarto-grid-item .card-subtitle.subtitle{font-size:.9em;font-weight:600;padding-bottom:.5em}.quarto-grid-item .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}.quarto-grid-item .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}.quarto-grid-item.card-right{text-align:right}.quarto-grid-item.card-right .listing-categories{justify-content:flex-end}.quarto-grid-item.card-left{text-align:left}.quarto-grid-item.card-center{text-align:center}.quarto-grid-item.card-center .listing-description{text-align:justify}.quarto-grid-item.card-center .listing-categories{justify-content:center}table.quarto-listing-table td.image{padding:0px}table.quarto-listing-table td.image img{width:100%;max-width:50px;object-fit:contain}table.quarto-listing-table a{text-decoration:none;word-break:keep-all}table.quarto-listing-table th a{color:inherit}table.quarto-listing-table th a.asc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table th a.desc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table.table-hover td{cursor:pointer}.quarto-post.image-left{flex-direction:row}.quarto-post.image-right{flex-direction:row-reverse}@media(max-width: 767.98px){.quarto-post.image-right,.quarto-post.image-left{gap:0em;flex-direction:column}.quarto-post .metadata{padding-bottom:1em;order:2}.quarto-post .body{order:1}.quarto-post .thumbnail{order:3}}.list.quarto-listing-default div:last-of-type{border-bottom:none}@media(min-width: 992px){.quarto-listing-container-default{margin-right:2em}}div.quarto-post{display:flex;gap:2em;margin-bottom:1.5em;border-bottom:1px solid #dee2e6}@media(max-width: 767.98px){div.quarto-post{padding-bottom:1em}}div.quarto-post .metadata{flex-basis:20%;flex-grow:0;margin-top:.2em;flex-shrink:10}div.quarto-post .thumbnail{flex-basis:30%;flex-grow:0;flex-shrink:0}div.quarto-post .thumbnail img{margin-top:.4em;width:100%;object-fit:cover}div.quarto-post .body{flex-basis:45%;flex-grow:1;flex-shrink:0}div.quarto-post .body h3.listing-title,div.quarto-post .body .listing-title.h3{margin-top:0px;margin-bottom:0px;border-bottom:none}div.quarto-post .body .listing-subtitle{font-size:.875em;margin-bottom:.5em;margin-top:.2em}div.quarto-post .body .description{font-size:.9em}div.quarto-post .body pre code{white-space:pre-wrap}div.quarto-post a{color:rgba(255,255,255,.8705882353);text-decoration:none}div.quarto-post .metadata{display:flex;flex-direction:column;font-size:.8em;font-family:Roboto;flex-basis:33%}div.quarto-post .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}div.quarto-post .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}div.quarto-post .listing-description{margin-bottom:.5em}div.quarto-about-jolla{display:flex !important;flex-direction:column;align-items:center;margin-top:10%;padding-bottom:1em}div.quarto-about-jolla .about-image{object-fit:cover;margin-left:auto;margin-right:auto;margin-bottom:1.5em}div.quarto-about-jolla img.round{border-radius:50%}div.quarto-about-jolla img.rounded{border-radius:10px}div.quarto-about-jolla .quarto-title h1.title,div.quarto-about-jolla .quarto-title .title.h1{text-align:center}div.quarto-about-jolla .quarto-title .description{text-align:center}div.quarto-about-jolla h2,div.quarto-about-jolla .h2{border-bottom:none}div.quarto-about-jolla .about-sep{width:60%}div.quarto-about-jolla main{text-align:center}div.quarto-about-jolla .about-links{display:flex}@media(min-width: 992px){div.quarto-about-jolla .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-jolla .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-jolla .about-link{color:rgba(255,255,255,.8705882353);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-jolla .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-jolla .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-jolla .about-link:hover{color:#75aadb}div.quarto-about-jolla .about-link i.bi{margin-right:.15em}div.quarto-about-solana{display:flex !important;flex-direction:column;padding-top:3em !important;padding-bottom:1em}div.quarto-about-solana .about-entity{display:flex !important;align-items:start;justify-content:space-between}@media(min-width: 992px){div.quarto-about-solana .about-entity{flex-direction:row}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity{flex-direction:column-reverse;align-items:center;text-align:center}}div.quarto-about-solana .about-entity .entity-contents{display:flex;flex-direction:column}@media(max-width: 767.98px){div.quarto-about-solana .about-entity .entity-contents{width:100%}}div.quarto-about-solana .about-entity .about-image{object-fit:cover}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-image{margin-bottom:1.5em}}div.quarto-about-solana .about-entity img.round{border-radius:50%}div.quarto-about-solana .about-entity img.rounded{border-radius:10px}div.quarto-about-solana .about-entity .about-links{display:flex;justify-content:left;padding-bottom:1.2em}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-solana .about-entity .about-link{color:rgba(255,255,255,.8705882353);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-solana .about-entity .about-link:hover{color:#75aadb}div.quarto-about-solana .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-solana .about-contents{padding-right:1.5em;flex-basis:0;flex-grow:1}div.quarto-about-solana .about-contents main.content{margin-top:0}div.quarto-about-solana .about-contents h2,div.quarto-about-solana .about-contents .h2{border-bottom:none}div.quarto-about-trestles{display:flex !important;flex-direction:row;padding-top:3em !important;padding-bottom:1em}@media(max-width: 991.98px){div.quarto-about-trestles{flex-direction:column;padding-top:0em !important}}div.quarto-about-trestles .about-entity{display:flex !important;flex-direction:column;align-items:center;text-align:center;padding-right:1em}@media(min-width: 992px){div.quarto-about-trestles .about-entity{flex:0 0 42%}}div.quarto-about-trestles .about-entity .about-image{object-fit:cover;margin-bottom:1.5em}div.quarto-about-trestles .about-entity img.round{border-radius:50%}div.quarto-about-trestles .about-entity img.rounded{border-radius:10px}div.quarto-about-trestles .about-entity .about-links{display:flex;justify-content:center}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-trestles .about-entity .about-link{color:rgba(255,255,255,.8705882353);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-trestles .about-entity .about-link:hover{color:#75aadb}div.quarto-about-trestles .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-trestles .about-contents{flex-basis:0;flex-grow:1}div.quarto-about-trestles .about-contents h2,div.quarto-about-trestles .about-contents .h2{border-bottom:none}@media(min-width: 992px){div.quarto-about-trestles .about-contents{border-left:solid 1px #dee2e6;padding-left:1.5em}}div.quarto-about-trestles .about-contents main.content{margin-top:0}div.quarto-about-marquee{padding-bottom:1em}div.quarto-about-marquee .about-contents{display:flex;flex-direction:column}div.quarto-about-marquee .about-image{max-height:550px;margin-bottom:1.5em;object-fit:cover}div.quarto-about-marquee img.round{border-radius:50%}div.quarto-about-marquee img.rounded{border-radius:10px}div.quarto-about-marquee h2,div.quarto-about-marquee .h2{border-bottom:none}div.quarto-about-marquee .about-links{display:flex;justify-content:center;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-marquee .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-marquee .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-marquee .about-link{color:rgba(255,255,255,.8705882353);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-marquee .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-marquee .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-marquee .about-link:hover{color:#75aadb}div.quarto-about-marquee .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-marquee .about-link{border:none}}div.quarto-about-broadside{display:flex;flex-direction:column;padding-bottom:1em}div.quarto-about-broadside .about-main{display:flex !important;padding-top:0 !important}@media(min-width: 992px){div.quarto-about-broadside .about-main{flex-direction:row;align-items:flex-start}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main{flex-direction:column}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main .about-entity{flex-shrink:0;width:100%;height:450px;margin-bottom:1.5em;background-size:cover;background-repeat:no-repeat}}@media(min-width: 992px){div.quarto-about-broadside .about-main .about-entity{flex:0 10 50%;margin-right:1.5em;width:100%;height:100%;background-size:100%;background-repeat:no-repeat}}div.quarto-about-broadside .about-main .about-contents{padding-top:14px;flex:0 0 50%}div.quarto-about-broadside h2,div.quarto-about-broadside .h2{border-bottom:none}div.quarto-about-broadside .about-sep{margin-top:1.5em;width:60%;align-self:center}div.quarto-about-broadside .about-links{display:flex;justify-content:center;column-gap:20px;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-broadside .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-broadside .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-broadside .about-link{color:rgba(255,255,255,.8705882353);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-broadside .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-broadside .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-broadside .about-link:hover{color:#75aadb}div.quarto-about-broadside .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-broadside .about-link{border:none}}.tippy-box[data-theme~=quarto]{background-color:#050725;border:solid 1px #dee2e6;border-radius:.25rem;color:rgba(255,255,255,.8705882353);font-size:.875rem}.tippy-box[data-theme~=quarto]>.tippy-backdrop{background-color:#050725}.tippy-box[data-theme~=quarto]>.tippy-arrow:after,.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{content:"";position:absolute;z-index:-1}.tippy-box[data-theme~=quarto]>.tippy-arrow:after{border-color:rgba(0,0,0,0);border-style:solid}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-6px}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-6px}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-6px}.tippy-box[data-placement^=left]>.tippy-arrow:before{right:-6px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:before{border-top-color:#050725}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:after{border-top-color:#dee2e6;border-width:7px 7px 0;top:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow>svg{top:16px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow:after{top:17px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#050725;bottom:16px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:#dee2e6;border-width:0 7px 7px;bottom:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow>svg{bottom:15px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow:after{bottom:17px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:before{border-left-color:#050725}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:after{border-left-color:#dee2e6;border-width:7px 0 7px 7px;left:17px;top:1px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow>svg{left:11px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow:after{left:12px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:before{border-right-color:#050725;right:16px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:after{border-width:7px 7px 7px 0;right:17px;top:1px;border-right-color:#dee2e6}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow>svg{right:11px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow:after{right:12px}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow{fill:rgba(255,255,255,.8705882353)}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);background-size:16px 6px;width:16px;height:6px}.top-right{position:absolute;top:1em;right:1em}.visually-hidden{border:0;clip:rect(0 0 0 0);height:auto;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.hidden{display:none !important}.zindex-bottom{z-index:-1 !important}figure.figure{display:block}.quarto-layout-panel{margin-bottom:1em}.quarto-layout-panel>figure{width:100%}.quarto-layout-panel>figure>figcaption,.quarto-layout-panel>.panel-caption{margin-top:10pt}.quarto-layout-panel>.table-caption{margin-top:0px}.table-caption p{margin-bottom:.5em}.quarto-layout-row{display:flex;flex-direction:row;align-items:flex-start}.quarto-layout-valign-top{align-items:flex-start}.quarto-layout-valign-bottom{align-items:flex-end}.quarto-layout-valign-center{align-items:center}.quarto-layout-cell{position:relative;margin-right:20px}.quarto-layout-cell:last-child{margin-right:0}.quarto-layout-cell figure,.quarto-layout-cell>p{margin:.2em}.quarto-layout-cell img{max-width:100%}.quarto-layout-cell .html-widget{width:100% !important}.quarto-layout-cell div figure p{margin:0}.quarto-layout-cell figure{display:block;margin-inline-start:0;margin-inline-end:0}.quarto-layout-cell table{display:inline-table}.quarto-layout-cell-subref figcaption,figure .quarto-layout-row figure figcaption{text-align:center;font-style:italic}.quarto-figure{position:relative;margin-bottom:1em}.quarto-figure>figure{width:100%;margin-bottom:0}.quarto-figure-left>figure>p,.quarto-figure-left>figure>div{text-align:left}.quarto-figure-center>figure>p,.quarto-figure-center>figure>div{text-align:center}.quarto-figure-right>figure>p,.quarto-figure-right>figure>div{text-align:right}.quarto-figure>figure>div.cell-annotation,.quarto-figure>figure>div code{text-align:left}figure>p:empty{display:none}figure>p:first-child{margin-top:0;margin-bottom:0}figure>figcaption.quarto-float-caption-bottom{margin-bottom:.5em}figure>figcaption.quarto-float-caption-top{margin-top:.5em}div[id^=tbl-]{position:relative}.quarto-figure>.anchorjs-link{position:absolute;top:.6em;right:.5em}div[id^=tbl-]>.anchorjs-link{position:absolute;top:.7em;right:.3em}.quarto-figure:hover>.anchorjs-link,div[id^=tbl-]:hover>.anchorjs-link,h2:hover>.anchorjs-link,.h2:hover>.anchorjs-link,h3:hover>.anchorjs-link,.h3:hover>.anchorjs-link,h4:hover>.anchorjs-link,.h4:hover>.anchorjs-link,h5:hover>.anchorjs-link,.h5:hover>.anchorjs-link,h6:hover>.anchorjs-link,.h6:hover>.anchorjs-link,.reveal-anchorjs-link>.anchorjs-link{opacity:1}#title-block-header{margin-block-end:1rem;position:relative;margin-top:-1px}#title-block-header .abstract{margin-block-start:1rem}#title-block-header .abstract .abstract-title{font-weight:600}#title-block-header a{text-decoration:none}#title-block-header .author,#title-block-header .date,#title-block-header .doi{margin-block-end:.2rem}#title-block-header .quarto-title-block>div{display:flex}#title-block-header .quarto-title-block>div>h1,#title-block-header .quarto-title-block>div>.h1{flex-grow:1}#title-block-header .quarto-title-block>div>button{flex-shrink:0;height:2.25rem;margin-top:0}@media(min-width: 992px){#title-block-header .quarto-title-block>div>button{margin-top:5px}}tr.header>th>p:last-of-type{margin-bottom:0px}table,table.table{margin-top:.5rem;margin-bottom:.5rem}caption,.table-caption{padding-top:.5rem;padding-bottom:.5rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-top{margin-top:.5rem;margin-bottom:.25rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-bottom{padding-top:.25rem;margin-bottom:.5rem;text-align:center}.utterances{max-width:none;margin-left:-8px}iframe{margin-bottom:1em}details{margin-bottom:1em}details[show]{margin-bottom:0}details>summary{color:#6c757d}details>summary>p:only-child{display:inline}pre.sourceCode,code.sourceCode{position:relative}dd code:not(.sourceCode),p code:not(.sourceCode){white-space:pre-wrap}code{white-space:pre}@media print{code{white-space:pre-wrap}}pre>code{display:block}pre>code.sourceCode{white-space:pre}pre>code.sourceCode>span>a:first-child::before{text-decoration:none}pre.code-overflow-wrap>code.sourceCode{white-space:pre-wrap}pre.code-overflow-scroll>code.sourceCode{white-space:pre}code a:any-link{color:inherit;text-decoration:none}code a:hover{color:inherit;text-decoration:underline}ul.task-list{padding-left:1em}[data-tippy-root]{display:inline-block}.tippy-content .footnote-back{display:none}.footnote-back{margin-left:.2em}.tippy-content{overflow-x:auto}.quarto-embedded-source-code{display:none}.quarto-unresolved-ref{font-weight:600}.quarto-cover-image{max-width:35%;float:right;margin-left:30px}.cell-output-display .widget-subarea{margin-bottom:1em}.cell-output-display:not(.no-overflow-x),.knitsql-table:not(.no-overflow-x){overflow-x:auto}.panel-input{margin-bottom:1em}.panel-input>div,.panel-input>div>div{display:inline-block;vertical-align:top;padding-right:12px}.panel-input>p:last-child{margin-bottom:0}.layout-sidebar{margin-bottom:1em}.layout-sidebar .tab-content{border:none}.tab-content>.page-columns.active{display:grid}div.sourceCode>iframe{width:100%;height:300px;margin-bottom:-0.5em}a{text-underline-offset:3px}div.ansi-escaped-output{font-family:monospace;display:block}/*! +* +* ansi colors from IPython notebook's +* +* we also add `bright-[color]-` synonyms for the `-[color]-intense` classes since +* that seems to be what ansi_up emits +* +*/.ansi-black-fg{color:#3e424d}.ansi-black-bg{background-color:#3e424d}.ansi-black-intense-black,.ansi-bright-black-fg{color:#282c36}.ansi-black-intense-black,.ansi-bright-black-bg{background-color:#282c36}.ansi-red-fg{color:#e75c58}.ansi-red-bg{background-color:#e75c58}.ansi-red-intense-red,.ansi-bright-red-fg{color:#b22b31}.ansi-red-intense-red,.ansi-bright-red-bg{background-color:#b22b31}.ansi-green-fg{color:#00a250}.ansi-green-bg{background-color:#00a250}.ansi-green-intense-green,.ansi-bright-green-fg{color:#007427}.ansi-green-intense-green,.ansi-bright-green-bg{background-color:#007427}.ansi-yellow-fg{color:#ddb62b}.ansi-yellow-bg{background-color:#ddb62b}.ansi-yellow-intense-yellow,.ansi-bright-yellow-fg{color:#b27d12}.ansi-yellow-intense-yellow,.ansi-bright-yellow-bg{background-color:#b27d12}.ansi-blue-fg{color:#208ffb}.ansi-blue-bg{background-color:#208ffb}.ansi-blue-intense-blue,.ansi-bright-blue-fg{color:#0065ca}.ansi-blue-intense-blue,.ansi-bright-blue-bg{background-color:#0065ca}.ansi-magenta-fg{color:#d160c4}.ansi-magenta-bg{background-color:#d160c4}.ansi-magenta-intense-magenta,.ansi-bright-magenta-fg{color:#a03196}.ansi-magenta-intense-magenta,.ansi-bright-magenta-bg{background-color:#a03196}.ansi-cyan-fg{color:#60c6c8}.ansi-cyan-bg{background-color:#60c6c8}.ansi-cyan-intense-cyan,.ansi-bright-cyan-fg{color:#258f8f}.ansi-cyan-intense-cyan,.ansi-bright-cyan-bg{background-color:#258f8f}.ansi-white-fg{color:#c5c1b4}.ansi-white-bg{background-color:#c5c1b4}.ansi-white-intense-white,.ansi-bright-white-fg{color:#a1a6b2}.ansi-white-intense-white,.ansi-bright-white-bg{background-color:#a1a6b2}.ansi-default-inverse-fg{color:#fff}.ansi-default-inverse-bg{background-color:#000}.ansi-bold{font-weight:bold}.ansi-underline{text-decoration:underline}:root{--quarto-body-bg: #050725;--quarto-body-color: rgba(255, 255, 255, 0.8705882353);--quarto-text-muted: #6c757d;--quarto-border-color: #dee2e6;--quarto-border-width: 1px;--quarto-border-radius: 0.25rem}table.gt_table{color:var(--quarto-body-color);font-size:1em;width:100%;background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_column_spanner_outer{color:var(--quarto-body-color);background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_col_heading{color:var(--quarto-body-color);font-weight:bold;background-color:rgba(0,0,0,0)}table.gt_table thead.gt_col_headings{border-bottom:1px solid currentColor;border-top-width:inherit;border-top-color:var(--quarto-border-color)}table.gt_table thead.gt_col_headings:not(:first-child){border-top-width:1px;border-top-color:var(--quarto-border-color)}table.gt_table td.gt_row{border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-width:0px}table.gt_table tbody.gt_table_body{border-top-width:1px;border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-color:currentColor}div.columns{display:initial;gap:initial}div.column{display:inline-block;overflow-x:initial;vertical-align:top;width:50%}.code-annotation-tip-content{word-wrap:break-word}.code-annotation-container-hidden{display:none !important}dl.code-annotation-container-grid{display:grid;grid-template-columns:min-content auto}dl.code-annotation-container-grid dt{grid-column:1}dl.code-annotation-container-grid dd{grid-column:2}pre.sourceCode.code-annotation-code{padding-right:0}code.sourceCode .code-annotation-anchor{z-index:100;position:relative;float:right;background-color:rgba(0,0,0,0)}input[type=checkbox]{margin-right:.5ch}:root{--mermaid-bg-color: #050725;--mermaid-edge-color: #6c757d;--mermaid-node-fg-color: rgba(255, 255, 255, 0.8705882353);--mermaid-fg-color: rgba(255, 255, 255, 0.8705882353);--mermaid-fg-color--lighter: rgba(255, 255, 255, 0.8705882353);--mermaid-fg-color--lightest: rgba(255, 255, 255, 0.8705882353);--mermaid-font-family: Roboto, Helvetica Neue, sans-serif;--mermaid-label-bg-color: #050725;--mermaid-label-fg-color: #1E4287;--mermaid-node-bg-color: rgba(30, 66, 135, 0.1);--mermaid-node-fg-color: rgba(255, 255, 255, 0.8705882353)}@media print{:root{font-size:11pt}#quarto-sidebar,#TOC,.nav-page{display:none}.page-columns .content{grid-column-start:page-start}.fixed-top{position:relative}.panel-caption,.figure-caption,figcaption{color:#666}}.code-copy-button{position:absolute;top:0;right:0;border:0;margin-top:5px;margin-right:5px;background-color:rgba(0,0,0,0);z-index:3}.code-copy-button:focus{outline:none}.code-copy-button-tooltip{font-size:.75em}.code-copy-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.code-copy-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.code-copy-button-checked:hover>.bi::before{background-image:url('data:image/svg+xml,')}main ol ol,main ul ul,main ol ul,main ul ol{margin-bottom:1em}ul>li:not(:has(>p))>ul,ol>li:not(:has(>p))>ul,ul>li:not(:has(>p))>ol,ol>li:not(:has(>p))>ol{margin-bottom:0}ul>li:not(:has(>p))>ul>li:has(>p),ol>li:not(:has(>p))>ul>li:has(>p),ul>li:not(:has(>p))>ol>li:has(>p),ol>li:not(:has(>p))>ol>li:has(>p){margin-top:1rem}body{margin:0}main.page-columns>header>h1.title,main.page-columns>header>.title.h1{margin-bottom:0}@media(min-width: 992px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] 35px [page-end-inset page-end] 5fr [screen-end-inset] 1.5em}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 3em [body-end] 50px [body-end-outset] minmax(0px, 250px) [page-end-inset] minmax(50px, 100px) [page-end] 1fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 150px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 991.98px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(1250px - 3em)) [body-content-end body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 767.98px){body .page-columns,body.fullcontent:not(.floating):not(.docked) .page-columns,body.slimcontent:not(.floating):not(.docked) .page-columns,body.docked .page-columns,body.docked.slimcontent .page-columns,body.docked.fullcontent .page-columns,body.floating .page-columns,body.floating.slimcontent .page-columns,body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}nav[role=doc-toc]{display:none}}body,.page-row-navigation{grid-template-rows:[page-top] max-content [contents-top] max-content [contents-bottom] max-content [page-bottom]}.page-rows-contents{grid-template-rows:[content-top] minmax(max-content, 1fr) [content-bottom] minmax(60px, max-content) [page-bottom]}.page-full{grid-column:screen-start/screen-end !important}.page-columns>*{grid-column:body-content-start/body-content-end}.page-columns.column-page>*{grid-column:page-start/page-end}.page-columns.column-page-left .page-columns.page-full>*,.page-columns.column-page-left>*{grid-column:page-start/body-content-end}.page-columns.column-page-right .page-columns.page-full>*,.page-columns.column-page-right>*{grid-column:body-content-start/page-end}.page-rows{grid-auto-rows:auto}.header{grid-column:screen-start/screen-end;grid-row:page-top/contents-top}#quarto-content{padding:0;grid-column:screen-start/screen-end;grid-row:contents-top/contents-bottom}body.floating .sidebar.sidebar-navigation{grid-column:page-start/body-start;grid-row:content-top/page-bottom}body.docked .sidebar.sidebar-navigation{grid-column:screen-start/body-start;grid-row:content-top/page-bottom}.sidebar.toc-left{grid-column:page-start/body-start;grid-row:content-top/page-bottom}.sidebar.margin-sidebar{grid-column:body-end/page-end;grid-row:content-top/page-bottom}.page-columns .content{grid-column:body-content-start/body-content-end;grid-row:content-top/content-bottom;align-content:flex-start}.page-columns .page-navigation{grid-column:body-content-start/body-content-end;grid-row:content-bottom/page-bottom}.page-columns .footer{grid-column:screen-start/screen-end;grid-row:contents-bottom/page-bottom}.page-columns .column-body{grid-column:body-content-start/body-content-end}.page-columns .column-body-fullbleed{grid-column:body-start/body-end}.page-columns .column-body-outset{grid-column:body-start-outset/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset table{background:#050725}.page-columns .column-body-outset-left{grid-column:body-start-outset/body-content-end;z-index:998;opacity:.999}.page-columns .column-body-outset-left table{background:#050725}.page-columns .column-body-outset-right{grid-column:body-content-start/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset-right table{background:#050725}.page-columns .column-page{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-page table{background:#050725}.page-columns .column-page-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset table{background:#050725}.page-columns .column-page-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-inset-left table{background:#050725}.page-columns .column-page-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset-right figcaption table{background:#050725}.page-columns .column-page-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-left table{background:#050725}.page-columns .column-page-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-page-right figcaption table{background:#050725}#quarto-content.page-columns #quarto-margin-sidebar,#quarto-content.page-columns #quarto-sidebar{z-index:1}@media(max-width: 991.98px){#quarto-content.page-columns #quarto-margin-sidebar.collapse,#quarto-content.page-columns #quarto-sidebar.collapse,#quarto-content.page-columns #quarto-margin-sidebar.collapsing,#quarto-content.page-columns #quarto-sidebar.collapsing{z-index:1055}}#quarto-content.page-columns main.column-page,#quarto-content.page-columns main.column-page-right,#quarto-content.page-columns main.column-page-left{z-index:0}.page-columns .column-screen-inset{grid-column:screen-start-inset/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#050725}.page-columns .column-screen-inset-left{grid-column:screen-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#050725}.page-columns .column-screen-inset-right{grid-column:body-content-start/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#050725}.page-columns .column-screen{grid-column:screen-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#050725}.page-columns .column-screen-left{grid-column:screen-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#050725}.page-columns .column-screen-right{grid-column:body-content-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#050725}.page-columns .column-screen-inset-shaded{grid-column:screen-start/screen-end;padding:1em;background:#f8f9fa;z-index:998;opacity:.999;margin-bottom:1em}.zindex-content{z-index:998;opacity:.999}.zindex-modal{z-index:1055;opacity:.999}.zindex-over-content{z-index:999;opacity:.999}img.img-fluid.column-screen,img.img-fluid.column-screen-inset-shaded,img.img-fluid.column-screen-inset,img.img-fluid.column-screen-inset-left,img.img-fluid.column-screen-inset-right,img.img-fluid.column-screen-left,img.img-fluid.column-screen-right{width:100%}@media(min-width: 992px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.column-sidebar{grid-column:page-start/body-start !important;z-index:998}.column-leftmargin{grid-column:screen-start-inset/body-start !important;z-index:998}.no-row-height{height:1em;overflow:visible}}@media(max-width: 991.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.no-row-height{height:1em;overflow:visible}.page-columns.page-full{overflow:visible}.page-columns.toc-left .margin-caption,.page-columns.toc-left div.aside,.page-columns.toc-left aside:not(.footnotes):not(.sidebar),.page-columns.toc-left .column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.page-columns.toc-left .no-row-height{height:initial;overflow:initial}}@media(max-width: 767.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.no-row-height{height:initial;overflow:initial}#quarto-margin-sidebar{display:none}#quarto-sidebar-toc-left{display:none}.hidden-sm{display:none}}.panel-grid{display:grid;grid-template-rows:repeat(1, 1fr);grid-template-columns:repeat(24, 1fr);gap:1em}.panel-grid .g-col-1{grid-column:auto/span 1}.panel-grid .g-col-2{grid-column:auto/span 2}.panel-grid .g-col-3{grid-column:auto/span 3}.panel-grid .g-col-4{grid-column:auto/span 4}.panel-grid .g-col-5{grid-column:auto/span 5}.panel-grid .g-col-6{grid-column:auto/span 6}.panel-grid .g-col-7{grid-column:auto/span 7}.panel-grid .g-col-8{grid-column:auto/span 8}.panel-grid .g-col-9{grid-column:auto/span 9}.panel-grid .g-col-10{grid-column:auto/span 10}.panel-grid .g-col-11{grid-column:auto/span 11}.panel-grid .g-col-12{grid-column:auto/span 12}.panel-grid .g-col-13{grid-column:auto/span 13}.panel-grid .g-col-14{grid-column:auto/span 14}.panel-grid .g-col-15{grid-column:auto/span 15}.panel-grid .g-col-16{grid-column:auto/span 16}.panel-grid .g-col-17{grid-column:auto/span 17}.panel-grid .g-col-18{grid-column:auto/span 18}.panel-grid .g-col-19{grid-column:auto/span 19}.panel-grid .g-col-20{grid-column:auto/span 20}.panel-grid .g-col-21{grid-column:auto/span 21}.panel-grid .g-col-22{grid-column:auto/span 22}.panel-grid .g-col-23{grid-column:auto/span 23}.panel-grid .g-col-24{grid-column:auto/span 24}.panel-grid .g-start-1{grid-column-start:1}.panel-grid .g-start-2{grid-column-start:2}.panel-grid .g-start-3{grid-column-start:3}.panel-grid .g-start-4{grid-column-start:4}.panel-grid .g-start-5{grid-column-start:5}.panel-grid .g-start-6{grid-column-start:6}.panel-grid .g-start-7{grid-column-start:7}.panel-grid .g-start-8{grid-column-start:8}.panel-grid .g-start-9{grid-column-start:9}.panel-grid .g-start-10{grid-column-start:10}.panel-grid .g-start-11{grid-column-start:11}.panel-grid .g-start-12{grid-column-start:12}.panel-grid .g-start-13{grid-column-start:13}.panel-grid .g-start-14{grid-column-start:14}.panel-grid .g-start-15{grid-column-start:15}.panel-grid .g-start-16{grid-column-start:16}.panel-grid .g-start-17{grid-column-start:17}.panel-grid .g-start-18{grid-column-start:18}.panel-grid .g-start-19{grid-column-start:19}.panel-grid .g-start-20{grid-column-start:20}.panel-grid .g-start-21{grid-column-start:21}.panel-grid .g-start-22{grid-column-start:22}.panel-grid .g-start-23{grid-column-start:23}@media(min-width: 576px){.panel-grid .g-col-sm-1{grid-column:auto/span 1}.panel-grid .g-col-sm-2{grid-column:auto/span 2}.panel-grid .g-col-sm-3{grid-column:auto/span 3}.panel-grid .g-col-sm-4{grid-column:auto/span 4}.panel-grid .g-col-sm-5{grid-column:auto/span 5}.panel-grid .g-col-sm-6{grid-column:auto/span 6}.panel-grid .g-col-sm-7{grid-column:auto/span 7}.panel-grid .g-col-sm-8{grid-column:auto/span 8}.panel-grid .g-col-sm-9{grid-column:auto/span 9}.panel-grid .g-col-sm-10{grid-column:auto/span 10}.panel-grid .g-col-sm-11{grid-column:auto/span 11}.panel-grid .g-col-sm-12{grid-column:auto/span 12}.panel-grid .g-col-sm-13{grid-column:auto/span 13}.panel-grid .g-col-sm-14{grid-column:auto/span 14}.panel-grid .g-col-sm-15{grid-column:auto/span 15}.panel-grid .g-col-sm-16{grid-column:auto/span 16}.panel-grid .g-col-sm-17{grid-column:auto/span 17}.panel-grid .g-col-sm-18{grid-column:auto/span 18}.panel-grid .g-col-sm-19{grid-column:auto/span 19}.panel-grid .g-col-sm-20{grid-column:auto/span 20}.panel-grid .g-col-sm-21{grid-column:auto/span 21}.panel-grid .g-col-sm-22{grid-column:auto/span 22}.panel-grid .g-col-sm-23{grid-column:auto/span 23}.panel-grid .g-col-sm-24{grid-column:auto/span 24}.panel-grid .g-start-sm-1{grid-column-start:1}.panel-grid .g-start-sm-2{grid-column-start:2}.panel-grid .g-start-sm-3{grid-column-start:3}.panel-grid .g-start-sm-4{grid-column-start:4}.panel-grid .g-start-sm-5{grid-column-start:5}.panel-grid .g-start-sm-6{grid-column-start:6}.panel-grid .g-start-sm-7{grid-column-start:7}.panel-grid .g-start-sm-8{grid-column-start:8}.panel-grid .g-start-sm-9{grid-column-start:9}.panel-grid .g-start-sm-10{grid-column-start:10}.panel-grid .g-start-sm-11{grid-column-start:11}.panel-grid .g-start-sm-12{grid-column-start:12}.panel-grid .g-start-sm-13{grid-column-start:13}.panel-grid .g-start-sm-14{grid-column-start:14}.panel-grid .g-start-sm-15{grid-column-start:15}.panel-grid .g-start-sm-16{grid-column-start:16}.panel-grid .g-start-sm-17{grid-column-start:17}.panel-grid .g-start-sm-18{grid-column-start:18}.panel-grid .g-start-sm-19{grid-column-start:19}.panel-grid .g-start-sm-20{grid-column-start:20}.panel-grid .g-start-sm-21{grid-column-start:21}.panel-grid .g-start-sm-22{grid-column-start:22}.panel-grid .g-start-sm-23{grid-column-start:23}}@media(min-width: 768px){.panel-grid .g-col-md-1{grid-column:auto/span 1}.panel-grid .g-col-md-2{grid-column:auto/span 2}.panel-grid .g-col-md-3{grid-column:auto/span 3}.panel-grid .g-col-md-4{grid-column:auto/span 4}.panel-grid .g-col-md-5{grid-column:auto/span 5}.panel-grid .g-col-md-6{grid-column:auto/span 6}.panel-grid .g-col-md-7{grid-column:auto/span 7}.panel-grid .g-col-md-8{grid-column:auto/span 8}.panel-grid .g-col-md-9{grid-column:auto/span 9}.panel-grid .g-col-md-10{grid-column:auto/span 10}.panel-grid .g-col-md-11{grid-column:auto/span 11}.panel-grid .g-col-md-12{grid-column:auto/span 12}.panel-grid .g-col-md-13{grid-column:auto/span 13}.panel-grid .g-col-md-14{grid-column:auto/span 14}.panel-grid .g-col-md-15{grid-column:auto/span 15}.panel-grid .g-col-md-16{grid-column:auto/span 16}.panel-grid .g-col-md-17{grid-column:auto/span 17}.panel-grid .g-col-md-18{grid-column:auto/span 18}.panel-grid .g-col-md-19{grid-column:auto/span 19}.panel-grid .g-col-md-20{grid-column:auto/span 20}.panel-grid .g-col-md-21{grid-column:auto/span 21}.panel-grid .g-col-md-22{grid-column:auto/span 22}.panel-grid .g-col-md-23{grid-column:auto/span 23}.panel-grid .g-col-md-24{grid-column:auto/span 24}.panel-grid .g-start-md-1{grid-column-start:1}.panel-grid .g-start-md-2{grid-column-start:2}.panel-grid .g-start-md-3{grid-column-start:3}.panel-grid .g-start-md-4{grid-column-start:4}.panel-grid .g-start-md-5{grid-column-start:5}.panel-grid .g-start-md-6{grid-column-start:6}.panel-grid .g-start-md-7{grid-column-start:7}.panel-grid .g-start-md-8{grid-column-start:8}.panel-grid .g-start-md-9{grid-column-start:9}.panel-grid .g-start-md-10{grid-column-start:10}.panel-grid .g-start-md-11{grid-column-start:11}.panel-grid .g-start-md-12{grid-column-start:12}.panel-grid .g-start-md-13{grid-column-start:13}.panel-grid .g-start-md-14{grid-column-start:14}.panel-grid .g-start-md-15{grid-column-start:15}.panel-grid .g-start-md-16{grid-column-start:16}.panel-grid .g-start-md-17{grid-column-start:17}.panel-grid .g-start-md-18{grid-column-start:18}.panel-grid .g-start-md-19{grid-column-start:19}.panel-grid .g-start-md-20{grid-column-start:20}.panel-grid .g-start-md-21{grid-column-start:21}.panel-grid .g-start-md-22{grid-column-start:22}.panel-grid .g-start-md-23{grid-column-start:23}}@media(min-width: 992px){.panel-grid .g-col-lg-1{grid-column:auto/span 1}.panel-grid .g-col-lg-2{grid-column:auto/span 2}.panel-grid .g-col-lg-3{grid-column:auto/span 3}.panel-grid .g-col-lg-4{grid-column:auto/span 4}.panel-grid .g-col-lg-5{grid-column:auto/span 5}.panel-grid .g-col-lg-6{grid-column:auto/span 6}.panel-grid .g-col-lg-7{grid-column:auto/span 7}.panel-grid .g-col-lg-8{grid-column:auto/span 8}.panel-grid .g-col-lg-9{grid-column:auto/span 9}.panel-grid .g-col-lg-10{grid-column:auto/span 10}.panel-grid .g-col-lg-11{grid-column:auto/span 11}.panel-grid .g-col-lg-12{grid-column:auto/span 12}.panel-grid .g-col-lg-13{grid-column:auto/span 13}.panel-grid .g-col-lg-14{grid-column:auto/span 14}.panel-grid .g-col-lg-15{grid-column:auto/span 15}.panel-grid .g-col-lg-16{grid-column:auto/span 16}.panel-grid .g-col-lg-17{grid-column:auto/span 17}.panel-grid .g-col-lg-18{grid-column:auto/span 18}.panel-grid .g-col-lg-19{grid-column:auto/span 19}.panel-grid .g-col-lg-20{grid-column:auto/span 20}.panel-grid .g-col-lg-21{grid-column:auto/span 21}.panel-grid .g-col-lg-22{grid-column:auto/span 22}.panel-grid .g-col-lg-23{grid-column:auto/span 23}.panel-grid .g-col-lg-24{grid-column:auto/span 24}.panel-grid .g-start-lg-1{grid-column-start:1}.panel-grid .g-start-lg-2{grid-column-start:2}.panel-grid .g-start-lg-3{grid-column-start:3}.panel-grid .g-start-lg-4{grid-column-start:4}.panel-grid .g-start-lg-5{grid-column-start:5}.panel-grid .g-start-lg-6{grid-column-start:6}.panel-grid .g-start-lg-7{grid-column-start:7}.panel-grid .g-start-lg-8{grid-column-start:8}.panel-grid .g-start-lg-9{grid-column-start:9}.panel-grid .g-start-lg-10{grid-column-start:10}.panel-grid .g-start-lg-11{grid-column-start:11}.panel-grid .g-start-lg-12{grid-column-start:12}.panel-grid .g-start-lg-13{grid-column-start:13}.panel-grid .g-start-lg-14{grid-column-start:14}.panel-grid .g-start-lg-15{grid-column-start:15}.panel-grid .g-start-lg-16{grid-column-start:16}.panel-grid .g-start-lg-17{grid-column-start:17}.panel-grid .g-start-lg-18{grid-column-start:18}.panel-grid .g-start-lg-19{grid-column-start:19}.panel-grid .g-start-lg-20{grid-column-start:20}.panel-grid .g-start-lg-21{grid-column-start:21}.panel-grid .g-start-lg-22{grid-column-start:22}.panel-grid .g-start-lg-23{grid-column-start:23}}@media(min-width: 1200px){.panel-grid .g-col-xl-1{grid-column:auto/span 1}.panel-grid .g-col-xl-2{grid-column:auto/span 2}.panel-grid .g-col-xl-3{grid-column:auto/span 3}.panel-grid .g-col-xl-4{grid-column:auto/span 4}.panel-grid .g-col-xl-5{grid-column:auto/span 5}.panel-grid .g-col-xl-6{grid-column:auto/span 6}.panel-grid .g-col-xl-7{grid-column:auto/span 7}.panel-grid .g-col-xl-8{grid-column:auto/span 8}.panel-grid .g-col-xl-9{grid-column:auto/span 9}.panel-grid .g-col-xl-10{grid-column:auto/span 10}.panel-grid .g-col-xl-11{grid-column:auto/span 11}.panel-grid .g-col-xl-12{grid-column:auto/span 12}.panel-grid .g-col-xl-13{grid-column:auto/span 13}.panel-grid .g-col-xl-14{grid-column:auto/span 14}.panel-grid .g-col-xl-15{grid-column:auto/span 15}.panel-grid .g-col-xl-16{grid-column:auto/span 16}.panel-grid .g-col-xl-17{grid-column:auto/span 17}.panel-grid .g-col-xl-18{grid-column:auto/span 18}.panel-grid .g-col-xl-19{grid-column:auto/span 19}.panel-grid .g-col-xl-20{grid-column:auto/span 20}.panel-grid .g-col-xl-21{grid-column:auto/span 21}.panel-grid .g-col-xl-22{grid-column:auto/span 22}.panel-grid .g-col-xl-23{grid-column:auto/span 23}.panel-grid .g-col-xl-24{grid-column:auto/span 24}.panel-grid .g-start-xl-1{grid-column-start:1}.panel-grid .g-start-xl-2{grid-column-start:2}.panel-grid .g-start-xl-3{grid-column-start:3}.panel-grid .g-start-xl-4{grid-column-start:4}.panel-grid .g-start-xl-5{grid-column-start:5}.panel-grid .g-start-xl-6{grid-column-start:6}.panel-grid .g-start-xl-7{grid-column-start:7}.panel-grid .g-start-xl-8{grid-column-start:8}.panel-grid .g-start-xl-9{grid-column-start:9}.panel-grid .g-start-xl-10{grid-column-start:10}.panel-grid .g-start-xl-11{grid-column-start:11}.panel-grid .g-start-xl-12{grid-column-start:12}.panel-grid .g-start-xl-13{grid-column-start:13}.panel-grid .g-start-xl-14{grid-column-start:14}.panel-grid .g-start-xl-15{grid-column-start:15}.panel-grid .g-start-xl-16{grid-column-start:16}.panel-grid .g-start-xl-17{grid-column-start:17}.panel-grid .g-start-xl-18{grid-column-start:18}.panel-grid .g-start-xl-19{grid-column-start:19}.panel-grid .g-start-xl-20{grid-column-start:20}.panel-grid .g-start-xl-21{grid-column-start:21}.panel-grid .g-start-xl-22{grid-column-start:22}.panel-grid .g-start-xl-23{grid-column-start:23}}@media(min-width: 1400px){.panel-grid .g-col-xxl-1{grid-column:auto/span 1}.panel-grid .g-col-xxl-2{grid-column:auto/span 2}.panel-grid .g-col-xxl-3{grid-column:auto/span 3}.panel-grid .g-col-xxl-4{grid-column:auto/span 4}.panel-grid .g-col-xxl-5{grid-column:auto/span 5}.panel-grid .g-col-xxl-6{grid-column:auto/span 6}.panel-grid .g-col-xxl-7{grid-column:auto/span 7}.panel-grid .g-col-xxl-8{grid-column:auto/span 8}.panel-grid .g-col-xxl-9{grid-column:auto/span 9}.panel-grid .g-col-xxl-10{grid-column:auto/span 10}.panel-grid .g-col-xxl-11{grid-column:auto/span 11}.panel-grid .g-col-xxl-12{grid-column:auto/span 12}.panel-grid .g-col-xxl-13{grid-column:auto/span 13}.panel-grid .g-col-xxl-14{grid-column:auto/span 14}.panel-grid .g-col-xxl-15{grid-column:auto/span 15}.panel-grid .g-col-xxl-16{grid-column:auto/span 16}.panel-grid .g-col-xxl-17{grid-column:auto/span 17}.panel-grid .g-col-xxl-18{grid-column:auto/span 18}.panel-grid .g-col-xxl-19{grid-column:auto/span 19}.panel-grid .g-col-xxl-20{grid-column:auto/span 20}.panel-grid .g-col-xxl-21{grid-column:auto/span 21}.panel-grid .g-col-xxl-22{grid-column:auto/span 22}.panel-grid .g-col-xxl-23{grid-column:auto/span 23}.panel-grid .g-col-xxl-24{grid-column:auto/span 24}.panel-grid .g-start-xxl-1{grid-column-start:1}.panel-grid .g-start-xxl-2{grid-column-start:2}.panel-grid .g-start-xxl-3{grid-column-start:3}.panel-grid .g-start-xxl-4{grid-column-start:4}.panel-grid .g-start-xxl-5{grid-column-start:5}.panel-grid .g-start-xxl-6{grid-column-start:6}.panel-grid .g-start-xxl-7{grid-column-start:7}.panel-grid .g-start-xxl-8{grid-column-start:8}.panel-grid .g-start-xxl-9{grid-column-start:9}.panel-grid .g-start-xxl-10{grid-column-start:10}.panel-grid .g-start-xxl-11{grid-column-start:11}.panel-grid .g-start-xxl-12{grid-column-start:12}.panel-grid .g-start-xxl-13{grid-column-start:13}.panel-grid .g-start-xxl-14{grid-column-start:14}.panel-grid .g-start-xxl-15{grid-column-start:15}.panel-grid .g-start-xxl-16{grid-column-start:16}.panel-grid .g-start-xxl-17{grid-column-start:17}.panel-grid .g-start-xxl-18{grid-column-start:18}.panel-grid .g-start-xxl-19{grid-column-start:19}.panel-grid .g-start-xxl-20{grid-column-start:20}.panel-grid .g-start-xxl-21{grid-column-start:21}.panel-grid .g-start-xxl-22{grid-column-start:22}.panel-grid .g-start-xxl-23{grid-column-start:23}}main{margin-top:1em;margin-bottom:1em}h1,.h1,h2,.h2{color:inherit;margin-top:2rem;margin-bottom:1rem;font-weight:600}h1.title,.title.h1{margin-top:0}main.content>section:first-of-type>h2:first-child,main.content>section:first-of-type>.h2:first-child{margin-top:0}h2,.h2{border-bottom:1px solid #dee2e6;padding-bottom:.5rem}h3,.h3{font-weight:600}h3,.h3,h4,.h4{opacity:.9;margin-top:1.5rem}h5,.h5,h6,.h6{opacity:.9}.header-section-number{color:rgba(191,191,191,.8705882353)}.nav-link.active .header-section-number{color:inherit}mark,.mark{padding:0em}.panel-caption,.figure-caption,.subfigure-caption,.table-caption,figcaption,caption{font-size:.9rem;color:rgba(191,191,191,.8705882353)}.quarto-layout-cell[data-ref-parent] caption{color:rgba(191,191,191,.8705882353)}.column-margin figcaption,.margin-caption,div.aside,aside,.column-margin{color:rgba(191,191,191,.8705882353);font-size:.825rem}.panel-caption.margin-caption{text-align:inherit}.column-margin.column-container p{margin-bottom:0}.column-margin.column-container>*:not(.collapse):first-child{padding-bottom:.5em;display:block}.column-margin.column-container>*:not(.collapse):not(:first-child){padding-top:.5em;padding-bottom:.5em;display:block}.column-margin.column-container>*.collapse:not(.show){display:none}@media(min-width: 768px){.column-margin.column-container .callout-margin-content:first-child{margin-top:4.5em}.column-margin.column-container .callout-margin-content-simple:first-child{margin-top:3.5em}}.margin-caption>*{padding-top:.5em;padding-bottom:.5em}@media(max-width: 767.98px){.quarto-layout-row{flex-direction:column}}.nav-tabs .nav-item{margin-top:1px;cursor:pointer}.tab-content{margin-top:0px;border-left:#dee2e6 1px solid;border-right:#dee2e6 1px solid;border-bottom:#dee2e6 1px solid;margin-left:0;padding:1em;margin-bottom:1em}@media(max-width: 767.98px){.layout-sidebar{margin-left:0;margin-right:0}}.panel-sidebar,.panel-sidebar .form-control,.panel-input,.panel-input .form-control,.selectize-dropdown{font-size:.9rem}.panel-sidebar .form-control,.panel-input .form-control{padding-top:.1rem}.tab-pane div.sourceCode{margin-top:0px}.tab-pane>p{padding-top:0}.tab-pane>p:nth-child(1){padding-top:0}.tab-pane>p:last-child{margin-bottom:0}.tab-pane>pre:last-child{margin-bottom:0}.tab-content>.tab-pane:not(.active){display:none !important}div.sourceCode{background-color:rgba(233,236,239,.1);border:1px solid rgba(233,236,239,.1);border-radius:.25rem}pre.sourceCode{background-color:rgba(0,0,0,0)}pre.sourceCode{border:none;font-size:.875em;overflow:visible !important;padding:.4em}.callout pre.sourceCode{padding-left:0}div.sourceCode{overflow-y:hidden}.callout div.sourceCode{margin-left:initial}.blockquote{font-size:inherit;padding-left:1rem;padding-right:1.5rem;color:rgba(191,191,191,.8705882353)}.blockquote h1:first-child,.blockquote .h1:first-child,.blockquote h2:first-child,.blockquote .h2:first-child,.blockquote h3:first-child,.blockquote .h3:first-child,.blockquote h4:first-child,.blockquote .h4:first-child,.blockquote h5:first-child,.blockquote .h5:first-child{margin-top:0}pre{background-color:initial;padding:initial;border:initial}p pre code:not(.sourceCode),li pre code:not(.sourceCode),pre code:not(.sourceCode){background-color:initial}p code:not(.sourceCode),li code:not(.sourceCode),td code:not(.sourceCode){background-color:#f8f9fa;padding:.2em}nav p code:not(.sourceCode),nav li code:not(.sourceCode),nav td code:not(.sourceCode){background-color:rgba(0,0,0,0);padding:0}td code:not(.sourceCode){white-space:pre-wrap}#quarto-embedded-source-code-modal>.modal-dialog{max-width:1000px;padding-left:1.75rem;padding-right:1.75rem}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body{padding:0}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body div.sourceCode{margin:0;padding:.2rem .2rem;border-radius:0px;border:none}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-header{padding:.7rem}.code-tools-button{font-size:1rem;padding:.15rem .15rem;margin-left:5px;color:#6c757d;background-color:rgba(0,0,0,0);transition:initial;cursor:pointer}.code-tools-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.sidebar{will-change:top;transition:top 200ms linear;position:sticky;overflow-y:auto;padding-top:1.2em;max-height:100vh}.sidebar.toc-left,.sidebar.margin-sidebar{top:0px;padding-top:1em}.sidebar.quarto-banner-title-block-sidebar>*{padding-top:1.65em}figure .quarto-notebook-link{margin-top:.5em}.quarto-notebook-link{font-size:.75em;color:#6c757d;margin-bottom:1em;text-decoration:none;display:block}.quarto-notebook-link:hover{text-decoration:underline;color:#75aadb}.quarto-notebook-link::before{display:inline-block;height:.75rem;width:.75rem;margin-bottom:0em;margin-right:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:.75rem .75rem}.toc-actions i.bi,.quarto-code-links i.bi,.quarto-other-links i.bi,.quarto-alternate-notebooks i.bi,.quarto-alternate-formats i.bi{margin-right:.4em;font-size:.8rem}.quarto-other-links-text-target .quarto-code-links i.bi,.quarto-other-links-text-target .quarto-other-links i.bi{margin-right:.2em}.quarto-other-formats-text-target .quarto-alternate-formats i.bi{margin-right:.1em}.toc-actions i.bi.empty,.quarto-code-links i.bi.empty,.quarto-other-links i.bi.empty,.quarto-alternate-notebooks i.bi.empty,.quarto-alternate-formats i.bi.empty{padding-left:1em}.quarto-notebook h2,.quarto-notebook .h2{border-bottom:none}.quarto-notebook .cell-container{display:flex}.quarto-notebook .cell-container .cell{flex-grow:4}.quarto-notebook .cell-container .cell-decorator{padding-top:1.5em;padding-right:1em;text-align:right}.quarto-notebook .cell-container.code-fold .cell-decorator{padding-top:3em}.quarto-notebook .cell-code code{white-space:pre-wrap}.quarto-notebook .cell .cell-output-stderr pre code,.quarto-notebook .cell .cell-output-stdout pre code{white-space:pre-wrap;overflow-wrap:anywhere}.toc-actions,.quarto-alternate-formats,.quarto-other-links,.quarto-code-links,.quarto-alternate-notebooks{padding-left:0em}.sidebar .toc-actions a,.sidebar .quarto-alternate-formats a,.sidebar .quarto-other-links a,.sidebar .quarto-code-links a,.sidebar .quarto-alternate-notebooks a,.sidebar nav[role=doc-toc] a{text-decoration:none}.sidebar .toc-actions a:hover,.sidebar .quarto-other-links a:hover,.sidebar .quarto-code-links a:hover,.sidebar .quarto-alternate-formats a:hover,.sidebar .quarto-alternate-notebooks a:hover{color:#75aadb}.sidebar .toc-actions h2,.sidebar .toc-actions .h2,.sidebar .quarto-code-links h2,.sidebar .quarto-code-links .h2,.sidebar .quarto-other-links h2,.sidebar .quarto-other-links .h2,.sidebar .quarto-alternate-notebooks h2,.sidebar .quarto-alternate-notebooks .h2,.sidebar .quarto-alternate-formats h2,.sidebar .quarto-alternate-formats .h2,.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-weight:500;margin-bottom:.2rem;margin-top:.3rem;font-family:inherit;border-bottom:0;padding-bottom:0;padding-top:0px}.sidebar .toc-actions>h2,.sidebar .toc-actions>.h2,.sidebar .quarto-code-links>h2,.sidebar .quarto-code-links>.h2,.sidebar .quarto-other-links>h2,.sidebar .quarto-other-links>.h2,.sidebar .quarto-alternate-notebooks>h2,.sidebar .quarto-alternate-notebooks>.h2,.sidebar .quarto-alternate-formats>h2,.sidebar .quarto-alternate-formats>.h2{font-size:.8rem}.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-size:.875rem}.sidebar nav[role=doc-toc]>ul a{border-left:1px solid #e9ecef;padding-left:.6rem}.sidebar .toc-actions h2>ul a,.sidebar .toc-actions .h2>ul a,.sidebar .quarto-code-links h2>ul a,.sidebar .quarto-code-links .h2>ul a,.sidebar .quarto-other-links h2>ul a,.sidebar .quarto-other-links .h2>ul a,.sidebar .quarto-alternate-notebooks h2>ul a,.sidebar .quarto-alternate-notebooks .h2>ul a,.sidebar .quarto-alternate-formats h2>ul a,.sidebar .quarto-alternate-formats .h2>ul a{border-left:none;padding-left:.6rem}.sidebar .toc-actions ul a:empty,.sidebar .quarto-code-links ul a:empty,.sidebar .quarto-other-links ul a:empty,.sidebar .quarto-alternate-notebooks ul a:empty,.sidebar .quarto-alternate-formats ul a:empty,.sidebar nav[role=doc-toc]>ul a:empty{display:none}.sidebar .toc-actions ul,.sidebar .quarto-code-links ul,.sidebar .quarto-other-links ul,.sidebar .quarto-alternate-notebooks ul,.sidebar .quarto-alternate-formats ul{padding-left:0;list-style:none}.sidebar nav[role=doc-toc] ul{list-style:none;padding-left:0;list-style:none}.sidebar nav[role=doc-toc]>ul{margin-left:.45em}.quarto-margin-sidebar nav[role=doc-toc]{padding-left:.5em}.sidebar .toc-actions>ul,.sidebar .quarto-code-links>ul,.sidebar .quarto-other-links>ul,.sidebar .quarto-alternate-notebooks>ul,.sidebar .quarto-alternate-formats>ul{font-size:.8rem}.sidebar nav[role=doc-toc]>ul{font-size:.875rem}.sidebar .toc-actions ul li a,.sidebar .quarto-code-links ul li a,.sidebar .quarto-other-links ul li a,.sidebar .quarto-alternate-notebooks ul li a,.sidebar .quarto-alternate-formats ul li a,.sidebar nav[role=doc-toc]>ul li a{line-height:1.1rem;padding-bottom:.2rem;padding-top:.2rem;color:inherit}.sidebar nav[role=doc-toc] ul>li>ul>li>a{padding-left:1.2em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>a{padding-left:2.4em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>a{padding-left:3.6em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:4.8em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:6em}.sidebar nav[role=doc-toc] ul>li>a.active,.sidebar nav[role=doc-toc] ul>li>ul>li>a.active{border-left:1px solid #75aadb;color:#75aadb !important}.sidebar nav[role=doc-toc] ul>li>a:hover,.sidebar nav[role=doc-toc] ul>li>ul>li>a:hover{color:#75aadb !important}kbd,.kbd{color:rgba(255,255,255,.8705882353);background-color:#f8f9fa;border:1px solid;border-radius:5px;border-color:#dee2e6}.quarto-appendix-contents div.hanging-indent{margin-left:0em}.quarto-appendix-contents div.hanging-indent div.csl-entry{margin-left:1em;text-indent:-1em}.citation a,.footnote-ref{text-decoration:none}.footnotes ol{padding-left:1em}.tippy-content>*{margin-bottom:.7em}.tippy-content>*:last-child{margin-bottom:0}.callout{margin-top:1.25rem;margin-bottom:1.25rem;border-radius:.25rem;overflow-wrap:break-word}.callout .callout-title-container{overflow-wrap:anywhere}.callout.callout-style-simple{padding:.4em .7em;border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout.callout-style-default{border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout .callout-body-container{flex-grow:1}.callout.callout-style-simple .callout-body{font-size:.9rem;font-weight:400}.callout.callout-style-default .callout-body{font-size:.9rem;font-weight:400}.callout:not(.no-icon).callout-titled.callout-style-simple .callout-body{padding-left:1.6em}.callout.callout-titled>.callout-header{padding-top:.2em;margin-bottom:-0.2em}.callout.callout-style-simple>div.callout-header{border-bottom:none;font-size:.9rem;font-weight:600;opacity:75%}.callout.callout-style-default>div.callout-header{border-bottom:none;font-weight:600;opacity:85%;font-size:.9rem;padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body{padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body>:first-child{padding-top:.5rem;margin-top:0}.callout>div.callout-header[data-bs-toggle=collapse]{cursor:pointer}.callout.callout-style-default .callout-header[aria-expanded=false],.callout.callout-style-default .callout-header[aria-expanded=true]{padding-top:0px;margin-bottom:0px;align-items:center}.callout.callout-titled .callout-body>:last-child:not(.sourceCode),.callout.callout-titled .callout-body>div>:last-child:not(.sourceCode){padding-bottom:.5rem;margin-bottom:0}.callout:not(.callout-titled) .callout-body>:first-child,.callout:not(.callout-titled) .callout-body>div>:first-child{margin-top:.25rem}.callout:not(.callout-titled) .callout-body>:last-child,.callout:not(.callout-titled) .callout-body>div>:last-child{margin-bottom:.2rem}.callout.callout-style-simple .callout-icon::before,.callout.callout-style-simple .callout-toggle::before{height:1rem;width:1rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.callout.callout-style-default .callout-icon::before,.callout.callout-style-default .callout-toggle::before{height:.9rem;width:.9rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:.9rem .9rem}.callout.callout-style-default .callout-toggle::before{margin-top:5px}.callout .callout-btn-toggle .callout-toggle::before{transition:transform .2s linear}.callout .callout-header[aria-expanded=false] .callout-toggle::before{transform:rotate(-90deg)}.callout .callout-header[aria-expanded=true] .callout-toggle::before{transform:none}.callout.callout-style-simple:not(.no-icon) div.callout-icon-container{padding-top:.2em;padding-right:.55em}.callout.callout-style-default:not(.no-icon) div.callout-icon-container{padding-top:.1em;padding-right:.35em}.callout.callout-style-default:not(.no-icon) div.callout-title-container{margin-top:-1px}.callout.callout-style-default.callout-caution:not(.no-icon) div.callout-icon-container{padding-top:.3em;padding-right:.35em}.callout>.callout-body>.callout-icon-container>.no-icon,.callout>.callout-header>.callout-icon-container>.no-icon{display:none}div.callout.callout{border-left-color:#6c757d}div.callout.callout-style-default>.callout-header{background-color:#6c757d}div.callout-note.callout{border-left-color:#0d6efd}div.callout-note.callout-style-default>.callout-header{background-color:#04214c}div.callout-note:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-tip.callout{border-left-color:#198754}div.callout-tip.callout-style-default>.callout-header{background-color:#082919}div.callout-tip:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-warning.callout{border-left-color:#ffc107}div.callout-warning.callout-style-default>.callout-header{background-color:#4d3a02}div.callout-warning:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-caution.callout{border-left-color:#fd7e14}div.callout-caution.callout-style-default>.callout-header{background-color:#4c2606}div.callout-caution:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-important.callout{border-left-color:#dc3545}div.callout-important.callout-style-default>.callout-header{background-color:#421015}div.callout-important:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important .callout-toggle::before{background-image:url('data:image/svg+xml,')}.quarto-toggle-container{display:flex;align-items:center}.quarto-reader-toggle .bi::before,.quarto-color-scheme-toggle .bi::before{display:inline-block;height:1rem;width:1rem;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.sidebar-navigation{padding-left:20px}.navbar{background-color:#030316;color:#98989f}.navbar .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.quarto-sidebar-toggle{border-color:#dee2e6;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;border-style:solid;border-width:1px;overflow:hidden;border-top-width:0px;padding-top:0px !important}.quarto-sidebar-toggle-title{cursor:pointer;padding-bottom:2px;margin-left:.25em;text-align:center;font-weight:400;font-size:.775em}#quarto-content .quarto-sidebar-toggle{background:#06092e}#quarto-content .quarto-sidebar-toggle-title{color:rgba(255,255,255,.8705882353)}.quarto-sidebar-toggle-icon{color:#dee2e6;margin-right:.5em;float:right;transition:transform .2s ease}.quarto-sidebar-toggle-icon::before{padding-top:5px}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-icon{transform:rotate(-180deg)}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-title{border-bottom:solid #dee2e6 1px}.quarto-sidebar-toggle-contents{background-color:#050725;padding-right:10px;padding-left:10px;margin-top:0px !important;transition:max-height .5s ease}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-contents{padding-top:1em;padding-bottom:10px}@media(max-width: 767.98px){.sidebar-menu-container{padding-bottom:5em}}.quarto-sidebar-toggle:not(.expanded) .quarto-sidebar-toggle-contents{padding-top:0px !important;padding-bottom:0px}nav[role=doc-toc]{z-index:1020}#quarto-sidebar>*,nav[role=doc-toc]>*{transition:opacity .1s ease,border .1s ease}#quarto-sidebar.slow>*,nav[role=doc-toc].slow>*{transition:opacity .4s ease,border .4s ease}.quarto-color-scheme-toggle:not(.alternate).top-right .bi::before{background-image:url('data:image/svg+xml,')}.quarto-color-scheme-toggle.alternate.top-right .bi::before{background-image:url('data:image/svg+xml,')}#quarto-appendix.default{border-top:1px solid #dee2e6}#quarto-appendix.default{background-color:#050725;padding-top:1.5em;margin-top:2em;z-index:998}#quarto-appendix.default .quarto-appendix-heading{margin-top:0;line-height:1.4em;font-weight:600;opacity:.9;border-bottom:none;margin-bottom:0}#quarto-appendix.default .footnotes ol,#quarto-appendix.default .footnotes ol li>p:last-of-type,#quarto-appendix.default .quarto-appendix-contents>p:last-of-type{margin-bottom:0}#quarto-appendix.default .footnotes ol{margin-left:.5em}#quarto-appendix.default .quarto-appendix-secondary-label{margin-bottom:.4em}#quarto-appendix.default .quarto-appendix-bibtex{font-size:.7em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-bibtex code.sourceCode{white-space:pre-wrap}#quarto-appendix.default .quarto-appendix-citeas{font-size:.9em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-heading{font-size:1em !important}#quarto-appendix.default *[role=doc-endnotes]>ol,#quarto-appendix.default .quarto-appendix-contents>*:not(h2):not(.h2){font-size:.9em}#quarto-appendix.default section{padding-bottom:1.5em}#quarto-appendix.default section *[role=doc-endnotes],#quarto-appendix.default section>*:not(a){opacity:.9;word-wrap:break-word}.btn.btn-quarto,div.cell-output-display .btn-quarto{--bs-btn-color: #fefefe;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fefefe;--bs-btn-hover-bg: #828a91;--bs-btn-hover-border-color: #7b838a;--bs-btn-focus-shadow-rgb: 130, 138, 144;--bs-btn-active-color: #000;--bs-btn-active-bg: #899197;--bs-btn-active-border-color: #7b838a;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}nav.quarto-secondary-nav.color-navbar{background-color:#030316;color:#98989f}nav.quarto-secondary-nav.color-navbar h1,nav.quarto-secondary-nav.color-navbar .h1,nav.quarto-secondary-nav.color-navbar .quarto-btn-toggle{color:#98989f}@media(max-width: 991.98px){body.nav-sidebar .quarto-title-banner{margin-bottom:0;padding-bottom:1em}body.nav-sidebar #title-block-header{margin-block-end:0}}p.subtitle{margin-top:.25em;margin-bottom:.5em}code a:any-link{color:inherit;text-decoration-color:#6c757d}/*! dark */div.observablehq table thead tr th{background-color:var(--bs-body-bg)}input,button,select,optgroup,textarea{background-color:var(--bs-body-bg)}.code-annotated .code-copy-button{margin-right:1.25em;margin-top:0;padding-bottom:0;padding-top:3px}.code-annotation-gutter-bg{background-color:#050725}.code-annotation-gutter{background-color:rgba(233,236,239,.1)}.code-annotation-gutter,.code-annotation-gutter-bg{height:100%;width:calc(20px + .5em);position:absolute;top:0;right:0}dl.code-annotation-container-grid dt{margin-right:1em;margin-top:.25rem}dl.code-annotation-container-grid dt{font-family:"Fira Mono",Menlo,Consolas,monospace;color:rgba(230,230,230,.8705882353);border:solid rgba(230,230,230,.8705882353) 1px;border-radius:50%;height:22px;width:22px;line-height:22px;font-size:11px;text-align:center;vertical-align:middle;text-decoration:none}dl.code-annotation-container-grid dt[data-target-cell]{cursor:pointer}dl.code-annotation-container-grid dt[data-target-cell].code-annotation-active{color:#050725;border:solid #aaa 1px;background-color:#aaa}pre.code-annotation-code{padding-top:0;padding-bottom:0}pre.code-annotation-code code{z-index:3}#code-annotation-line-highlight-gutter{width:100%;border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}#code-annotation-line-highlight{margin-left:-4em;width:calc(100% + 4em);border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}code.sourceCode .code-annotation-anchor.code-annotation-active{background-color:var(--quarto-hl-normal-color, #aaaaaa);border:solid var(--quarto-hl-normal-color, #aaaaaa) 1px;color:#e9ecef;font-weight:bolder}code.sourceCode .code-annotation-anchor{font-family:"Fira Mono",Menlo,Consolas,monospace;color:var(--quarto-hl-co-color);border:solid var(--quarto-hl-co-color) 1px;border-radius:50%;height:18px;width:18px;font-size:9px;margin-top:2px}code.sourceCode button.code-annotation-anchor{padding:2px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none}code.sourceCode a.code-annotation-anchor{line-height:18px;text-align:center;vertical-align:middle;cursor:default;text-decoration:none}@media print{.page-columns .column-screen-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#050725}.page-columns .column-screen-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#050725}.page-columns .column-screen-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#050725}.page-columns .column-screen{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#050725}.page-columns .column-screen-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#050725}.page-columns .column-screen-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#050725}.page-columns .column-screen-inset-shaded{grid-column:page-start-inset/page-end-inset;padding:1em;background:#f8f9fa;z-index:998;opacity:.999;margin-bottom:1em}}.quarto-video{margin-bottom:1em}.table{border-top:1px solid rgba(255,255,255,.8705882353);border-bottom:1px solid rgba(255,255,255,.8705882353)}.table>thead{border-top-width:0;border-bottom:1px solid rgba(255,255,255,.8705882353)}.table a{word-break:break-word}.table>:not(caption)>*>*{background-color:unset;color:unset}#quarto-document-content .crosstalk-input .checkbox input[type=checkbox],#quarto-document-content .crosstalk-input .checkbox-inline input[type=checkbox]{position:unset;margin-top:unset;margin-left:unset}#quarto-document-content .row{margin-left:unset;margin-right:unset}.quarto-xref{white-space:nowrap}#quarto-draft-alert{margin-top:0px;margin-bottom:0px;padding:.3em;text-align:center;font-size:.9em}#quarto-draft-alert i{margin-right:.3em}a.external:after{content:"";background-image:url('data:image/svg+xml,');background-size:contain;background-repeat:no-repeat;background-position:center center;margin-left:.2em;padding-right:.75em}div.sourceCode code a.external:after{content:none}a.external:after:hover{cursor:pointer}.quarto-ext-icon{display:inline-block;font-size:.75em;padding-left:.3em}.code-with-filename .code-with-filename-file{margin-bottom:0;padding-bottom:2px;padding-top:2px;padding-left:.7em;border:var(--quarto-border-width) solid var(--quarto-border-color);border-radius:var(--quarto-border-radius);border-bottom:0;border-bottom-left-radius:0%;border-bottom-right-radius:0%}.code-with-filename div.sourceCode,.reveal .code-with-filename div.sourceCode{margin-top:0;border-top-left-radius:0%;border-top-right-radius:0%}.code-with-filename .code-with-filename-file pre{margin-bottom:0}.code-with-filename .code-with-filename-file{background-color:rgba(219,219,219,.8)}.quarto-dark .code-with-filename .code-with-filename-file{background-color:#555}.code-with-filename .code-with-filename-file strong{font-weight:400}.video-container{position:relative;width:100%;padding-bottom:56.25%}.video{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.code-copy-button{z-index:1}.navbar-light .navbar-brand{color:rgba(255,255,255,.8705882353)}pre code{color:rgba(255,255,255,.8705882353)}:root{--bs-code-color: #769dff}.quarto-title-banner{margin-bottom:1em;color:#98989f;background:#030316}.quarto-title-banner a{color:#98989f}.quarto-title-banner h1,.quarto-title-banner .h1,.quarto-title-banner h2,.quarto-title-banner .h2{color:#98989f}.quarto-title-banner .code-tools-button{color:#65656c}.quarto-title-banner .code-tools-button:hover{color:#98989f}.quarto-title-banner .code-tools-button>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .quarto-title .title{font-weight:600}.quarto-title-banner .quarto-categories{margin-top:.75em}@media(min-width: 992px){.quarto-title-banner{padding-top:2.5em;padding-bottom:2.5em}}@media(max-width: 991.98px){.quarto-title-banner{padding-top:1em;padding-bottom:1em}}@media(max-width: 767.98px){body.hypothesis-enabled #title-block-header>*{padding-right:20px}}main.quarto-banner-title-block>section:first-child>h2,main.quarto-banner-title-block>section:first-child>.h2,main.quarto-banner-title-block>section:first-child>h3,main.quarto-banner-title-block>section:first-child>.h3,main.quarto-banner-title-block>section:first-child>h4,main.quarto-banner-title-block>section:first-child>.h4{margin-top:0}.quarto-title .quarto-categories{display:flex;flex-wrap:wrap;row-gap:.5em;column-gap:.4em;padding-bottom:.5em;margin-top:.75em}.quarto-title .quarto-categories .quarto-category{padding:.25em .75em;font-size:.65em;text-transform:uppercase;border:solid 1px;border-radius:.25rem;opacity:.6}.quarto-title .quarto-categories .quarto-category a{color:inherit}.quarto-title-meta-container{display:grid;grid-template-columns:1fr auto}.quarto-title-meta-column-end{display:flex;flex-direction:column;padding-left:1em}.quarto-title-meta-column-end a .bi{margin-right:.3em}#title-block-header.quarto-title-block.default .quarto-title-meta{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:1em}#title-block-header.quarto-title-block.default .quarto-title .title{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-author-orcid img{margin-top:-0.2em;height:.8em;width:.8em}#title-block-header.quarto-title-block.default .quarto-title-author-email{opacity:.7}#title-block-header.quarto-title-block.default .quarto-description p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p,#title-block-header.quarto-title-block.default .quarto-title-authors p,#title-block-header.quarto-title-block.default .quarto-title-affiliations p{margin-bottom:.1em}#title-block-header.quarto-title-block.default .quarto-title-meta-heading{text-transform:uppercase;margin-top:1em;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-contents{font-size:.9em}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p.affiliation:last-of-type{margin-bottom:.1em}#title-block-header.quarto-title-block.default p.affiliation{margin-bottom:.1em}#title-block-header.quarto-title-block.default .keywords,#title-block-header.quarto-title-block.default .description,#title-block-header.quarto-title-block.default .abstract{margin-top:0}#title-block-header.quarto-title-block.default .keywords>p,#title-block-header.quarto-title-block.default .description>p,#title-block-header.quarto-title-block.default .abstract>p{font-size:.9em}#title-block-header.quarto-title-block.default .keywords>p:last-of-type,#title-block-header.quarto-title-block.default .description>p:last-of-type,#title-block-header.quarto-title-block.default .abstract>p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .keywords .block-title,#title-block-header.quarto-title-block.default .description .block-title,#title-block-header.quarto-title-block.default .abstract .block-title{margin-top:1em;text-transform:uppercase;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-author{display:grid;grid-template-columns:minmax(max-content, 1fr) 1fr;grid-column-gap:1em}.quarto-title-tools-only{display:flex;justify-content:right} diff --git a/docs/site_libs/bootstrap/bootstrap-icons.css b/docs/site_libs/bootstrap/bootstrap-icons.css new file mode 100644 index 0000000..285e444 --- /dev/null +++ b/docs/site_libs/bootstrap/bootstrap-icons.css @@ -0,0 +1,2078 @@ +/*! + * Bootstrap Icons v1.11.1 (https://icons.getbootstrap.com/) + * Copyright 2019-2023 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE) + */ + +@font-face { + font-display: block; + font-family: "bootstrap-icons"; + src: +url("./bootstrap-icons.woff?2820a3852bdb9a5832199cc61cec4e65") format("woff"); +} + +.bi::before, +[class^="bi-"]::before, +[class*=" bi-"]::before { + display: inline-block; + font-family: bootstrap-icons !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: -.125em; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.bi-123::before { content: "\f67f"; } +.bi-alarm-fill::before { content: "\f101"; } +.bi-alarm::before { content: "\f102"; } +.bi-align-bottom::before { content: "\f103"; } +.bi-align-center::before { content: "\f104"; } +.bi-align-end::before { content: "\f105"; } +.bi-align-middle::before { content: "\f106"; } +.bi-align-start::before { content: "\f107"; } +.bi-align-top::before { content: "\f108"; } +.bi-alt::before { content: "\f109"; } +.bi-app-indicator::before { content: "\f10a"; } +.bi-app::before { content: "\f10b"; } +.bi-archive-fill::before { content: "\f10c"; } +.bi-archive::before { content: "\f10d"; } +.bi-arrow-90deg-down::before { content: "\f10e"; } +.bi-arrow-90deg-left::before { content: "\f10f"; } +.bi-arrow-90deg-right::before { content: "\f110"; } +.bi-arrow-90deg-up::before { content: "\f111"; } +.bi-arrow-bar-down::before { content: "\f112"; } +.bi-arrow-bar-left::before { content: "\f113"; } +.bi-arrow-bar-right::before { content: "\f114"; } +.bi-arrow-bar-up::before { content: "\f115"; } +.bi-arrow-clockwise::before { content: "\f116"; } +.bi-arrow-counterclockwise::before { content: "\f117"; } +.bi-arrow-down-circle-fill::before { content: "\f118"; } +.bi-arrow-down-circle::before { content: "\f119"; } +.bi-arrow-down-left-circle-fill::before { content: "\f11a"; } +.bi-arrow-down-left-circle::before { content: "\f11b"; } +.bi-arrow-down-left-square-fill::before { content: "\f11c"; } +.bi-arrow-down-left-square::before { content: "\f11d"; } +.bi-arrow-down-left::before { content: "\f11e"; } +.bi-arrow-down-right-circle-fill::before { content: "\f11f"; } +.bi-arrow-down-right-circle::before { content: "\f120"; } +.bi-arrow-down-right-square-fill::before { content: "\f121"; } +.bi-arrow-down-right-square::before { content: "\f122"; } +.bi-arrow-down-right::before { content: "\f123"; } +.bi-arrow-down-short::before { content: "\f124"; } +.bi-arrow-down-square-fill::before { content: "\f125"; } +.bi-arrow-down-square::before { content: "\f126"; } +.bi-arrow-down-up::before { content: "\f127"; } +.bi-arrow-down::before { content: "\f128"; } +.bi-arrow-left-circle-fill::before { content: "\f129"; } +.bi-arrow-left-circle::before { content: "\f12a"; } +.bi-arrow-left-right::before { content: "\f12b"; } +.bi-arrow-left-short::before { content: "\f12c"; } +.bi-arrow-left-square-fill::before { content: "\f12d"; } +.bi-arrow-left-square::before { content: "\f12e"; } +.bi-arrow-left::before { content: "\f12f"; } +.bi-arrow-repeat::before { content: "\f130"; } +.bi-arrow-return-left::before { content: "\f131"; } +.bi-arrow-return-right::before { content: "\f132"; } +.bi-arrow-right-circle-fill::before { content: "\f133"; } +.bi-arrow-right-circle::before { content: "\f134"; } +.bi-arrow-right-short::before { content: "\f135"; } +.bi-arrow-right-square-fill::before { content: "\f136"; } +.bi-arrow-right-square::before { content: "\f137"; } +.bi-arrow-right::before { content: "\f138"; } +.bi-arrow-up-circle-fill::before { content: "\f139"; } +.bi-arrow-up-circle::before { content: "\f13a"; } +.bi-arrow-up-left-circle-fill::before { content: "\f13b"; } +.bi-arrow-up-left-circle::before { content: "\f13c"; } +.bi-arrow-up-left-square-fill::before { content: "\f13d"; } +.bi-arrow-up-left-square::before { content: "\f13e"; } +.bi-arrow-up-left::before { content: "\f13f"; } +.bi-arrow-up-right-circle-fill::before { content: "\f140"; } +.bi-arrow-up-right-circle::before { content: "\f141"; } +.bi-arrow-up-right-square-fill::before { content: "\f142"; } +.bi-arrow-up-right-square::before { content: "\f143"; } +.bi-arrow-up-right::before { content: "\f144"; } +.bi-arrow-up-short::before { content: "\f145"; } +.bi-arrow-up-square-fill::before { content: "\f146"; } +.bi-arrow-up-square::before { content: "\f147"; } +.bi-arrow-up::before { content: "\f148"; } +.bi-arrows-angle-contract::before { content: "\f149"; } +.bi-arrows-angle-expand::before { content: "\f14a"; } +.bi-arrows-collapse::before { content: "\f14b"; } +.bi-arrows-expand::before { content: "\f14c"; } +.bi-arrows-fullscreen::before { content: "\f14d"; } +.bi-arrows-move::before { content: "\f14e"; } +.bi-aspect-ratio-fill::before { content: "\f14f"; } +.bi-aspect-ratio::before { content: "\f150"; } +.bi-asterisk::before { content: "\f151"; } +.bi-at::before { content: "\f152"; } +.bi-award-fill::before { content: "\f153"; } +.bi-award::before { content: "\f154"; } +.bi-back::before { content: "\f155"; } +.bi-backspace-fill::before { content: "\f156"; } +.bi-backspace-reverse-fill::before { content: "\f157"; } +.bi-backspace-reverse::before { content: "\f158"; } +.bi-backspace::before { content: "\f159"; } +.bi-badge-3d-fill::before { content: "\f15a"; } +.bi-badge-3d::before { content: "\f15b"; } +.bi-badge-4k-fill::before { content: "\f15c"; } +.bi-badge-4k::before { content: "\f15d"; } +.bi-badge-8k-fill::before { content: "\f15e"; } +.bi-badge-8k::before { content: "\f15f"; } +.bi-badge-ad-fill::before { content: "\f160"; } +.bi-badge-ad::before { content: "\f161"; } +.bi-badge-ar-fill::before { content: "\f162"; } +.bi-badge-ar::before { content: "\f163"; } +.bi-badge-cc-fill::before { content: "\f164"; } +.bi-badge-cc::before { content: "\f165"; } +.bi-badge-hd-fill::before { content: "\f166"; } +.bi-badge-hd::before { content: "\f167"; } +.bi-badge-tm-fill::before { content: "\f168"; } +.bi-badge-tm::before { content: "\f169"; } +.bi-badge-vo-fill::before { content: "\f16a"; } +.bi-badge-vo::before { content: "\f16b"; } +.bi-badge-vr-fill::before { content: "\f16c"; } +.bi-badge-vr::before { content: "\f16d"; } +.bi-badge-wc-fill::before { content: "\f16e"; } +.bi-badge-wc::before { content: "\f16f"; } +.bi-bag-check-fill::before { content: "\f170"; } +.bi-bag-check::before { content: "\f171"; } +.bi-bag-dash-fill::before { content: "\f172"; } +.bi-bag-dash::before { content: "\f173"; } +.bi-bag-fill::before { content: "\f174"; } +.bi-bag-plus-fill::before { content: "\f175"; } +.bi-bag-plus::before { content: "\f176"; } +.bi-bag-x-fill::before { content: "\f177"; } +.bi-bag-x::before { content: "\f178"; } +.bi-bag::before { content: "\f179"; } +.bi-bar-chart-fill::before { content: "\f17a"; } +.bi-bar-chart-line-fill::before { content: "\f17b"; } +.bi-bar-chart-line::before { content: "\f17c"; } +.bi-bar-chart-steps::before { content: "\f17d"; } +.bi-bar-chart::before { content: "\f17e"; } +.bi-basket-fill::before { content: "\f17f"; } +.bi-basket::before { content: "\f180"; } +.bi-basket2-fill::before { content: "\f181"; } +.bi-basket2::before { content: "\f182"; } +.bi-basket3-fill::before { content: "\f183"; } +.bi-basket3::before { content: "\f184"; } +.bi-battery-charging::before { content: "\f185"; } +.bi-battery-full::before { content: "\f186"; } +.bi-battery-half::before { content: "\f187"; } +.bi-battery::before { content: "\f188"; } +.bi-bell-fill::before { content: "\f189"; } +.bi-bell::before { content: "\f18a"; } +.bi-bezier::before { content: "\f18b"; } +.bi-bezier2::before { content: "\f18c"; } +.bi-bicycle::before { content: "\f18d"; } +.bi-binoculars-fill::before { content: "\f18e"; } +.bi-binoculars::before { content: "\f18f"; } +.bi-blockquote-left::before { content: "\f190"; } +.bi-blockquote-right::before { content: "\f191"; } +.bi-book-fill::before { content: "\f192"; } +.bi-book-half::before { content: "\f193"; } +.bi-book::before { content: "\f194"; } +.bi-bookmark-check-fill::before { content: "\f195"; } +.bi-bookmark-check::before { content: "\f196"; } +.bi-bookmark-dash-fill::before { content: "\f197"; } +.bi-bookmark-dash::before { content: "\f198"; } +.bi-bookmark-fill::before { content: "\f199"; } +.bi-bookmark-heart-fill::before { content: "\f19a"; } +.bi-bookmark-heart::before { content: "\f19b"; } +.bi-bookmark-plus-fill::before { content: "\f19c"; } +.bi-bookmark-plus::before { content: "\f19d"; } +.bi-bookmark-star-fill::before { content: "\f19e"; } +.bi-bookmark-star::before { content: "\f19f"; } +.bi-bookmark-x-fill::before { content: "\f1a0"; } +.bi-bookmark-x::before { content: "\f1a1"; } +.bi-bookmark::before { content: "\f1a2"; } +.bi-bookmarks-fill::before { content: "\f1a3"; } +.bi-bookmarks::before { content: "\f1a4"; } +.bi-bookshelf::before { content: "\f1a5"; } +.bi-bootstrap-fill::before { content: "\f1a6"; } +.bi-bootstrap-reboot::before { content: "\f1a7"; } +.bi-bootstrap::before { content: "\f1a8"; } +.bi-border-all::before { content: "\f1a9"; } +.bi-border-bottom::before { content: "\f1aa"; } +.bi-border-center::before { content: "\f1ab"; } +.bi-border-inner::before { content: "\f1ac"; } +.bi-border-left::before { content: "\f1ad"; } +.bi-border-middle::before { content: "\f1ae"; } +.bi-border-outer::before { content: "\f1af"; } +.bi-border-right::before { content: "\f1b0"; } +.bi-border-style::before { content: "\f1b1"; } +.bi-border-top::before { content: "\f1b2"; } +.bi-border-width::before { content: "\f1b3"; } +.bi-border::before { content: "\f1b4"; } +.bi-bounding-box-circles::before { content: "\f1b5"; } +.bi-bounding-box::before { content: "\f1b6"; } +.bi-box-arrow-down-left::before { content: "\f1b7"; } +.bi-box-arrow-down-right::before { content: "\f1b8"; } +.bi-box-arrow-down::before { content: "\f1b9"; } +.bi-box-arrow-in-down-left::before { content: "\f1ba"; } +.bi-box-arrow-in-down-right::before { content: "\f1bb"; } +.bi-box-arrow-in-down::before { content: "\f1bc"; } +.bi-box-arrow-in-left::before { content: "\f1bd"; } +.bi-box-arrow-in-right::before { content: "\f1be"; } +.bi-box-arrow-in-up-left::before { content: "\f1bf"; } +.bi-box-arrow-in-up-right::before { content: "\f1c0"; } +.bi-box-arrow-in-up::before { content: "\f1c1"; } +.bi-box-arrow-left::before { content: "\f1c2"; } +.bi-box-arrow-right::before { content: "\f1c3"; } +.bi-box-arrow-up-left::before { content: "\f1c4"; } +.bi-box-arrow-up-right::before { content: "\f1c5"; } +.bi-box-arrow-up::before { content: "\f1c6"; } +.bi-box-seam::before { content: "\f1c7"; } +.bi-box::before { content: "\f1c8"; } +.bi-braces::before { content: "\f1c9"; } +.bi-bricks::before { content: "\f1ca"; } +.bi-briefcase-fill::before { content: "\f1cb"; } +.bi-briefcase::before { content: "\f1cc"; } +.bi-brightness-alt-high-fill::before { content: "\f1cd"; } +.bi-brightness-alt-high::before { content: "\f1ce"; } +.bi-brightness-alt-low-fill::before { content: "\f1cf"; } +.bi-brightness-alt-low::before { content: "\f1d0"; } +.bi-brightness-high-fill::before { content: "\f1d1"; } +.bi-brightness-high::before { content: "\f1d2"; } +.bi-brightness-low-fill::before { content: "\f1d3"; } +.bi-brightness-low::before { content: "\f1d4"; } +.bi-broadcast-pin::before { content: "\f1d5"; } +.bi-broadcast::before { content: "\f1d6"; } +.bi-brush-fill::before { content: "\f1d7"; } +.bi-brush::before { content: "\f1d8"; } +.bi-bucket-fill::before { content: "\f1d9"; } +.bi-bucket::before { content: "\f1da"; } +.bi-bug-fill::before { content: "\f1db"; } +.bi-bug::before { content: "\f1dc"; } +.bi-building::before { content: "\f1dd"; } +.bi-bullseye::before { content: "\f1de"; } +.bi-calculator-fill::before { content: "\f1df"; } +.bi-calculator::before { content: "\f1e0"; } +.bi-calendar-check-fill::before { content: "\f1e1"; } +.bi-calendar-check::before { content: "\f1e2"; } +.bi-calendar-date-fill::before { content: "\f1e3"; } +.bi-calendar-date::before { content: "\f1e4"; } +.bi-calendar-day-fill::before { content: "\f1e5"; } +.bi-calendar-day::before { content: "\f1e6"; } +.bi-calendar-event-fill::before { content: "\f1e7"; } +.bi-calendar-event::before { content: "\f1e8"; } +.bi-calendar-fill::before { content: "\f1e9"; } +.bi-calendar-minus-fill::before { content: "\f1ea"; } +.bi-calendar-minus::before { content: "\f1eb"; } +.bi-calendar-month-fill::before { content: "\f1ec"; } +.bi-calendar-month::before { content: "\f1ed"; } +.bi-calendar-plus-fill::before { content: "\f1ee"; } +.bi-calendar-plus::before { content: "\f1ef"; } +.bi-calendar-range-fill::before { content: "\f1f0"; } +.bi-calendar-range::before { content: "\f1f1"; } +.bi-calendar-week-fill::before { content: "\f1f2"; } +.bi-calendar-week::before { content: "\f1f3"; } +.bi-calendar-x-fill::before { content: "\f1f4"; } +.bi-calendar-x::before { content: "\f1f5"; } +.bi-calendar::before { content: "\f1f6"; } +.bi-calendar2-check-fill::before { content: "\f1f7"; } +.bi-calendar2-check::before { content: "\f1f8"; } +.bi-calendar2-date-fill::before { content: "\f1f9"; } +.bi-calendar2-date::before { content: "\f1fa"; } +.bi-calendar2-day-fill::before { content: "\f1fb"; } +.bi-calendar2-day::before { content: "\f1fc"; } +.bi-calendar2-event-fill::before { content: "\f1fd"; } +.bi-calendar2-event::before { content: "\f1fe"; } +.bi-calendar2-fill::before { content: "\f1ff"; } +.bi-calendar2-minus-fill::before { content: "\f200"; } +.bi-calendar2-minus::before { content: "\f201"; } +.bi-calendar2-month-fill::before { content: "\f202"; } +.bi-calendar2-month::before { content: "\f203"; } +.bi-calendar2-plus-fill::before { content: "\f204"; } +.bi-calendar2-plus::before { content: "\f205"; } +.bi-calendar2-range-fill::before { content: "\f206"; } +.bi-calendar2-range::before { content: "\f207"; } +.bi-calendar2-week-fill::before { content: "\f208"; } +.bi-calendar2-week::before { content: "\f209"; } +.bi-calendar2-x-fill::before { content: "\f20a"; } +.bi-calendar2-x::before { content: "\f20b"; } +.bi-calendar2::before { content: "\f20c"; } +.bi-calendar3-event-fill::before { content: "\f20d"; } +.bi-calendar3-event::before { content: "\f20e"; } +.bi-calendar3-fill::before { content: "\f20f"; } +.bi-calendar3-range-fill::before { content: "\f210"; } +.bi-calendar3-range::before { content: "\f211"; } +.bi-calendar3-week-fill::before { content: "\f212"; } +.bi-calendar3-week::before { content: "\f213"; } +.bi-calendar3::before { content: "\f214"; } +.bi-calendar4-event::before { content: "\f215"; } +.bi-calendar4-range::before { content: "\f216"; } +.bi-calendar4-week::before { content: "\f217"; } +.bi-calendar4::before { content: "\f218"; } +.bi-camera-fill::before { content: "\f219"; } +.bi-camera-reels-fill::before { content: "\f21a"; } +.bi-camera-reels::before { content: "\f21b"; } +.bi-camera-video-fill::before { content: "\f21c"; } +.bi-camera-video-off-fill::before { content: "\f21d"; } +.bi-camera-video-off::before { content: "\f21e"; } +.bi-camera-video::before { content: "\f21f"; } +.bi-camera::before { content: "\f220"; } +.bi-camera2::before { content: "\f221"; } +.bi-capslock-fill::before { content: "\f222"; } +.bi-capslock::before { content: "\f223"; } +.bi-card-checklist::before { content: "\f224"; } +.bi-card-heading::before { content: "\f225"; } +.bi-card-image::before { content: "\f226"; } +.bi-card-list::before { content: "\f227"; } +.bi-card-text::before { content: "\f228"; } +.bi-caret-down-fill::before { content: "\f229"; } +.bi-caret-down-square-fill::before { content: "\f22a"; } +.bi-caret-down-square::before { content: "\f22b"; } +.bi-caret-down::before { content: "\f22c"; } +.bi-caret-left-fill::before { content: "\f22d"; } +.bi-caret-left-square-fill::before { content: "\f22e"; } +.bi-caret-left-square::before { content: "\f22f"; } +.bi-caret-left::before { content: "\f230"; } +.bi-caret-right-fill::before { content: "\f231"; } +.bi-caret-right-square-fill::before { content: "\f232"; } +.bi-caret-right-square::before { content: "\f233"; } +.bi-caret-right::before { content: "\f234"; } +.bi-caret-up-fill::before { content: "\f235"; } +.bi-caret-up-square-fill::before { content: "\f236"; } +.bi-caret-up-square::before { content: "\f237"; } +.bi-caret-up::before { content: "\f238"; } +.bi-cart-check-fill::before { content: "\f239"; } +.bi-cart-check::before { content: "\f23a"; } +.bi-cart-dash-fill::before { content: "\f23b"; } +.bi-cart-dash::before { content: "\f23c"; } +.bi-cart-fill::before { content: "\f23d"; } +.bi-cart-plus-fill::before { content: "\f23e"; } +.bi-cart-plus::before { content: "\f23f"; } +.bi-cart-x-fill::before { content: "\f240"; } +.bi-cart-x::before { content: "\f241"; } +.bi-cart::before { content: "\f242"; } +.bi-cart2::before { content: "\f243"; } +.bi-cart3::before { content: "\f244"; } +.bi-cart4::before { content: "\f245"; } +.bi-cash-stack::before { content: "\f246"; } +.bi-cash::before { content: "\f247"; } +.bi-cast::before { content: "\f248"; } +.bi-chat-dots-fill::before { content: "\f249"; } +.bi-chat-dots::before { content: "\f24a"; } +.bi-chat-fill::before { content: "\f24b"; } +.bi-chat-left-dots-fill::before { content: "\f24c"; } +.bi-chat-left-dots::before { content: "\f24d"; } +.bi-chat-left-fill::before { content: "\f24e"; } +.bi-chat-left-quote-fill::before { content: "\f24f"; } +.bi-chat-left-quote::before { content: "\f250"; } +.bi-chat-left-text-fill::before { content: "\f251"; } +.bi-chat-left-text::before { content: "\f252"; } +.bi-chat-left::before { content: "\f253"; } +.bi-chat-quote-fill::before { content: "\f254"; } +.bi-chat-quote::before { content: "\f255"; } +.bi-chat-right-dots-fill::before { content: "\f256"; } +.bi-chat-right-dots::before { content: "\f257"; } +.bi-chat-right-fill::before { content: "\f258"; } +.bi-chat-right-quote-fill::before { content: "\f259"; } +.bi-chat-right-quote::before { content: "\f25a"; } +.bi-chat-right-text-fill::before { content: "\f25b"; } +.bi-chat-right-text::before { content: "\f25c"; } +.bi-chat-right::before { content: "\f25d"; } +.bi-chat-square-dots-fill::before { content: "\f25e"; } +.bi-chat-square-dots::before { content: "\f25f"; } +.bi-chat-square-fill::before { content: "\f260"; } +.bi-chat-square-quote-fill::before { content: "\f261"; } +.bi-chat-square-quote::before { content: "\f262"; } +.bi-chat-square-text-fill::before { content: "\f263"; } +.bi-chat-square-text::before { content: "\f264"; } +.bi-chat-square::before { content: "\f265"; } +.bi-chat-text-fill::before { content: "\f266"; } +.bi-chat-text::before { content: "\f267"; } +.bi-chat::before { content: "\f268"; } +.bi-check-all::before { content: "\f269"; } +.bi-check-circle-fill::before { content: "\f26a"; } +.bi-check-circle::before { content: "\f26b"; } +.bi-check-square-fill::before { content: "\f26c"; } +.bi-check-square::before { content: "\f26d"; } +.bi-check::before { content: "\f26e"; } +.bi-check2-all::before { content: "\f26f"; } +.bi-check2-circle::before { content: "\f270"; } +.bi-check2-square::before { content: "\f271"; } +.bi-check2::before { content: "\f272"; } +.bi-chevron-bar-contract::before { content: "\f273"; } +.bi-chevron-bar-down::before { content: "\f274"; } +.bi-chevron-bar-expand::before { content: "\f275"; } +.bi-chevron-bar-left::before { content: "\f276"; } +.bi-chevron-bar-right::before { content: "\f277"; } +.bi-chevron-bar-up::before { content: "\f278"; } +.bi-chevron-compact-down::before { content: "\f279"; } +.bi-chevron-compact-left::before { content: "\f27a"; } +.bi-chevron-compact-right::before { content: "\f27b"; } +.bi-chevron-compact-up::before { content: "\f27c"; } +.bi-chevron-contract::before { content: "\f27d"; } +.bi-chevron-double-down::before { content: "\f27e"; } +.bi-chevron-double-left::before { content: "\f27f"; } +.bi-chevron-double-right::before { content: "\f280"; } +.bi-chevron-double-up::before { content: "\f281"; } +.bi-chevron-down::before { content: "\f282"; } +.bi-chevron-expand::before { content: "\f283"; } +.bi-chevron-left::before { content: "\f284"; } +.bi-chevron-right::before { content: "\f285"; } +.bi-chevron-up::before { content: "\f286"; } +.bi-circle-fill::before { content: "\f287"; } +.bi-circle-half::before { content: "\f288"; } +.bi-circle-square::before { content: "\f289"; } +.bi-circle::before { content: "\f28a"; } +.bi-clipboard-check::before { content: "\f28b"; } +.bi-clipboard-data::before { content: "\f28c"; } +.bi-clipboard-minus::before { content: "\f28d"; } +.bi-clipboard-plus::before { content: "\f28e"; } +.bi-clipboard-x::before { content: "\f28f"; } +.bi-clipboard::before { content: "\f290"; } +.bi-clock-fill::before { content: "\f291"; } +.bi-clock-history::before { content: "\f292"; } +.bi-clock::before { content: "\f293"; } +.bi-cloud-arrow-down-fill::before { content: "\f294"; } +.bi-cloud-arrow-down::before { content: "\f295"; } +.bi-cloud-arrow-up-fill::before { content: "\f296"; } +.bi-cloud-arrow-up::before { content: "\f297"; } +.bi-cloud-check-fill::before { content: "\f298"; } +.bi-cloud-check::before { content: "\f299"; } +.bi-cloud-download-fill::before { content: "\f29a"; } +.bi-cloud-download::before { content: "\f29b"; } +.bi-cloud-drizzle-fill::before { content: "\f29c"; } +.bi-cloud-drizzle::before { content: "\f29d"; } +.bi-cloud-fill::before { content: "\f29e"; } +.bi-cloud-fog-fill::before { content: "\f29f"; } +.bi-cloud-fog::before { content: "\f2a0"; } +.bi-cloud-fog2-fill::before { content: "\f2a1"; } +.bi-cloud-fog2::before { content: "\f2a2"; } +.bi-cloud-hail-fill::before { content: "\f2a3"; } +.bi-cloud-hail::before { content: "\f2a4"; } +.bi-cloud-haze-fill::before { content: "\f2a6"; } +.bi-cloud-haze::before { content: "\f2a7"; } +.bi-cloud-haze2-fill::before { content: "\f2a8"; } +.bi-cloud-lightning-fill::before { content: "\f2a9"; } +.bi-cloud-lightning-rain-fill::before { content: "\f2aa"; } +.bi-cloud-lightning-rain::before { content: "\f2ab"; } +.bi-cloud-lightning::before { content: "\f2ac"; } +.bi-cloud-minus-fill::before { content: "\f2ad"; } +.bi-cloud-minus::before { content: "\f2ae"; } +.bi-cloud-moon-fill::before { content: "\f2af"; } +.bi-cloud-moon::before { content: "\f2b0"; } +.bi-cloud-plus-fill::before { content: "\f2b1"; } +.bi-cloud-plus::before { content: "\f2b2"; } +.bi-cloud-rain-fill::before { content: "\f2b3"; } +.bi-cloud-rain-heavy-fill::before { content: "\f2b4"; } +.bi-cloud-rain-heavy::before { content: "\f2b5"; } +.bi-cloud-rain::before { content: "\f2b6"; } +.bi-cloud-slash-fill::before { content: "\f2b7"; } +.bi-cloud-slash::before { content: "\f2b8"; } +.bi-cloud-sleet-fill::before { content: "\f2b9"; } +.bi-cloud-sleet::before { content: "\f2ba"; } +.bi-cloud-snow-fill::before { content: "\f2bb"; } +.bi-cloud-snow::before { content: "\f2bc"; } +.bi-cloud-sun-fill::before { content: "\f2bd"; } +.bi-cloud-sun::before { content: "\f2be"; } +.bi-cloud-upload-fill::before { content: "\f2bf"; } +.bi-cloud-upload::before { content: "\f2c0"; } +.bi-cloud::before { content: "\f2c1"; } +.bi-clouds-fill::before { content: "\f2c2"; } +.bi-clouds::before { content: "\f2c3"; } +.bi-cloudy-fill::before { content: "\f2c4"; } +.bi-cloudy::before { content: "\f2c5"; } +.bi-code-slash::before { content: "\f2c6"; } +.bi-code-square::before { content: "\f2c7"; } +.bi-code::before { content: "\f2c8"; } +.bi-collection-fill::before { content: "\f2c9"; } +.bi-collection-play-fill::before { content: "\f2ca"; } +.bi-collection-play::before { content: "\f2cb"; } +.bi-collection::before { content: "\f2cc"; } +.bi-columns-gap::before { content: "\f2cd"; } +.bi-columns::before { content: "\f2ce"; } +.bi-command::before { content: "\f2cf"; } +.bi-compass-fill::before { content: "\f2d0"; } +.bi-compass::before { content: "\f2d1"; } +.bi-cone-striped::before { content: "\f2d2"; } +.bi-cone::before { content: "\f2d3"; } +.bi-controller::before { content: "\f2d4"; } +.bi-cpu-fill::before { content: "\f2d5"; } +.bi-cpu::before { content: "\f2d6"; } +.bi-credit-card-2-back-fill::before { content: "\f2d7"; } +.bi-credit-card-2-back::before { content: "\f2d8"; } +.bi-credit-card-2-front-fill::before { content: "\f2d9"; } +.bi-credit-card-2-front::before { content: "\f2da"; } +.bi-credit-card-fill::before { content: "\f2db"; } +.bi-credit-card::before { content: "\f2dc"; } +.bi-crop::before { content: "\f2dd"; } +.bi-cup-fill::before { content: "\f2de"; } +.bi-cup-straw::before { content: "\f2df"; } +.bi-cup::before { content: "\f2e0"; } +.bi-cursor-fill::before { content: "\f2e1"; } +.bi-cursor-text::before { content: "\f2e2"; } +.bi-cursor::before { content: "\f2e3"; } +.bi-dash-circle-dotted::before { content: "\f2e4"; } +.bi-dash-circle-fill::before { content: "\f2e5"; } +.bi-dash-circle::before { content: "\f2e6"; } +.bi-dash-square-dotted::before { content: "\f2e7"; } +.bi-dash-square-fill::before { content: "\f2e8"; } +.bi-dash-square::before { content: "\f2e9"; } +.bi-dash::before { content: "\f2ea"; } +.bi-diagram-2-fill::before { content: "\f2eb"; } +.bi-diagram-2::before { content: "\f2ec"; } +.bi-diagram-3-fill::before { content: "\f2ed"; } +.bi-diagram-3::before { content: "\f2ee"; } +.bi-diamond-fill::before { content: "\f2ef"; } +.bi-diamond-half::before { content: "\f2f0"; } +.bi-diamond::before { content: "\f2f1"; } +.bi-dice-1-fill::before { content: "\f2f2"; } +.bi-dice-1::before { content: "\f2f3"; } +.bi-dice-2-fill::before { content: "\f2f4"; } +.bi-dice-2::before { content: "\f2f5"; } +.bi-dice-3-fill::before { content: "\f2f6"; } +.bi-dice-3::before { content: "\f2f7"; } +.bi-dice-4-fill::before { content: "\f2f8"; } +.bi-dice-4::before { content: "\f2f9"; } +.bi-dice-5-fill::before { content: "\f2fa"; } +.bi-dice-5::before { content: "\f2fb"; } +.bi-dice-6-fill::before { content: "\f2fc"; } +.bi-dice-6::before { content: "\f2fd"; } +.bi-disc-fill::before { content: "\f2fe"; } +.bi-disc::before { content: "\f2ff"; } +.bi-discord::before { content: "\f300"; } +.bi-display-fill::before { content: "\f301"; } +.bi-display::before { content: "\f302"; } +.bi-distribute-horizontal::before { content: "\f303"; } +.bi-distribute-vertical::before { content: "\f304"; } +.bi-door-closed-fill::before { content: "\f305"; } +.bi-door-closed::before { content: "\f306"; } +.bi-door-open-fill::before { content: "\f307"; } +.bi-door-open::before { content: "\f308"; } +.bi-dot::before { content: "\f309"; } +.bi-download::before { content: "\f30a"; } +.bi-droplet-fill::before { content: "\f30b"; } +.bi-droplet-half::before { content: "\f30c"; } +.bi-droplet::before { content: "\f30d"; } +.bi-earbuds::before { content: "\f30e"; } +.bi-easel-fill::before { content: "\f30f"; } +.bi-easel::before { content: "\f310"; } +.bi-egg-fill::before { content: "\f311"; } +.bi-egg-fried::before { content: "\f312"; } +.bi-egg::before { content: "\f313"; } +.bi-eject-fill::before { content: "\f314"; } +.bi-eject::before { content: "\f315"; } +.bi-emoji-angry-fill::before { content: "\f316"; } +.bi-emoji-angry::before { content: "\f317"; } +.bi-emoji-dizzy-fill::before { content: "\f318"; } +.bi-emoji-dizzy::before { content: "\f319"; } +.bi-emoji-expressionless-fill::before { content: "\f31a"; } +.bi-emoji-expressionless::before { content: "\f31b"; } +.bi-emoji-frown-fill::before { content: "\f31c"; } +.bi-emoji-frown::before { content: "\f31d"; } +.bi-emoji-heart-eyes-fill::before { content: "\f31e"; } +.bi-emoji-heart-eyes::before { content: "\f31f"; } +.bi-emoji-laughing-fill::before { content: "\f320"; } +.bi-emoji-laughing::before { content: "\f321"; } +.bi-emoji-neutral-fill::before { content: "\f322"; } +.bi-emoji-neutral::before { content: "\f323"; } +.bi-emoji-smile-fill::before { content: "\f324"; } +.bi-emoji-smile-upside-down-fill::before { content: "\f325"; } +.bi-emoji-smile-upside-down::before { content: "\f326"; } +.bi-emoji-smile::before { content: "\f327"; } +.bi-emoji-sunglasses-fill::before { content: "\f328"; } +.bi-emoji-sunglasses::before { content: "\f329"; } +.bi-emoji-wink-fill::before { content: "\f32a"; } +.bi-emoji-wink::before { content: "\f32b"; } +.bi-envelope-fill::before { content: "\f32c"; } +.bi-envelope-open-fill::before { content: "\f32d"; } +.bi-envelope-open::before { content: "\f32e"; } +.bi-envelope::before { content: "\f32f"; } +.bi-eraser-fill::before { content: "\f330"; } +.bi-eraser::before { content: "\f331"; } +.bi-exclamation-circle-fill::before { content: "\f332"; } +.bi-exclamation-circle::before { content: "\f333"; } +.bi-exclamation-diamond-fill::before { content: "\f334"; } +.bi-exclamation-diamond::before { content: "\f335"; } +.bi-exclamation-octagon-fill::before { content: "\f336"; } +.bi-exclamation-octagon::before { content: "\f337"; } +.bi-exclamation-square-fill::before { content: "\f338"; } +.bi-exclamation-square::before { content: "\f339"; } +.bi-exclamation-triangle-fill::before { content: "\f33a"; } +.bi-exclamation-triangle::before { content: "\f33b"; } +.bi-exclamation::before { content: "\f33c"; } +.bi-exclude::before { content: "\f33d"; } +.bi-eye-fill::before { content: "\f33e"; } +.bi-eye-slash-fill::before { content: "\f33f"; } +.bi-eye-slash::before { content: "\f340"; } +.bi-eye::before { content: "\f341"; } +.bi-eyedropper::before { content: "\f342"; } +.bi-eyeglasses::before { content: "\f343"; } +.bi-facebook::before { content: "\f344"; } +.bi-file-arrow-down-fill::before { content: "\f345"; } +.bi-file-arrow-down::before { content: "\f346"; } +.bi-file-arrow-up-fill::before { content: "\f347"; } +.bi-file-arrow-up::before { content: "\f348"; } +.bi-file-bar-graph-fill::before { content: "\f349"; } +.bi-file-bar-graph::before { content: "\f34a"; } +.bi-file-binary-fill::before { content: "\f34b"; } +.bi-file-binary::before { content: "\f34c"; } +.bi-file-break-fill::before { content: "\f34d"; } +.bi-file-break::before { content: "\f34e"; } +.bi-file-check-fill::before { content: "\f34f"; } +.bi-file-check::before { content: "\f350"; } +.bi-file-code-fill::before { content: "\f351"; } +.bi-file-code::before { content: "\f352"; } +.bi-file-diff-fill::before { content: "\f353"; } +.bi-file-diff::before { content: "\f354"; } +.bi-file-earmark-arrow-down-fill::before { content: "\f355"; } +.bi-file-earmark-arrow-down::before { content: "\f356"; } +.bi-file-earmark-arrow-up-fill::before { content: "\f357"; } +.bi-file-earmark-arrow-up::before { content: "\f358"; } +.bi-file-earmark-bar-graph-fill::before { content: "\f359"; } +.bi-file-earmark-bar-graph::before { content: "\f35a"; } +.bi-file-earmark-binary-fill::before { content: "\f35b"; } +.bi-file-earmark-binary::before { content: "\f35c"; } +.bi-file-earmark-break-fill::before { content: "\f35d"; } +.bi-file-earmark-break::before { content: "\f35e"; } +.bi-file-earmark-check-fill::before { content: "\f35f"; } +.bi-file-earmark-check::before { content: "\f360"; } +.bi-file-earmark-code-fill::before { content: "\f361"; } +.bi-file-earmark-code::before { content: "\f362"; } +.bi-file-earmark-diff-fill::before { content: "\f363"; } +.bi-file-earmark-diff::before { content: "\f364"; } +.bi-file-earmark-easel-fill::before { content: "\f365"; } +.bi-file-earmark-easel::before { content: "\f366"; } +.bi-file-earmark-excel-fill::before { content: "\f367"; } +.bi-file-earmark-excel::before { content: "\f368"; } +.bi-file-earmark-fill::before { content: "\f369"; } +.bi-file-earmark-font-fill::before { content: "\f36a"; } +.bi-file-earmark-font::before { content: "\f36b"; } +.bi-file-earmark-image-fill::before { content: "\f36c"; } +.bi-file-earmark-image::before { content: "\f36d"; } +.bi-file-earmark-lock-fill::before { content: "\f36e"; } +.bi-file-earmark-lock::before { content: "\f36f"; } +.bi-file-earmark-lock2-fill::before { content: "\f370"; } +.bi-file-earmark-lock2::before { content: "\f371"; } +.bi-file-earmark-medical-fill::before { content: "\f372"; } +.bi-file-earmark-medical::before { content: "\f373"; } +.bi-file-earmark-minus-fill::before { content: "\f374"; } +.bi-file-earmark-minus::before { content: "\f375"; } +.bi-file-earmark-music-fill::before { content: "\f376"; } +.bi-file-earmark-music::before { content: "\f377"; } +.bi-file-earmark-person-fill::before { content: "\f378"; } +.bi-file-earmark-person::before { content: "\f379"; } +.bi-file-earmark-play-fill::before { content: "\f37a"; } +.bi-file-earmark-play::before { content: "\f37b"; } +.bi-file-earmark-plus-fill::before { content: "\f37c"; } +.bi-file-earmark-plus::before { content: "\f37d"; } +.bi-file-earmark-post-fill::before { content: "\f37e"; } +.bi-file-earmark-post::before { content: "\f37f"; } +.bi-file-earmark-ppt-fill::before { content: "\f380"; } +.bi-file-earmark-ppt::before { content: "\f381"; } +.bi-file-earmark-richtext-fill::before { content: "\f382"; } +.bi-file-earmark-richtext::before { content: "\f383"; } +.bi-file-earmark-ruled-fill::before { content: "\f384"; } +.bi-file-earmark-ruled::before { content: "\f385"; } +.bi-file-earmark-slides-fill::before { content: "\f386"; } +.bi-file-earmark-slides::before { content: "\f387"; } +.bi-file-earmark-spreadsheet-fill::before { content: "\f388"; } +.bi-file-earmark-spreadsheet::before { content: "\f389"; } +.bi-file-earmark-text-fill::before { content: "\f38a"; } +.bi-file-earmark-text::before { content: "\f38b"; } +.bi-file-earmark-word-fill::before { content: "\f38c"; } +.bi-file-earmark-word::before { content: "\f38d"; } +.bi-file-earmark-x-fill::before { content: "\f38e"; } +.bi-file-earmark-x::before { content: "\f38f"; } +.bi-file-earmark-zip-fill::before { content: "\f390"; } +.bi-file-earmark-zip::before { content: "\f391"; } +.bi-file-earmark::before { content: "\f392"; } +.bi-file-easel-fill::before { content: "\f393"; } +.bi-file-easel::before { content: "\f394"; } +.bi-file-excel-fill::before { content: "\f395"; } +.bi-file-excel::before { content: "\f396"; } +.bi-file-fill::before { content: "\f397"; } +.bi-file-font-fill::before { content: "\f398"; } +.bi-file-font::before { content: "\f399"; } +.bi-file-image-fill::before { content: "\f39a"; } +.bi-file-image::before { content: "\f39b"; } +.bi-file-lock-fill::before { content: "\f39c"; } +.bi-file-lock::before { content: "\f39d"; } +.bi-file-lock2-fill::before { content: "\f39e"; } +.bi-file-lock2::before { content: "\f39f"; } +.bi-file-medical-fill::before { content: "\f3a0"; } +.bi-file-medical::before { content: "\f3a1"; } +.bi-file-minus-fill::before { content: "\f3a2"; } +.bi-file-minus::before { content: "\f3a3"; } +.bi-file-music-fill::before { content: "\f3a4"; } +.bi-file-music::before { content: "\f3a5"; } +.bi-file-person-fill::before { content: "\f3a6"; } +.bi-file-person::before { content: "\f3a7"; } +.bi-file-play-fill::before { content: "\f3a8"; } +.bi-file-play::before { content: "\f3a9"; } +.bi-file-plus-fill::before { content: "\f3aa"; } +.bi-file-plus::before { content: "\f3ab"; } +.bi-file-post-fill::before { content: "\f3ac"; } +.bi-file-post::before { content: "\f3ad"; } +.bi-file-ppt-fill::before { content: "\f3ae"; } +.bi-file-ppt::before { content: "\f3af"; } +.bi-file-richtext-fill::before { content: "\f3b0"; } +.bi-file-richtext::before { content: "\f3b1"; } +.bi-file-ruled-fill::before { content: "\f3b2"; } +.bi-file-ruled::before { content: "\f3b3"; } +.bi-file-slides-fill::before { content: "\f3b4"; } +.bi-file-slides::before { content: "\f3b5"; } +.bi-file-spreadsheet-fill::before { content: "\f3b6"; } +.bi-file-spreadsheet::before { content: "\f3b7"; } +.bi-file-text-fill::before { content: "\f3b8"; } +.bi-file-text::before { content: "\f3b9"; } +.bi-file-word-fill::before { content: "\f3ba"; } +.bi-file-word::before { content: "\f3bb"; } +.bi-file-x-fill::before { content: "\f3bc"; } +.bi-file-x::before { content: "\f3bd"; } +.bi-file-zip-fill::before { content: "\f3be"; } +.bi-file-zip::before { content: "\f3bf"; } +.bi-file::before { content: "\f3c0"; } +.bi-files-alt::before { content: "\f3c1"; } +.bi-files::before { content: "\f3c2"; } +.bi-film::before { content: "\f3c3"; } +.bi-filter-circle-fill::before { content: "\f3c4"; } +.bi-filter-circle::before { content: "\f3c5"; } +.bi-filter-left::before { content: "\f3c6"; } +.bi-filter-right::before { content: "\f3c7"; } +.bi-filter-square-fill::before { content: "\f3c8"; } +.bi-filter-square::before { content: "\f3c9"; } +.bi-filter::before { content: "\f3ca"; } +.bi-flag-fill::before { content: "\f3cb"; } +.bi-flag::before { content: "\f3cc"; } +.bi-flower1::before { content: "\f3cd"; } +.bi-flower2::before { content: "\f3ce"; } +.bi-flower3::before { content: "\f3cf"; } +.bi-folder-check::before { content: "\f3d0"; } +.bi-folder-fill::before { content: "\f3d1"; } +.bi-folder-minus::before { content: "\f3d2"; } +.bi-folder-plus::before { content: "\f3d3"; } +.bi-folder-symlink-fill::before { content: "\f3d4"; } +.bi-folder-symlink::before { content: "\f3d5"; } +.bi-folder-x::before { content: "\f3d6"; } +.bi-folder::before { content: "\f3d7"; } +.bi-folder2-open::before { content: "\f3d8"; } +.bi-folder2::before { content: "\f3d9"; } +.bi-fonts::before { content: "\f3da"; } +.bi-forward-fill::before { content: "\f3db"; } +.bi-forward::before { content: "\f3dc"; } +.bi-front::before { content: "\f3dd"; } +.bi-fullscreen-exit::before { content: "\f3de"; } +.bi-fullscreen::before { content: "\f3df"; } +.bi-funnel-fill::before { content: "\f3e0"; } +.bi-funnel::before { content: "\f3e1"; } +.bi-gear-fill::before { content: "\f3e2"; } +.bi-gear-wide-connected::before { content: "\f3e3"; } +.bi-gear-wide::before { content: "\f3e4"; } +.bi-gear::before { content: "\f3e5"; } +.bi-gem::before { content: "\f3e6"; } +.bi-geo-alt-fill::before { content: "\f3e7"; } +.bi-geo-alt::before { content: "\f3e8"; } +.bi-geo-fill::before { content: "\f3e9"; } +.bi-geo::before { content: "\f3ea"; } +.bi-gift-fill::before { content: "\f3eb"; } +.bi-gift::before { content: "\f3ec"; } +.bi-github::before { content: "\f3ed"; } +.bi-globe::before { content: "\f3ee"; } +.bi-globe2::before { content: "\f3ef"; } +.bi-google::before { content: "\f3f0"; } +.bi-graph-down::before { content: "\f3f1"; } +.bi-graph-up::before { content: "\f3f2"; } +.bi-grid-1x2-fill::before { content: "\f3f3"; } +.bi-grid-1x2::before { content: "\f3f4"; } +.bi-grid-3x2-gap-fill::before { content: "\f3f5"; } +.bi-grid-3x2-gap::before { content: "\f3f6"; } +.bi-grid-3x2::before { content: "\f3f7"; } +.bi-grid-3x3-gap-fill::before { content: "\f3f8"; } +.bi-grid-3x3-gap::before { content: "\f3f9"; } +.bi-grid-3x3::before { content: "\f3fa"; } +.bi-grid-fill::before { content: "\f3fb"; } +.bi-grid::before { content: "\f3fc"; } +.bi-grip-horizontal::before { content: "\f3fd"; } +.bi-grip-vertical::before { content: "\f3fe"; } +.bi-hammer::before { content: "\f3ff"; } +.bi-hand-index-fill::before { content: "\f400"; } +.bi-hand-index-thumb-fill::before { content: "\f401"; } +.bi-hand-index-thumb::before { content: "\f402"; } +.bi-hand-index::before { content: "\f403"; } +.bi-hand-thumbs-down-fill::before { content: "\f404"; } +.bi-hand-thumbs-down::before { content: "\f405"; } +.bi-hand-thumbs-up-fill::before { content: "\f406"; } +.bi-hand-thumbs-up::before { content: "\f407"; } +.bi-handbag-fill::before { content: "\f408"; } +.bi-handbag::before { content: "\f409"; } +.bi-hash::before { content: "\f40a"; } +.bi-hdd-fill::before { content: "\f40b"; } +.bi-hdd-network-fill::before { content: "\f40c"; } +.bi-hdd-network::before { content: "\f40d"; } +.bi-hdd-rack-fill::before { content: "\f40e"; } +.bi-hdd-rack::before { content: "\f40f"; } +.bi-hdd-stack-fill::before { content: "\f410"; } +.bi-hdd-stack::before { content: "\f411"; } +.bi-hdd::before { content: "\f412"; } +.bi-headphones::before { content: "\f413"; } +.bi-headset::before { content: "\f414"; } +.bi-heart-fill::before { content: "\f415"; } +.bi-heart-half::before { content: "\f416"; } +.bi-heart::before { content: "\f417"; } +.bi-heptagon-fill::before { content: "\f418"; } +.bi-heptagon-half::before { content: "\f419"; } +.bi-heptagon::before { content: "\f41a"; } +.bi-hexagon-fill::before { content: "\f41b"; } +.bi-hexagon-half::before { content: "\f41c"; } +.bi-hexagon::before { content: "\f41d"; } +.bi-hourglass-bottom::before { content: "\f41e"; } +.bi-hourglass-split::before { content: "\f41f"; } +.bi-hourglass-top::before { content: "\f420"; } +.bi-hourglass::before { content: "\f421"; } +.bi-house-door-fill::before { content: "\f422"; } +.bi-house-door::before { content: "\f423"; } +.bi-house-fill::before { content: "\f424"; } +.bi-house::before { content: "\f425"; } +.bi-hr::before { content: "\f426"; } +.bi-hurricane::before { content: "\f427"; } +.bi-image-alt::before { content: "\f428"; } +.bi-image-fill::before { content: "\f429"; } +.bi-image::before { content: "\f42a"; } +.bi-images::before { content: "\f42b"; } +.bi-inbox-fill::before { content: "\f42c"; } +.bi-inbox::before { content: "\f42d"; } +.bi-inboxes-fill::before { content: "\f42e"; } +.bi-inboxes::before { content: "\f42f"; } +.bi-info-circle-fill::before { content: "\f430"; } +.bi-info-circle::before { content: "\f431"; } +.bi-info-square-fill::before { content: "\f432"; } +.bi-info-square::before { content: "\f433"; } +.bi-info::before { content: "\f434"; } +.bi-input-cursor-text::before { content: "\f435"; } +.bi-input-cursor::before { content: "\f436"; } +.bi-instagram::before { content: "\f437"; } +.bi-intersect::before { content: "\f438"; } +.bi-journal-album::before { content: "\f439"; } +.bi-journal-arrow-down::before { content: "\f43a"; } +.bi-journal-arrow-up::before { content: "\f43b"; } +.bi-journal-bookmark-fill::before { content: "\f43c"; } +.bi-journal-bookmark::before { content: "\f43d"; } +.bi-journal-check::before { content: "\f43e"; } +.bi-journal-code::before { content: "\f43f"; } +.bi-journal-medical::before { content: "\f440"; } +.bi-journal-minus::before { content: "\f441"; } +.bi-journal-plus::before { content: "\f442"; } +.bi-journal-richtext::before { content: "\f443"; } +.bi-journal-text::before { content: "\f444"; } +.bi-journal-x::before { content: "\f445"; } +.bi-journal::before { content: "\f446"; } +.bi-journals::before { content: "\f447"; } +.bi-joystick::before { content: "\f448"; } +.bi-justify-left::before { content: "\f449"; } +.bi-justify-right::before { content: "\f44a"; } +.bi-justify::before { content: "\f44b"; } +.bi-kanban-fill::before { content: "\f44c"; } +.bi-kanban::before { content: "\f44d"; } +.bi-key-fill::before { content: "\f44e"; } +.bi-key::before { content: "\f44f"; } +.bi-keyboard-fill::before { content: "\f450"; } +.bi-keyboard::before { content: "\f451"; } +.bi-ladder::before { content: "\f452"; } +.bi-lamp-fill::before { content: "\f453"; } +.bi-lamp::before { content: "\f454"; } +.bi-laptop-fill::before { content: "\f455"; } +.bi-laptop::before { content: "\f456"; } +.bi-layer-backward::before { content: "\f457"; } +.bi-layer-forward::before { content: "\f458"; } +.bi-layers-fill::before { content: "\f459"; } +.bi-layers-half::before { content: "\f45a"; } +.bi-layers::before { content: "\f45b"; } +.bi-layout-sidebar-inset-reverse::before { content: "\f45c"; } +.bi-layout-sidebar-inset::before { content: "\f45d"; } +.bi-layout-sidebar-reverse::before { content: "\f45e"; } +.bi-layout-sidebar::before { content: "\f45f"; } +.bi-layout-split::before { content: "\f460"; } +.bi-layout-text-sidebar-reverse::before { content: "\f461"; } +.bi-layout-text-sidebar::before { content: "\f462"; } +.bi-layout-text-window-reverse::before { content: "\f463"; } +.bi-layout-text-window::before { content: "\f464"; } +.bi-layout-three-columns::before { content: "\f465"; } +.bi-layout-wtf::before { content: "\f466"; } +.bi-life-preserver::before { content: "\f467"; } +.bi-lightbulb-fill::before { content: "\f468"; } +.bi-lightbulb-off-fill::before { content: "\f469"; } +.bi-lightbulb-off::before { content: "\f46a"; } +.bi-lightbulb::before { content: "\f46b"; } +.bi-lightning-charge-fill::before { content: "\f46c"; } +.bi-lightning-charge::before { content: "\f46d"; } +.bi-lightning-fill::before { content: "\f46e"; } +.bi-lightning::before { content: "\f46f"; } +.bi-link-45deg::before { content: "\f470"; } +.bi-link::before { content: "\f471"; } +.bi-linkedin::before { content: "\f472"; } +.bi-list-check::before { content: "\f473"; } +.bi-list-nested::before { content: "\f474"; } +.bi-list-ol::before { content: "\f475"; } +.bi-list-stars::before { content: "\f476"; } +.bi-list-task::before { content: "\f477"; } +.bi-list-ul::before { content: "\f478"; } +.bi-list::before { content: "\f479"; } +.bi-lock-fill::before { content: "\f47a"; } +.bi-lock::before { content: "\f47b"; } +.bi-mailbox::before { content: "\f47c"; } +.bi-mailbox2::before { content: "\f47d"; } +.bi-map-fill::before { content: "\f47e"; } +.bi-map::before { content: "\f47f"; } +.bi-markdown-fill::before { content: "\f480"; } +.bi-markdown::before { content: "\f481"; } +.bi-mask::before { content: "\f482"; } +.bi-megaphone-fill::before { content: "\f483"; } +.bi-megaphone::before { content: "\f484"; } +.bi-menu-app-fill::before { content: "\f485"; } +.bi-menu-app::before { content: "\f486"; } +.bi-menu-button-fill::before { content: "\f487"; } +.bi-menu-button-wide-fill::before { content: "\f488"; } +.bi-menu-button-wide::before { content: "\f489"; } +.bi-menu-button::before { content: "\f48a"; } +.bi-menu-down::before { content: "\f48b"; } +.bi-menu-up::before { content: "\f48c"; } +.bi-mic-fill::before { content: "\f48d"; } +.bi-mic-mute-fill::before { content: "\f48e"; } +.bi-mic-mute::before { content: "\f48f"; } +.bi-mic::before { content: "\f490"; } +.bi-minecart-loaded::before { content: "\f491"; } +.bi-minecart::before { content: "\f492"; } +.bi-moisture::before { content: "\f493"; } +.bi-moon-fill::before { content: "\f494"; } +.bi-moon-stars-fill::before { content: "\f495"; } +.bi-moon-stars::before { content: "\f496"; } +.bi-moon::before { content: "\f497"; } +.bi-mouse-fill::before { content: "\f498"; } +.bi-mouse::before { content: "\f499"; } +.bi-mouse2-fill::before { content: "\f49a"; } +.bi-mouse2::before { content: "\f49b"; } +.bi-mouse3-fill::before { content: "\f49c"; } +.bi-mouse3::before { content: "\f49d"; } +.bi-music-note-beamed::before { content: "\f49e"; } +.bi-music-note-list::before { content: "\f49f"; } +.bi-music-note::before { content: "\f4a0"; } +.bi-music-player-fill::before { content: "\f4a1"; } +.bi-music-player::before { content: "\f4a2"; } +.bi-newspaper::before { content: "\f4a3"; } +.bi-node-minus-fill::before { content: "\f4a4"; } +.bi-node-minus::before { content: "\f4a5"; } +.bi-node-plus-fill::before { content: "\f4a6"; } +.bi-node-plus::before { content: "\f4a7"; } +.bi-nut-fill::before { content: "\f4a8"; } +.bi-nut::before { content: "\f4a9"; } +.bi-octagon-fill::before { content: "\f4aa"; } +.bi-octagon-half::before { content: "\f4ab"; } +.bi-octagon::before { content: "\f4ac"; } +.bi-option::before { content: "\f4ad"; } +.bi-outlet::before { content: "\f4ae"; } +.bi-paint-bucket::before { content: "\f4af"; } +.bi-palette-fill::before { content: "\f4b0"; } +.bi-palette::before { content: "\f4b1"; } +.bi-palette2::before { content: "\f4b2"; } +.bi-paperclip::before { content: "\f4b3"; } +.bi-paragraph::before { content: "\f4b4"; } +.bi-patch-check-fill::before { content: "\f4b5"; } +.bi-patch-check::before { content: "\f4b6"; } +.bi-patch-exclamation-fill::before { content: "\f4b7"; } +.bi-patch-exclamation::before { content: "\f4b8"; } +.bi-patch-minus-fill::before { content: "\f4b9"; } +.bi-patch-minus::before { content: "\f4ba"; } +.bi-patch-plus-fill::before { content: "\f4bb"; } +.bi-patch-plus::before { content: "\f4bc"; } +.bi-patch-question-fill::before { content: "\f4bd"; } +.bi-patch-question::before { content: "\f4be"; } +.bi-pause-btn-fill::before { content: "\f4bf"; } +.bi-pause-btn::before { content: "\f4c0"; } +.bi-pause-circle-fill::before { content: "\f4c1"; } +.bi-pause-circle::before { content: "\f4c2"; } +.bi-pause-fill::before { content: "\f4c3"; } +.bi-pause::before { content: "\f4c4"; } +.bi-peace-fill::before { content: "\f4c5"; } +.bi-peace::before { content: "\f4c6"; } +.bi-pen-fill::before { content: "\f4c7"; } +.bi-pen::before { content: "\f4c8"; } +.bi-pencil-fill::before { content: "\f4c9"; } +.bi-pencil-square::before { content: "\f4ca"; } +.bi-pencil::before { content: "\f4cb"; } +.bi-pentagon-fill::before { content: "\f4cc"; } +.bi-pentagon-half::before { content: "\f4cd"; } +.bi-pentagon::before { content: "\f4ce"; } +.bi-people-fill::before { content: "\f4cf"; } +.bi-people::before { content: "\f4d0"; } +.bi-percent::before { content: "\f4d1"; } +.bi-person-badge-fill::before { content: "\f4d2"; } +.bi-person-badge::before { content: "\f4d3"; } +.bi-person-bounding-box::before { content: "\f4d4"; } +.bi-person-check-fill::before { content: "\f4d5"; } +.bi-person-check::before { content: "\f4d6"; } +.bi-person-circle::before { content: "\f4d7"; } +.bi-person-dash-fill::before { content: "\f4d8"; } +.bi-person-dash::before { content: "\f4d9"; } +.bi-person-fill::before { content: "\f4da"; } +.bi-person-lines-fill::before { content: "\f4db"; } +.bi-person-plus-fill::before { content: "\f4dc"; } +.bi-person-plus::before { content: "\f4dd"; } +.bi-person-square::before { content: "\f4de"; } +.bi-person-x-fill::before { content: "\f4df"; } +.bi-person-x::before { content: "\f4e0"; } +.bi-person::before { content: "\f4e1"; } +.bi-phone-fill::before { content: "\f4e2"; } +.bi-phone-landscape-fill::before { content: "\f4e3"; } +.bi-phone-landscape::before { content: "\f4e4"; } +.bi-phone-vibrate-fill::before { content: "\f4e5"; } +.bi-phone-vibrate::before { content: "\f4e6"; } +.bi-phone::before { content: "\f4e7"; } +.bi-pie-chart-fill::before { content: "\f4e8"; } +.bi-pie-chart::before { content: "\f4e9"; } +.bi-pin-angle-fill::before { content: "\f4ea"; } +.bi-pin-angle::before { content: "\f4eb"; } +.bi-pin-fill::before { content: "\f4ec"; } +.bi-pin::before { content: "\f4ed"; } +.bi-pip-fill::before { content: "\f4ee"; } +.bi-pip::before { content: "\f4ef"; } +.bi-play-btn-fill::before { content: "\f4f0"; } +.bi-play-btn::before { content: "\f4f1"; } +.bi-play-circle-fill::before { content: "\f4f2"; } +.bi-play-circle::before { content: "\f4f3"; } +.bi-play-fill::before { content: "\f4f4"; } +.bi-play::before { content: "\f4f5"; } +.bi-plug-fill::before { content: "\f4f6"; } +.bi-plug::before { content: "\f4f7"; } +.bi-plus-circle-dotted::before { content: "\f4f8"; } +.bi-plus-circle-fill::before { content: "\f4f9"; } +.bi-plus-circle::before { content: "\f4fa"; } +.bi-plus-square-dotted::before { content: "\f4fb"; } +.bi-plus-square-fill::before { content: "\f4fc"; } +.bi-plus-square::before { content: "\f4fd"; } +.bi-plus::before { content: "\f4fe"; } +.bi-power::before { content: "\f4ff"; } +.bi-printer-fill::before { content: "\f500"; } +.bi-printer::before { content: "\f501"; } +.bi-puzzle-fill::before { content: "\f502"; } +.bi-puzzle::before { content: "\f503"; } +.bi-question-circle-fill::before { content: "\f504"; } +.bi-question-circle::before { content: "\f505"; } +.bi-question-diamond-fill::before { content: "\f506"; } +.bi-question-diamond::before { content: "\f507"; } +.bi-question-octagon-fill::before { content: "\f508"; } +.bi-question-octagon::before { content: "\f509"; } +.bi-question-square-fill::before { content: "\f50a"; } +.bi-question-square::before { content: "\f50b"; } +.bi-question::before { content: "\f50c"; } +.bi-rainbow::before { content: "\f50d"; } +.bi-receipt-cutoff::before { content: "\f50e"; } +.bi-receipt::before { content: "\f50f"; } +.bi-reception-0::before { content: "\f510"; } +.bi-reception-1::before { content: "\f511"; } +.bi-reception-2::before { content: "\f512"; } +.bi-reception-3::before { content: "\f513"; } +.bi-reception-4::before { content: "\f514"; } +.bi-record-btn-fill::before { content: "\f515"; } +.bi-record-btn::before { content: "\f516"; } +.bi-record-circle-fill::before { content: "\f517"; } +.bi-record-circle::before { content: "\f518"; } +.bi-record-fill::before { content: "\f519"; } +.bi-record::before { content: "\f51a"; } +.bi-record2-fill::before { content: "\f51b"; } +.bi-record2::before { content: "\f51c"; } +.bi-reply-all-fill::before { content: "\f51d"; } +.bi-reply-all::before { content: "\f51e"; } +.bi-reply-fill::before { content: "\f51f"; } +.bi-reply::before { content: "\f520"; } +.bi-rss-fill::before { content: "\f521"; } +.bi-rss::before { content: "\f522"; } +.bi-rulers::before { content: "\f523"; } +.bi-save-fill::before { content: "\f524"; } +.bi-save::before { content: "\f525"; } +.bi-save2-fill::before { content: "\f526"; } +.bi-save2::before { content: "\f527"; } +.bi-scissors::before { content: "\f528"; } +.bi-screwdriver::before { content: "\f529"; } +.bi-search::before { content: "\f52a"; } +.bi-segmented-nav::before { content: "\f52b"; } +.bi-server::before { content: "\f52c"; } +.bi-share-fill::before { content: "\f52d"; } +.bi-share::before { content: "\f52e"; } +.bi-shield-check::before { content: "\f52f"; } +.bi-shield-exclamation::before { content: "\f530"; } +.bi-shield-fill-check::before { content: "\f531"; } +.bi-shield-fill-exclamation::before { content: "\f532"; } +.bi-shield-fill-minus::before { content: "\f533"; } +.bi-shield-fill-plus::before { content: "\f534"; } +.bi-shield-fill-x::before { content: "\f535"; } +.bi-shield-fill::before { content: "\f536"; } +.bi-shield-lock-fill::before { content: "\f537"; } +.bi-shield-lock::before { content: "\f538"; } +.bi-shield-minus::before { content: "\f539"; } +.bi-shield-plus::before { content: "\f53a"; } +.bi-shield-shaded::before { content: "\f53b"; } +.bi-shield-slash-fill::before { content: "\f53c"; } +.bi-shield-slash::before { content: "\f53d"; } +.bi-shield-x::before { content: "\f53e"; } +.bi-shield::before { content: "\f53f"; } +.bi-shift-fill::before { content: "\f540"; } +.bi-shift::before { content: "\f541"; } +.bi-shop-window::before { content: "\f542"; } +.bi-shop::before { content: "\f543"; } +.bi-shuffle::before { content: "\f544"; } +.bi-signpost-2-fill::before { content: "\f545"; } +.bi-signpost-2::before { content: "\f546"; } +.bi-signpost-fill::before { content: "\f547"; } +.bi-signpost-split-fill::before { content: "\f548"; } +.bi-signpost-split::before { content: "\f549"; } +.bi-signpost::before { content: "\f54a"; } +.bi-sim-fill::before { content: "\f54b"; } +.bi-sim::before { content: "\f54c"; } +.bi-skip-backward-btn-fill::before { content: "\f54d"; } +.bi-skip-backward-btn::before { content: "\f54e"; } +.bi-skip-backward-circle-fill::before { content: "\f54f"; } +.bi-skip-backward-circle::before { content: "\f550"; } +.bi-skip-backward-fill::before { content: "\f551"; } +.bi-skip-backward::before { content: "\f552"; } +.bi-skip-end-btn-fill::before { content: "\f553"; } +.bi-skip-end-btn::before { content: "\f554"; } +.bi-skip-end-circle-fill::before { content: "\f555"; } +.bi-skip-end-circle::before { content: "\f556"; } +.bi-skip-end-fill::before { content: "\f557"; } +.bi-skip-end::before { content: "\f558"; } +.bi-skip-forward-btn-fill::before { content: "\f559"; } +.bi-skip-forward-btn::before { content: "\f55a"; } +.bi-skip-forward-circle-fill::before { content: "\f55b"; } +.bi-skip-forward-circle::before { content: "\f55c"; } +.bi-skip-forward-fill::before { content: "\f55d"; } +.bi-skip-forward::before { content: "\f55e"; } +.bi-skip-start-btn-fill::before { content: "\f55f"; } +.bi-skip-start-btn::before { content: "\f560"; } +.bi-skip-start-circle-fill::before { content: "\f561"; } +.bi-skip-start-circle::before { content: "\f562"; } +.bi-skip-start-fill::before { content: "\f563"; } +.bi-skip-start::before { content: "\f564"; } +.bi-slack::before { content: "\f565"; } +.bi-slash-circle-fill::before { content: "\f566"; } +.bi-slash-circle::before { content: "\f567"; } +.bi-slash-square-fill::before { content: "\f568"; } +.bi-slash-square::before { content: "\f569"; } +.bi-slash::before { content: "\f56a"; } +.bi-sliders::before { content: "\f56b"; } +.bi-smartwatch::before { content: "\f56c"; } +.bi-snow::before { content: "\f56d"; } +.bi-snow2::before { content: "\f56e"; } +.bi-snow3::before { content: "\f56f"; } +.bi-sort-alpha-down-alt::before { content: "\f570"; } +.bi-sort-alpha-down::before { content: "\f571"; } +.bi-sort-alpha-up-alt::before { content: "\f572"; } +.bi-sort-alpha-up::before { content: "\f573"; } +.bi-sort-down-alt::before { content: "\f574"; } +.bi-sort-down::before { content: "\f575"; } +.bi-sort-numeric-down-alt::before { content: "\f576"; } +.bi-sort-numeric-down::before { content: "\f577"; } +.bi-sort-numeric-up-alt::before { content: "\f578"; } +.bi-sort-numeric-up::before { content: "\f579"; } +.bi-sort-up-alt::before { content: "\f57a"; } +.bi-sort-up::before { content: "\f57b"; } +.bi-soundwave::before { content: "\f57c"; } +.bi-speaker-fill::before { content: "\f57d"; } +.bi-speaker::before { content: "\f57e"; } +.bi-speedometer::before { content: "\f57f"; } +.bi-speedometer2::before { content: "\f580"; } +.bi-spellcheck::before { content: "\f581"; } +.bi-square-fill::before { content: "\f582"; } +.bi-square-half::before { content: "\f583"; } +.bi-square::before { content: "\f584"; } +.bi-stack::before { content: "\f585"; } +.bi-star-fill::before { content: "\f586"; } +.bi-star-half::before { content: "\f587"; } +.bi-star::before { content: "\f588"; } +.bi-stars::before { content: "\f589"; } +.bi-stickies-fill::before { content: "\f58a"; } +.bi-stickies::before { content: "\f58b"; } +.bi-sticky-fill::before { content: "\f58c"; } +.bi-sticky::before { content: "\f58d"; } +.bi-stop-btn-fill::before { content: "\f58e"; } +.bi-stop-btn::before { content: "\f58f"; } +.bi-stop-circle-fill::before { content: "\f590"; } +.bi-stop-circle::before { content: "\f591"; } +.bi-stop-fill::before { content: "\f592"; } +.bi-stop::before { content: "\f593"; } +.bi-stoplights-fill::before { content: "\f594"; } +.bi-stoplights::before { content: "\f595"; } +.bi-stopwatch-fill::before { content: "\f596"; } +.bi-stopwatch::before { content: "\f597"; } +.bi-subtract::before { content: "\f598"; } +.bi-suit-club-fill::before { content: "\f599"; } +.bi-suit-club::before { content: "\f59a"; } +.bi-suit-diamond-fill::before { content: "\f59b"; } +.bi-suit-diamond::before { content: "\f59c"; } +.bi-suit-heart-fill::before { content: "\f59d"; } +.bi-suit-heart::before { content: "\f59e"; } +.bi-suit-spade-fill::before { content: "\f59f"; } +.bi-suit-spade::before { content: "\f5a0"; } +.bi-sun-fill::before { content: "\f5a1"; } +.bi-sun::before { content: "\f5a2"; } +.bi-sunglasses::before { content: "\f5a3"; } +.bi-sunrise-fill::before { content: "\f5a4"; } +.bi-sunrise::before { content: "\f5a5"; } +.bi-sunset-fill::before { content: "\f5a6"; } +.bi-sunset::before { content: "\f5a7"; } +.bi-symmetry-horizontal::before { content: "\f5a8"; } +.bi-symmetry-vertical::before { content: "\f5a9"; } +.bi-table::before { content: "\f5aa"; } +.bi-tablet-fill::before { content: "\f5ab"; } +.bi-tablet-landscape-fill::before { content: "\f5ac"; } +.bi-tablet-landscape::before { content: "\f5ad"; } +.bi-tablet::before { content: "\f5ae"; } +.bi-tag-fill::before { content: "\f5af"; } +.bi-tag::before { content: "\f5b0"; } +.bi-tags-fill::before { content: "\f5b1"; } +.bi-tags::before { content: "\f5b2"; } +.bi-telegram::before { content: "\f5b3"; } +.bi-telephone-fill::before { content: "\f5b4"; } +.bi-telephone-forward-fill::before { content: "\f5b5"; } +.bi-telephone-forward::before { content: "\f5b6"; } +.bi-telephone-inbound-fill::before { content: "\f5b7"; } +.bi-telephone-inbound::before { content: "\f5b8"; } +.bi-telephone-minus-fill::before { content: "\f5b9"; } +.bi-telephone-minus::before { content: "\f5ba"; } +.bi-telephone-outbound-fill::before { content: "\f5bb"; } +.bi-telephone-outbound::before { content: "\f5bc"; } +.bi-telephone-plus-fill::before { content: "\f5bd"; } +.bi-telephone-plus::before { content: "\f5be"; } +.bi-telephone-x-fill::before { content: "\f5bf"; } +.bi-telephone-x::before { content: "\f5c0"; } +.bi-telephone::before { content: "\f5c1"; } +.bi-terminal-fill::before { content: "\f5c2"; } +.bi-terminal::before { content: "\f5c3"; } +.bi-text-center::before { content: "\f5c4"; } +.bi-text-indent-left::before { content: "\f5c5"; } +.bi-text-indent-right::before { content: "\f5c6"; } +.bi-text-left::before { content: "\f5c7"; } +.bi-text-paragraph::before { content: "\f5c8"; } +.bi-text-right::before { content: "\f5c9"; } +.bi-textarea-resize::before { content: "\f5ca"; } +.bi-textarea-t::before { content: "\f5cb"; } +.bi-textarea::before { content: "\f5cc"; } +.bi-thermometer-half::before { content: "\f5cd"; } +.bi-thermometer-high::before { content: "\f5ce"; } +.bi-thermometer-low::before { content: "\f5cf"; } +.bi-thermometer-snow::before { content: "\f5d0"; } +.bi-thermometer-sun::before { content: "\f5d1"; } +.bi-thermometer::before { content: "\f5d2"; } +.bi-three-dots-vertical::before { content: "\f5d3"; } +.bi-three-dots::before { content: "\f5d4"; } +.bi-toggle-off::before { content: "\f5d5"; } +.bi-toggle-on::before { content: "\f5d6"; } +.bi-toggle2-off::before { content: "\f5d7"; } +.bi-toggle2-on::before { content: "\f5d8"; } +.bi-toggles::before { content: "\f5d9"; } +.bi-toggles2::before { content: "\f5da"; } +.bi-tools::before { content: "\f5db"; } +.bi-tornado::before { content: "\f5dc"; } +.bi-trash-fill::before { content: "\f5dd"; } +.bi-trash::before { content: "\f5de"; } +.bi-trash2-fill::before { content: "\f5df"; } +.bi-trash2::before { content: "\f5e0"; } +.bi-tree-fill::before { content: "\f5e1"; } +.bi-tree::before { content: "\f5e2"; } +.bi-triangle-fill::before { content: "\f5e3"; } +.bi-triangle-half::before { content: "\f5e4"; } +.bi-triangle::before { content: "\f5e5"; } +.bi-trophy-fill::before { content: "\f5e6"; } +.bi-trophy::before { content: "\f5e7"; } +.bi-tropical-storm::before { content: "\f5e8"; } +.bi-truck-flatbed::before { content: "\f5e9"; } +.bi-truck::before { content: "\f5ea"; } +.bi-tsunami::before { content: "\f5eb"; } +.bi-tv-fill::before { content: "\f5ec"; } +.bi-tv::before { content: "\f5ed"; } +.bi-twitch::before { content: "\f5ee"; } +.bi-twitter::before { content: "\f5ef"; } +.bi-type-bold::before { content: "\f5f0"; } +.bi-type-h1::before { content: "\f5f1"; } +.bi-type-h2::before { content: "\f5f2"; } +.bi-type-h3::before { content: "\f5f3"; } +.bi-type-italic::before { content: "\f5f4"; } +.bi-type-strikethrough::before { content: "\f5f5"; } +.bi-type-underline::before { content: "\f5f6"; } +.bi-type::before { content: "\f5f7"; } +.bi-ui-checks-grid::before { content: "\f5f8"; } +.bi-ui-checks::before { content: "\f5f9"; } +.bi-ui-radios-grid::before { content: "\f5fa"; } +.bi-ui-radios::before { content: "\f5fb"; } +.bi-umbrella-fill::before { content: "\f5fc"; } +.bi-umbrella::before { content: "\f5fd"; } +.bi-union::before { content: "\f5fe"; } +.bi-unlock-fill::before { content: "\f5ff"; } +.bi-unlock::before { content: "\f600"; } +.bi-upc-scan::before { content: "\f601"; } +.bi-upc::before { content: "\f602"; } +.bi-upload::before { content: "\f603"; } +.bi-vector-pen::before { content: "\f604"; } +.bi-view-list::before { content: "\f605"; } +.bi-view-stacked::before { content: "\f606"; } +.bi-vinyl-fill::before { content: "\f607"; } +.bi-vinyl::before { content: "\f608"; } +.bi-voicemail::before { content: "\f609"; } +.bi-volume-down-fill::before { content: "\f60a"; } +.bi-volume-down::before { content: "\f60b"; } +.bi-volume-mute-fill::before { content: "\f60c"; } +.bi-volume-mute::before { content: "\f60d"; } +.bi-volume-off-fill::before { content: "\f60e"; } +.bi-volume-off::before { content: "\f60f"; } +.bi-volume-up-fill::before { content: "\f610"; } +.bi-volume-up::before { content: "\f611"; } +.bi-vr::before { content: "\f612"; } +.bi-wallet-fill::before { content: "\f613"; } +.bi-wallet::before { content: "\f614"; } +.bi-wallet2::before { content: "\f615"; } +.bi-watch::before { content: "\f616"; } +.bi-water::before { content: "\f617"; } +.bi-whatsapp::before { content: "\f618"; } +.bi-wifi-1::before { content: "\f619"; } +.bi-wifi-2::before { content: "\f61a"; } +.bi-wifi-off::before { content: "\f61b"; } +.bi-wifi::before { content: "\f61c"; } +.bi-wind::before { content: "\f61d"; } +.bi-window-dock::before { content: "\f61e"; } +.bi-window-sidebar::before { content: "\f61f"; } +.bi-window::before { content: "\f620"; } +.bi-wrench::before { content: "\f621"; } +.bi-x-circle-fill::before { content: "\f622"; } +.bi-x-circle::before { content: "\f623"; } +.bi-x-diamond-fill::before { content: "\f624"; } +.bi-x-diamond::before { content: "\f625"; } +.bi-x-octagon-fill::before { content: "\f626"; } +.bi-x-octagon::before { content: "\f627"; } +.bi-x-square-fill::before { content: "\f628"; } +.bi-x-square::before { content: "\f629"; } +.bi-x::before { content: "\f62a"; } +.bi-youtube::before { content: "\f62b"; } +.bi-zoom-in::before { content: "\f62c"; } +.bi-zoom-out::before { content: "\f62d"; } +.bi-bank::before { content: "\f62e"; } +.bi-bank2::before { content: "\f62f"; } +.bi-bell-slash-fill::before { content: "\f630"; } +.bi-bell-slash::before { content: "\f631"; } +.bi-cash-coin::before { content: "\f632"; } +.bi-check-lg::before { content: "\f633"; } +.bi-coin::before { content: "\f634"; } +.bi-currency-bitcoin::before { content: "\f635"; } +.bi-currency-dollar::before { content: "\f636"; } +.bi-currency-euro::before { content: "\f637"; } +.bi-currency-exchange::before { content: "\f638"; } +.bi-currency-pound::before { content: "\f639"; } +.bi-currency-yen::before { content: "\f63a"; } +.bi-dash-lg::before { content: "\f63b"; } +.bi-exclamation-lg::before { content: "\f63c"; } +.bi-file-earmark-pdf-fill::before { content: "\f63d"; } +.bi-file-earmark-pdf::before { content: "\f63e"; } +.bi-file-pdf-fill::before { content: "\f63f"; } +.bi-file-pdf::before { content: "\f640"; } +.bi-gender-ambiguous::before { content: "\f641"; } +.bi-gender-female::before { content: "\f642"; } +.bi-gender-male::before { content: "\f643"; } +.bi-gender-trans::before { content: "\f644"; } +.bi-headset-vr::before { content: "\f645"; } +.bi-info-lg::before { content: "\f646"; } +.bi-mastodon::before { content: "\f647"; } +.bi-messenger::before { content: "\f648"; } +.bi-piggy-bank-fill::before { content: "\f649"; } +.bi-piggy-bank::before { content: "\f64a"; } +.bi-pin-map-fill::before { content: "\f64b"; } +.bi-pin-map::before { content: "\f64c"; } +.bi-plus-lg::before { content: "\f64d"; } +.bi-question-lg::before { content: "\f64e"; } +.bi-recycle::before { content: "\f64f"; } +.bi-reddit::before { content: "\f650"; } +.bi-safe-fill::before { content: "\f651"; } +.bi-safe2-fill::before { content: "\f652"; } +.bi-safe2::before { content: "\f653"; } +.bi-sd-card-fill::before { content: "\f654"; } +.bi-sd-card::before { content: "\f655"; } +.bi-skype::before { content: "\f656"; } +.bi-slash-lg::before { content: "\f657"; } +.bi-translate::before { content: "\f658"; } +.bi-x-lg::before { content: "\f659"; } +.bi-safe::before { content: "\f65a"; } +.bi-apple::before { content: "\f65b"; } +.bi-microsoft::before { content: "\f65d"; } +.bi-windows::before { content: "\f65e"; } +.bi-behance::before { content: "\f65c"; } +.bi-dribbble::before { content: "\f65f"; } +.bi-line::before { content: "\f660"; } +.bi-medium::before { content: "\f661"; } +.bi-paypal::before { content: "\f662"; } +.bi-pinterest::before { content: "\f663"; } +.bi-signal::before { content: "\f664"; } +.bi-snapchat::before { content: "\f665"; } +.bi-spotify::before { content: "\f666"; } +.bi-stack-overflow::before { content: "\f667"; } +.bi-strava::before { content: "\f668"; } +.bi-wordpress::before { content: "\f669"; } +.bi-vimeo::before { content: "\f66a"; } +.bi-activity::before { content: "\f66b"; } +.bi-easel2-fill::before { content: "\f66c"; } +.bi-easel2::before { content: "\f66d"; } +.bi-easel3-fill::before { content: "\f66e"; } +.bi-easel3::before { content: "\f66f"; } +.bi-fan::before { content: "\f670"; } +.bi-fingerprint::before { content: "\f671"; } +.bi-graph-down-arrow::before { content: "\f672"; } +.bi-graph-up-arrow::before { content: "\f673"; } +.bi-hypnotize::before { content: "\f674"; } +.bi-magic::before { content: "\f675"; } +.bi-person-rolodex::before { content: "\f676"; } +.bi-person-video::before { content: "\f677"; } +.bi-person-video2::before { content: "\f678"; } +.bi-person-video3::before { content: "\f679"; } +.bi-person-workspace::before { content: "\f67a"; } +.bi-radioactive::before { content: "\f67b"; } +.bi-webcam-fill::before { content: "\f67c"; } +.bi-webcam::before { content: "\f67d"; } +.bi-yin-yang::before { content: "\f67e"; } +.bi-bandaid-fill::before { content: "\f680"; } +.bi-bandaid::before { content: "\f681"; } +.bi-bluetooth::before { content: "\f682"; } +.bi-body-text::before { content: "\f683"; } +.bi-boombox::before { content: "\f684"; } +.bi-boxes::before { content: "\f685"; } +.bi-dpad-fill::before { content: "\f686"; } +.bi-dpad::before { content: "\f687"; } +.bi-ear-fill::before { content: "\f688"; } +.bi-ear::before { content: "\f689"; } +.bi-envelope-check-fill::before { content: "\f68b"; } +.bi-envelope-check::before { content: "\f68c"; } +.bi-envelope-dash-fill::before { content: "\f68e"; } +.bi-envelope-dash::before { content: "\f68f"; } +.bi-envelope-exclamation-fill::before { content: "\f691"; } +.bi-envelope-exclamation::before { content: "\f692"; } +.bi-envelope-plus-fill::before { content: "\f693"; } +.bi-envelope-plus::before { content: "\f694"; } +.bi-envelope-slash-fill::before { content: "\f696"; } +.bi-envelope-slash::before { content: "\f697"; } +.bi-envelope-x-fill::before { content: "\f699"; } +.bi-envelope-x::before { content: "\f69a"; } +.bi-explicit-fill::before { content: "\f69b"; } +.bi-explicit::before { content: "\f69c"; } +.bi-git::before { content: "\f69d"; } +.bi-infinity::before { content: "\f69e"; } +.bi-list-columns-reverse::before { content: "\f69f"; } +.bi-list-columns::before { content: "\f6a0"; } +.bi-meta::before { content: "\f6a1"; } +.bi-nintendo-switch::before { content: "\f6a4"; } +.bi-pc-display-horizontal::before { content: "\f6a5"; } +.bi-pc-display::before { content: "\f6a6"; } +.bi-pc-horizontal::before { content: "\f6a7"; } +.bi-pc::before { content: "\f6a8"; } +.bi-playstation::before { content: "\f6a9"; } +.bi-plus-slash-minus::before { content: "\f6aa"; } +.bi-projector-fill::before { content: "\f6ab"; } +.bi-projector::before { content: "\f6ac"; } +.bi-qr-code-scan::before { content: "\f6ad"; } +.bi-qr-code::before { content: "\f6ae"; } +.bi-quora::before { content: "\f6af"; } +.bi-quote::before { content: "\f6b0"; } +.bi-robot::before { content: "\f6b1"; } +.bi-send-check-fill::before { content: "\f6b2"; } +.bi-send-check::before { content: "\f6b3"; } +.bi-send-dash-fill::before { content: "\f6b4"; } +.bi-send-dash::before { content: "\f6b5"; } +.bi-send-exclamation-fill::before { content: "\f6b7"; } +.bi-send-exclamation::before { content: "\f6b8"; } +.bi-send-fill::before { content: "\f6b9"; } +.bi-send-plus-fill::before { content: "\f6ba"; } +.bi-send-plus::before { content: "\f6bb"; } +.bi-send-slash-fill::before { content: "\f6bc"; } +.bi-send-slash::before { content: "\f6bd"; } +.bi-send-x-fill::before { content: "\f6be"; } +.bi-send-x::before { content: "\f6bf"; } +.bi-send::before { content: "\f6c0"; } +.bi-steam::before { content: "\f6c1"; } +.bi-terminal-dash::before { content: "\f6c3"; } +.bi-terminal-plus::before { content: "\f6c4"; } +.bi-terminal-split::before { content: "\f6c5"; } +.bi-ticket-detailed-fill::before { content: "\f6c6"; } +.bi-ticket-detailed::before { content: "\f6c7"; } +.bi-ticket-fill::before { content: "\f6c8"; } +.bi-ticket-perforated-fill::before { content: "\f6c9"; } +.bi-ticket-perforated::before { content: "\f6ca"; } +.bi-ticket::before { content: "\f6cb"; } +.bi-tiktok::before { content: "\f6cc"; } +.bi-window-dash::before { content: "\f6cd"; } +.bi-window-desktop::before { content: "\f6ce"; } +.bi-window-fullscreen::before { content: "\f6cf"; } +.bi-window-plus::before { content: "\f6d0"; } +.bi-window-split::before { content: "\f6d1"; } +.bi-window-stack::before { content: "\f6d2"; } +.bi-window-x::before { content: "\f6d3"; } +.bi-xbox::before { content: "\f6d4"; } +.bi-ethernet::before { content: "\f6d5"; } +.bi-hdmi-fill::before { content: "\f6d6"; } +.bi-hdmi::before { content: "\f6d7"; } +.bi-usb-c-fill::before { content: "\f6d8"; } +.bi-usb-c::before { content: "\f6d9"; } +.bi-usb-fill::before { content: "\f6da"; } +.bi-usb-plug-fill::before { content: "\f6db"; } +.bi-usb-plug::before { content: "\f6dc"; } +.bi-usb-symbol::before { content: "\f6dd"; } +.bi-usb::before { content: "\f6de"; } +.bi-boombox-fill::before { content: "\f6df"; } +.bi-displayport::before { content: "\f6e1"; } +.bi-gpu-card::before { content: "\f6e2"; } +.bi-memory::before { content: "\f6e3"; } +.bi-modem-fill::before { content: "\f6e4"; } +.bi-modem::before { content: "\f6e5"; } +.bi-motherboard-fill::before { content: "\f6e6"; } +.bi-motherboard::before { content: "\f6e7"; } +.bi-optical-audio-fill::before { content: "\f6e8"; } +.bi-optical-audio::before { content: "\f6e9"; } +.bi-pci-card::before { content: "\f6ea"; } +.bi-router-fill::before { content: "\f6eb"; } +.bi-router::before { content: "\f6ec"; } +.bi-thunderbolt-fill::before { content: "\f6ef"; } +.bi-thunderbolt::before { content: "\f6f0"; } +.bi-usb-drive-fill::before { content: "\f6f1"; } +.bi-usb-drive::before { content: "\f6f2"; } +.bi-usb-micro-fill::before { content: "\f6f3"; } +.bi-usb-micro::before { content: "\f6f4"; } +.bi-usb-mini-fill::before { content: "\f6f5"; } +.bi-usb-mini::before { content: "\f6f6"; } +.bi-cloud-haze2::before { content: "\f6f7"; } +.bi-device-hdd-fill::before { content: "\f6f8"; } +.bi-device-hdd::before { content: "\f6f9"; } +.bi-device-ssd-fill::before { content: "\f6fa"; } +.bi-device-ssd::before { content: "\f6fb"; } +.bi-displayport-fill::before { content: "\f6fc"; } +.bi-mortarboard-fill::before { content: "\f6fd"; } +.bi-mortarboard::before { content: "\f6fe"; } +.bi-terminal-x::before { content: "\f6ff"; } +.bi-arrow-through-heart-fill::before { content: "\f700"; } +.bi-arrow-through-heart::before { content: "\f701"; } +.bi-badge-sd-fill::before { content: "\f702"; } +.bi-badge-sd::before { content: "\f703"; } +.bi-bag-heart-fill::before { content: "\f704"; } +.bi-bag-heart::before { content: "\f705"; } +.bi-balloon-fill::before { content: "\f706"; } +.bi-balloon-heart-fill::before { content: "\f707"; } +.bi-balloon-heart::before { content: "\f708"; } +.bi-balloon::before { content: "\f709"; } +.bi-box2-fill::before { content: "\f70a"; } +.bi-box2-heart-fill::before { content: "\f70b"; } +.bi-box2-heart::before { content: "\f70c"; } +.bi-box2::before { content: "\f70d"; } +.bi-braces-asterisk::before { content: "\f70e"; } +.bi-calendar-heart-fill::before { content: "\f70f"; } +.bi-calendar-heart::before { content: "\f710"; } +.bi-calendar2-heart-fill::before { content: "\f711"; } +.bi-calendar2-heart::before { content: "\f712"; } +.bi-chat-heart-fill::before { content: "\f713"; } +.bi-chat-heart::before { content: "\f714"; } +.bi-chat-left-heart-fill::before { content: "\f715"; } +.bi-chat-left-heart::before { content: "\f716"; } +.bi-chat-right-heart-fill::before { content: "\f717"; } +.bi-chat-right-heart::before { content: "\f718"; } +.bi-chat-square-heart-fill::before { content: "\f719"; } +.bi-chat-square-heart::before { content: "\f71a"; } +.bi-clipboard-check-fill::before { content: "\f71b"; } +.bi-clipboard-data-fill::before { content: "\f71c"; } +.bi-clipboard-fill::before { content: "\f71d"; } +.bi-clipboard-heart-fill::before { content: "\f71e"; } +.bi-clipboard-heart::before { content: "\f71f"; } +.bi-clipboard-minus-fill::before { content: "\f720"; } +.bi-clipboard-plus-fill::before { content: "\f721"; } +.bi-clipboard-pulse::before { content: "\f722"; } +.bi-clipboard-x-fill::before { content: "\f723"; } +.bi-clipboard2-check-fill::before { content: "\f724"; } +.bi-clipboard2-check::before { content: "\f725"; } +.bi-clipboard2-data-fill::before { content: "\f726"; } +.bi-clipboard2-data::before { content: "\f727"; } +.bi-clipboard2-fill::before { content: "\f728"; } +.bi-clipboard2-heart-fill::before { content: "\f729"; } +.bi-clipboard2-heart::before { content: "\f72a"; } +.bi-clipboard2-minus-fill::before { content: "\f72b"; } +.bi-clipboard2-minus::before { content: "\f72c"; } +.bi-clipboard2-plus-fill::before { content: "\f72d"; } +.bi-clipboard2-plus::before { content: "\f72e"; } +.bi-clipboard2-pulse-fill::before { content: "\f72f"; } +.bi-clipboard2-pulse::before { content: "\f730"; } +.bi-clipboard2-x-fill::before { content: "\f731"; } +.bi-clipboard2-x::before { content: "\f732"; } +.bi-clipboard2::before { content: "\f733"; } +.bi-emoji-kiss-fill::before { content: "\f734"; } +.bi-emoji-kiss::before { content: "\f735"; } +.bi-envelope-heart-fill::before { content: "\f736"; } +.bi-envelope-heart::before { content: "\f737"; } +.bi-envelope-open-heart-fill::before { content: "\f738"; } +.bi-envelope-open-heart::before { content: "\f739"; } +.bi-envelope-paper-fill::before { content: "\f73a"; } +.bi-envelope-paper-heart-fill::before { content: "\f73b"; } +.bi-envelope-paper-heart::before { content: "\f73c"; } +.bi-envelope-paper::before { content: "\f73d"; } +.bi-filetype-aac::before { content: "\f73e"; } +.bi-filetype-ai::before { content: "\f73f"; } +.bi-filetype-bmp::before { content: "\f740"; } +.bi-filetype-cs::before { content: "\f741"; } +.bi-filetype-css::before { content: "\f742"; } +.bi-filetype-csv::before { content: "\f743"; } +.bi-filetype-doc::before { content: "\f744"; } +.bi-filetype-docx::before { content: "\f745"; } +.bi-filetype-exe::before { content: "\f746"; } +.bi-filetype-gif::before { content: "\f747"; } +.bi-filetype-heic::before { content: "\f748"; } +.bi-filetype-html::before { content: "\f749"; } +.bi-filetype-java::before { content: "\f74a"; } +.bi-filetype-jpg::before { content: "\f74b"; } +.bi-filetype-js::before { content: "\f74c"; } +.bi-filetype-jsx::before { content: "\f74d"; } +.bi-filetype-key::before { content: "\f74e"; } +.bi-filetype-m4p::before { content: "\f74f"; } +.bi-filetype-md::before { content: "\f750"; } +.bi-filetype-mdx::before { content: "\f751"; } +.bi-filetype-mov::before { content: "\f752"; } +.bi-filetype-mp3::before { content: "\f753"; } +.bi-filetype-mp4::before { content: "\f754"; } +.bi-filetype-otf::before { content: "\f755"; } +.bi-filetype-pdf::before { content: "\f756"; } +.bi-filetype-php::before { content: "\f757"; } +.bi-filetype-png::before { content: "\f758"; } +.bi-filetype-ppt::before { content: "\f75a"; } +.bi-filetype-psd::before { content: "\f75b"; } +.bi-filetype-py::before { content: "\f75c"; } +.bi-filetype-raw::before { content: "\f75d"; } +.bi-filetype-rb::before { content: "\f75e"; } +.bi-filetype-sass::before { content: "\f75f"; } +.bi-filetype-scss::before { content: "\f760"; } +.bi-filetype-sh::before { content: "\f761"; } +.bi-filetype-svg::before { content: "\f762"; } +.bi-filetype-tiff::before { content: "\f763"; } +.bi-filetype-tsx::before { content: "\f764"; } +.bi-filetype-ttf::before { content: "\f765"; } +.bi-filetype-txt::before { content: "\f766"; } +.bi-filetype-wav::before { content: "\f767"; } +.bi-filetype-woff::before { content: "\f768"; } +.bi-filetype-xls::before { content: "\f76a"; } +.bi-filetype-xml::before { content: "\f76b"; } +.bi-filetype-yml::before { content: "\f76c"; } +.bi-heart-arrow::before { content: "\f76d"; } +.bi-heart-pulse-fill::before { content: "\f76e"; } +.bi-heart-pulse::before { content: "\f76f"; } +.bi-heartbreak-fill::before { content: "\f770"; } +.bi-heartbreak::before { content: "\f771"; } +.bi-hearts::before { content: "\f772"; } +.bi-hospital-fill::before { content: "\f773"; } +.bi-hospital::before { content: "\f774"; } +.bi-house-heart-fill::before { content: "\f775"; } +.bi-house-heart::before { content: "\f776"; } +.bi-incognito::before { content: "\f777"; } +.bi-magnet-fill::before { content: "\f778"; } +.bi-magnet::before { content: "\f779"; } +.bi-person-heart::before { content: "\f77a"; } +.bi-person-hearts::before { content: "\f77b"; } +.bi-phone-flip::before { content: "\f77c"; } +.bi-plugin::before { content: "\f77d"; } +.bi-postage-fill::before { content: "\f77e"; } +.bi-postage-heart-fill::before { content: "\f77f"; } +.bi-postage-heart::before { content: "\f780"; } +.bi-postage::before { content: "\f781"; } +.bi-postcard-fill::before { content: "\f782"; } +.bi-postcard-heart-fill::before { content: "\f783"; } +.bi-postcard-heart::before { content: "\f784"; } +.bi-postcard::before { content: "\f785"; } +.bi-search-heart-fill::before { content: "\f786"; } +.bi-search-heart::before { content: "\f787"; } +.bi-sliders2-vertical::before { content: "\f788"; } +.bi-sliders2::before { content: "\f789"; } +.bi-trash3-fill::before { content: "\f78a"; } +.bi-trash3::before { content: "\f78b"; } +.bi-valentine::before { content: "\f78c"; } +.bi-valentine2::before { content: "\f78d"; } +.bi-wrench-adjustable-circle-fill::before { content: "\f78e"; } +.bi-wrench-adjustable-circle::before { content: "\f78f"; } +.bi-wrench-adjustable::before { content: "\f790"; } +.bi-filetype-json::before { content: "\f791"; } +.bi-filetype-pptx::before { content: "\f792"; } +.bi-filetype-xlsx::before { content: "\f793"; } +.bi-1-circle-fill::before { content: "\f796"; } +.bi-1-circle::before { content: "\f797"; } +.bi-1-square-fill::before { content: "\f798"; } +.bi-1-square::before { content: "\f799"; } +.bi-2-circle-fill::before { content: "\f79c"; } +.bi-2-circle::before { content: "\f79d"; } +.bi-2-square-fill::before { content: "\f79e"; } +.bi-2-square::before { content: "\f79f"; } +.bi-3-circle-fill::before { content: "\f7a2"; } +.bi-3-circle::before { content: "\f7a3"; } +.bi-3-square-fill::before { content: "\f7a4"; } +.bi-3-square::before { content: "\f7a5"; } +.bi-4-circle-fill::before { content: "\f7a8"; } +.bi-4-circle::before { content: "\f7a9"; } +.bi-4-square-fill::before { content: "\f7aa"; } +.bi-4-square::before { content: "\f7ab"; } +.bi-5-circle-fill::before { content: "\f7ae"; } +.bi-5-circle::before { content: "\f7af"; } +.bi-5-square-fill::before { content: "\f7b0"; } +.bi-5-square::before { content: "\f7b1"; } +.bi-6-circle-fill::before { content: "\f7b4"; } +.bi-6-circle::before { content: "\f7b5"; } +.bi-6-square-fill::before { content: "\f7b6"; } +.bi-6-square::before { content: "\f7b7"; } +.bi-7-circle-fill::before { content: "\f7ba"; } +.bi-7-circle::before { content: "\f7bb"; } +.bi-7-square-fill::before { content: "\f7bc"; } +.bi-7-square::before { content: "\f7bd"; } +.bi-8-circle-fill::before { content: "\f7c0"; } +.bi-8-circle::before { content: "\f7c1"; } +.bi-8-square-fill::before { content: "\f7c2"; } +.bi-8-square::before { content: "\f7c3"; } +.bi-9-circle-fill::before { content: "\f7c6"; } +.bi-9-circle::before { content: "\f7c7"; } +.bi-9-square-fill::before { content: "\f7c8"; } +.bi-9-square::before { content: "\f7c9"; } +.bi-airplane-engines-fill::before { content: "\f7ca"; } +.bi-airplane-engines::before { content: "\f7cb"; } +.bi-airplane-fill::before { content: "\f7cc"; } +.bi-airplane::before { content: "\f7cd"; } +.bi-alexa::before { content: "\f7ce"; } +.bi-alipay::before { content: "\f7cf"; } +.bi-android::before { content: "\f7d0"; } +.bi-android2::before { content: "\f7d1"; } +.bi-box-fill::before { content: "\f7d2"; } +.bi-box-seam-fill::before { content: "\f7d3"; } +.bi-browser-chrome::before { content: "\f7d4"; } +.bi-browser-edge::before { content: "\f7d5"; } +.bi-browser-firefox::before { content: "\f7d6"; } +.bi-browser-safari::before { content: "\f7d7"; } +.bi-c-circle-fill::before { content: "\f7da"; } +.bi-c-circle::before { content: "\f7db"; } +.bi-c-square-fill::before { content: "\f7dc"; } +.bi-c-square::before { content: "\f7dd"; } +.bi-capsule-pill::before { content: "\f7de"; } +.bi-capsule::before { content: "\f7df"; } +.bi-car-front-fill::before { content: "\f7e0"; } +.bi-car-front::before { content: "\f7e1"; } +.bi-cassette-fill::before { content: "\f7e2"; } +.bi-cassette::before { content: "\f7e3"; } +.bi-cc-circle-fill::before { content: "\f7e6"; } +.bi-cc-circle::before { content: "\f7e7"; } +.bi-cc-square-fill::before { content: "\f7e8"; } +.bi-cc-square::before { content: "\f7e9"; } +.bi-cup-hot-fill::before { content: "\f7ea"; } +.bi-cup-hot::before { content: "\f7eb"; } +.bi-currency-rupee::before { content: "\f7ec"; } +.bi-dropbox::before { content: "\f7ed"; } +.bi-escape::before { content: "\f7ee"; } +.bi-fast-forward-btn-fill::before { content: "\f7ef"; } +.bi-fast-forward-btn::before { content: "\f7f0"; } +.bi-fast-forward-circle-fill::before { content: "\f7f1"; } +.bi-fast-forward-circle::before { content: "\f7f2"; } +.bi-fast-forward-fill::before { content: "\f7f3"; } +.bi-fast-forward::before { content: "\f7f4"; } +.bi-filetype-sql::before { content: "\f7f5"; } +.bi-fire::before { content: "\f7f6"; } +.bi-google-play::before { content: "\f7f7"; } +.bi-h-circle-fill::before { content: "\f7fa"; } +.bi-h-circle::before { content: "\f7fb"; } +.bi-h-square-fill::before { content: "\f7fc"; } +.bi-h-square::before { content: "\f7fd"; } +.bi-indent::before { content: "\f7fe"; } +.bi-lungs-fill::before { content: "\f7ff"; } +.bi-lungs::before { content: "\f800"; } +.bi-microsoft-teams::before { content: "\f801"; } +.bi-p-circle-fill::before { content: "\f804"; } +.bi-p-circle::before { content: "\f805"; } +.bi-p-square-fill::before { content: "\f806"; } +.bi-p-square::before { content: "\f807"; } +.bi-pass-fill::before { content: "\f808"; } +.bi-pass::before { content: "\f809"; } +.bi-prescription::before { content: "\f80a"; } +.bi-prescription2::before { content: "\f80b"; } +.bi-r-circle-fill::before { content: "\f80e"; } +.bi-r-circle::before { content: "\f80f"; } +.bi-r-square-fill::before { content: "\f810"; } +.bi-r-square::before { content: "\f811"; } +.bi-repeat-1::before { content: "\f812"; } +.bi-repeat::before { content: "\f813"; } +.bi-rewind-btn-fill::before { content: "\f814"; } +.bi-rewind-btn::before { content: "\f815"; } +.bi-rewind-circle-fill::before { content: "\f816"; } +.bi-rewind-circle::before { content: "\f817"; } +.bi-rewind-fill::before { content: "\f818"; } +.bi-rewind::before { content: "\f819"; } +.bi-train-freight-front-fill::before { content: "\f81a"; } +.bi-train-freight-front::before { content: "\f81b"; } +.bi-train-front-fill::before { content: "\f81c"; } +.bi-train-front::before { content: "\f81d"; } +.bi-train-lightrail-front-fill::before { content: "\f81e"; } +.bi-train-lightrail-front::before { content: "\f81f"; } +.bi-truck-front-fill::before { content: "\f820"; } +.bi-truck-front::before { content: "\f821"; } +.bi-ubuntu::before { content: "\f822"; } +.bi-unindent::before { content: "\f823"; } +.bi-unity::before { content: "\f824"; } +.bi-universal-access-circle::before { content: "\f825"; } +.bi-universal-access::before { content: "\f826"; } +.bi-virus::before { content: "\f827"; } +.bi-virus2::before { content: "\f828"; } +.bi-wechat::before { content: "\f829"; } +.bi-yelp::before { content: "\f82a"; } +.bi-sign-stop-fill::before { content: "\f82b"; } +.bi-sign-stop-lights-fill::before { content: "\f82c"; } +.bi-sign-stop-lights::before { content: "\f82d"; } +.bi-sign-stop::before { content: "\f82e"; } +.bi-sign-turn-left-fill::before { content: "\f82f"; } +.bi-sign-turn-left::before { content: "\f830"; } +.bi-sign-turn-right-fill::before { content: "\f831"; } +.bi-sign-turn-right::before { content: "\f832"; } +.bi-sign-turn-slight-left-fill::before { content: "\f833"; } +.bi-sign-turn-slight-left::before { content: "\f834"; } +.bi-sign-turn-slight-right-fill::before { content: "\f835"; } +.bi-sign-turn-slight-right::before { content: "\f836"; } +.bi-sign-yield-fill::before { content: "\f837"; } +.bi-sign-yield::before { content: "\f838"; } +.bi-ev-station-fill::before { content: "\f839"; } +.bi-ev-station::before { content: "\f83a"; } +.bi-fuel-pump-diesel-fill::before { content: "\f83b"; } +.bi-fuel-pump-diesel::before { content: "\f83c"; } +.bi-fuel-pump-fill::before { content: "\f83d"; } +.bi-fuel-pump::before { content: "\f83e"; } +.bi-0-circle-fill::before { content: "\f83f"; } +.bi-0-circle::before { content: "\f840"; } +.bi-0-square-fill::before { content: "\f841"; } +.bi-0-square::before { content: "\f842"; } +.bi-rocket-fill::before { content: "\f843"; } +.bi-rocket-takeoff-fill::before { content: "\f844"; } +.bi-rocket-takeoff::before { content: "\f845"; } +.bi-rocket::before { content: "\f846"; } +.bi-stripe::before { content: "\f847"; } +.bi-subscript::before { content: "\f848"; } +.bi-superscript::before { content: "\f849"; } +.bi-trello::before { content: "\f84a"; } +.bi-envelope-at-fill::before { content: "\f84b"; } +.bi-envelope-at::before { content: "\f84c"; } +.bi-regex::before { content: "\f84d"; } +.bi-text-wrap::before { content: "\f84e"; } +.bi-sign-dead-end-fill::before { content: "\f84f"; } +.bi-sign-dead-end::before { content: "\f850"; } +.bi-sign-do-not-enter-fill::before { content: "\f851"; } +.bi-sign-do-not-enter::before { content: "\f852"; } +.bi-sign-intersection-fill::before { content: "\f853"; } +.bi-sign-intersection-side-fill::before { content: "\f854"; } +.bi-sign-intersection-side::before { content: "\f855"; } +.bi-sign-intersection-t-fill::before { content: "\f856"; } +.bi-sign-intersection-t::before { content: "\f857"; } +.bi-sign-intersection-y-fill::before { content: "\f858"; } +.bi-sign-intersection-y::before { content: "\f859"; } +.bi-sign-intersection::before { content: "\f85a"; } +.bi-sign-merge-left-fill::before { content: "\f85b"; } +.bi-sign-merge-left::before { content: "\f85c"; } +.bi-sign-merge-right-fill::before { content: "\f85d"; } +.bi-sign-merge-right::before { content: "\f85e"; } +.bi-sign-no-left-turn-fill::before { content: "\f85f"; } +.bi-sign-no-left-turn::before { content: "\f860"; } +.bi-sign-no-parking-fill::before { content: "\f861"; } +.bi-sign-no-parking::before { content: "\f862"; } +.bi-sign-no-right-turn-fill::before { content: "\f863"; } +.bi-sign-no-right-turn::before { content: "\f864"; } +.bi-sign-railroad-fill::before { content: "\f865"; } +.bi-sign-railroad::before { content: "\f866"; } +.bi-building-add::before { content: "\f867"; } +.bi-building-check::before { content: "\f868"; } +.bi-building-dash::before { content: "\f869"; } +.bi-building-down::before { content: "\f86a"; } +.bi-building-exclamation::before { content: "\f86b"; } +.bi-building-fill-add::before { content: "\f86c"; } +.bi-building-fill-check::before { content: "\f86d"; } +.bi-building-fill-dash::before { content: "\f86e"; } +.bi-building-fill-down::before { content: "\f86f"; } +.bi-building-fill-exclamation::before { content: "\f870"; } +.bi-building-fill-gear::before { content: "\f871"; } +.bi-building-fill-lock::before { content: "\f872"; } +.bi-building-fill-slash::before { content: "\f873"; } +.bi-building-fill-up::before { content: "\f874"; } +.bi-building-fill-x::before { content: "\f875"; } +.bi-building-fill::before { content: "\f876"; } +.bi-building-gear::before { content: "\f877"; } +.bi-building-lock::before { content: "\f878"; } +.bi-building-slash::before { content: "\f879"; } +.bi-building-up::before { content: "\f87a"; } +.bi-building-x::before { content: "\f87b"; } +.bi-buildings-fill::before { content: "\f87c"; } +.bi-buildings::before { content: "\f87d"; } +.bi-bus-front-fill::before { content: "\f87e"; } +.bi-bus-front::before { content: "\f87f"; } +.bi-ev-front-fill::before { content: "\f880"; } +.bi-ev-front::before { content: "\f881"; } +.bi-globe-americas::before { content: "\f882"; } +.bi-globe-asia-australia::before { content: "\f883"; } +.bi-globe-central-south-asia::before { content: "\f884"; } +.bi-globe-europe-africa::before { content: "\f885"; } +.bi-house-add-fill::before { content: "\f886"; } +.bi-house-add::before { content: "\f887"; } +.bi-house-check-fill::before { content: "\f888"; } +.bi-house-check::before { content: "\f889"; } +.bi-house-dash-fill::before { content: "\f88a"; } +.bi-house-dash::before { content: "\f88b"; } +.bi-house-down-fill::before { content: "\f88c"; } +.bi-house-down::before { content: "\f88d"; } +.bi-house-exclamation-fill::before { content: "\f88e"; } +.bi-house-exclamation::before { content: "\f88f"; } +.bi-house-gear-fill::before { content: "\f890"; } +.bi-house-gear::before { content: "\f891"; } +.bi-house-lock-fill::before { content: "\f892"; } +.bi-house-lock::before { content: "\f893"; } +.bi-house-slash-fill::before { content: "\f894"; } +.bi-house-slash::before { content: "\f895"; } +.bi-house-up-fill::before { content: "\f896"; } +.bi-house-up::before { content: "\f897"; } +.bi-house-x-fill::before { content: "\f898"; } +.bi-house-x::before { content: "\f899"; } +.bi-person-add::before { content: "\f89a"; } +.bi-person-down::before { content: "\f89b"; } +.bi-person-exclamation::before { content: "\f89c"; } +.bi-person-fill-add::before { content: "\f89d"; } +.bi-person-fill-check::before { content: "\f89e"; } +.bi-person-fill-dash::before { content: "\f89f"; } +.bi-person-fill-down::before { content: "\f8a0"; } +.bi-person-fill-exclamation::before { content: "\f8a1"; } +.bi-person-fill-gear::before { content: "\f8a2"; } +.bi-person-fill-lock::before { content: "\f8a3"; } +.bi-person-fill-slash::before { content: "\f8a4"; } +.bi-person-fill-up::before { content: "\f8a5"; } +.bi-person-fill-x::before { content: "\f8a6"; } +.bi-person-gear::before { content: "\f8a7"; } +.bi-person-lock::before { content: "\f8a8"; } +.bi-person-slash::before { content: "\f8a9"; } +.bi-person-up::before { content: "\f8aa"; } +.bi-scooter::before { content: "\f8ab"; } +.bi-taxi-front-fill::before { content: "\f8ac"; } +.bi-taxi-front::before { content: "\f8ad"; } +.bi-amd::before { content: "\f8ae"; } +.bi-database-add::before { content: "\f8af"; } +.bi-database-check::before { content: "\f8b0"; } +.bi-database-dash::before { content: "\f8b1"; } +.bi-database-down::before { content: "\f8b2"; } +.bi-database-exclamation::before { content: "\f8b3"; } +.bi-database-fill-add::before { content: "\f8b4"; } +.bi-database-fill-check::before { content: "\f8b5"; } +.bi-database-fill-dash::before { content: "\f8b6"; } +.bi-database-fill-down::before { content: "\f8b7"; } +.bi-database-fill-exclamation::before { content: "\f8b8"; } +.bi-database-fill-gear::before { content: "\f8b9"; } +.bi-database-fill-lock::before { content: "\f8ba"; } +.bi-database-fill-slash::before { content: "\f8bb"; } +.bi-database-fill-up::before { content: "\f8bc"; } +.bi-database-fill-x::before { content: "\f8bd"; } +.bi-database-fill::before { content: "\f8be"; } +.bi-database-gear::before { content: "\f8bf"; } +.bi-database-lock::before { content: "\f8c0"; } +.bi-database-slash::before { content: "\f8c1"; } +.bi-database-up::before { content: "\f8c2"; } +.bi-database-x::before { content: "\f8c3"; } +.bi-database::before { content: "\f8c4"; } +.bi-houses-fill::before { content: "\f8c5"; } +.bi-houses::before { content: "\f8c6"; } +.bi-nvidia::before { content: "\f8c7"; } +.bi-person-vcard-fill::before { content: "\f8c8"; } +.bi-person-vcard::before { content: "\f8c9"; } +.bi-sina-weibo::before { content: "\f8ca"; } +.bi-tencent-qq::before { content: "\f8cb"; } +.bi-wikipedia::before { content: "\f8cc"; } +.bi-alphabet-uppercase::before { content: "\f2a5"; } +.bi-alphabet::before { content: "\f68a"; } +.bi-amazon::before { content: "\f68d"; } +.bi-arrows-collapse-vertical::before { content: "\f690"; } +.bi-arrows-expand-vertical::before { content: "\f695"; } +.bi-arrows-vertical::before { content: "\f698"; } +.bi-arrows::before { content: "\f6a2"; } +.bi-ban-fill::before { content: "\f6a3"; } +.bi-ban::before { content: "\f6b6"; } +.bi-bing::before { content: "\f6c2"; } +.bi-cake::before { content: "\f6e0"; } +.bi-cake2::before { content: "\f6ed"; } +.bi-cookie::before { content: "\f6ee"; } +.bi-copy::before { content: "\f759"; } +.bi-crosshair::before { content: "\f769"; } +.bi-crosshair2::before { content: "\f794"; } +.bi-emoji-astonished-fill::before { content: "\f795"; } +.bi-emoji-astonished::before { content: "\f79a"; } +.bi-emoji-grimace-fill::before { content: "\f79b"; } +.bi-emoji-grimace::before { content: "\f7a0"; } +.bi-emoji-grin-fill::before { content: "\f7a1"; } +.bi-emoji-grin::before { content: "\f7a6"; } +.bi-emoji-surprise-fill::before { content: "\f7a7"; } +.bi-emoji-surprise::before { content: "\f7ac"; } +.bi-emoji-tear-fill::before { content: "\f7ad"; } +.bi-emoji-tear::before { content: "\f7b2"; } +.bi-envelope-arrow-down-fill::before { content: "\f7b3"; } +.bi-envelope-arrow-down::before { content: "\f7b8"; } +.bi-envelope-arrow-up-fill::before { content: "\f7b9"; } +.bi-envelope-arrow-up::before { content: "\f7be"; } +.bi-feather::before { content: "\f7bf"; } +.bi-feather2::before { content: "\f7c4"; } +.bi-floppy-fill::before { content: "\f7c5"; } +.bi-floppy::before { content: "\f7d8"; } +.bi-floppy2-fill::before { content: "\f7d9"; } +.bi-floppy2::before { content: "\f7e4"; } +.bi-gitlab::before { content: "\f7e5"; } +.bi-highlighter::before { content: "\f7f8"; } +.bi-marker-tip::before { content: "\f802"; } +.bi-nvme-fill::before { content: "\f803"; } +.bi-nvme::before { content: "\f80c"; } +.bi-opencollective::before { content: "\f80d"; } +.bi-pci-card-network::before { content: "\f8cd"; } +.bi-pci-card-sound::before { content: "\f8ce"; } +.bi-radar::before { content: "\f8cf"; } +.bi-send-arrow-down-fill::before { content: "\f8d0"; } +.bi-send-arrow-down::before { content: "\f8d1"; } +.bi-send-arrow-up-fill::before { content: "\f8d2"; } +.bi-send-arrow-up::before { content: "\f8d3"; } +.bi-sim-slash-fill::before { content: "\f8d4"; } +.bi-sim-slash::before { content: "\f8d5"; } +.bi-sourceforge::before { content: "\f8d6"; } +.bi-substack::before { content: "\f8d7"; } +.bi-threads-fill::before { content: "\f8d8"; } +.bi-threads::before { content: "\f8d9"; } +.bi-transparency::before { content: "\f8da"; } +.bi-twitter-x::before { content: "\f8db"; } +.bi-type-h4::before { content: "\f8dc"; } +.bi-type-h5::before { content: "\f8dd"; } +.bi-type-h6::before { content: "\f8de"; } +.bi-backpack-fill::before { content: "\f8df"; } +.bi-backpack::before { content: "\f8e0"; } +.bi-backpack2-fill::before { content: "\f8e1"; } +.bi-backpack2::before { content: "\f8e2"; } +.bi-backpack3-fill::before { content: "\f8e3"; } +.bi-backpack3::before { content: "\f8e4"; } +.bi-backpack4-fill::before { content: "\f8e5"; } +.bi-backpack4::before { content: "\f8e6"; } +.bi-brilliance::before { content: "\f8e7"; } +.bi-cake-fill::before { content: "\f8e8"; } +.bi-cake2-fill::before { content: "\f8e9"; } +.bi-duffle-fill::before { content: "\f8ea"; } +.bi-duffle::before { content: "\f8eb"; } +.bi-exposure::before { content: "\f8ec"; } +.bi-gender-neuter::before { content: "\f8ed"; } +.bi-highlights::before { content: "\f8ee"; } +.bi-luggage-fill::before { content: "\f8ef"; } +.bi-luggage::before { content: "\f8f0"; } +.bi-mailbox-flag::before { content: "\f8f1"; } +.bi-mailbox2-flag::before { content: "\f8f2"; } +.bi-noise-reduction::before { content: "\f8f3"; } +.bi-passport-fill::before { content: "\f8f4"; } +.bi-passport::before { content: "\f8f5"; } +.bi-person-arms-up::before { content: "\f8f6"; } +.bi-person-raised-hand::before { content: "\f8f7"; } +.bi-person-standing-dress::before { content: "\f8f8"; } +.bi-person-standing::before { content: "\f8f9"; } +.bi-person-walking::before { content: "\f8fa"; } +.bi-person-wheelchair::before { content: "\f8fb"; } +.bi-shadows::before { content: "\f8fc"; } +.bi-suitcase-fill::before { content: "\f8fd"; } +.bi-suitcase-lg-fill::before { content: "\f8fe"; } +.bi-suitcase-lg::before { content: "\f8ff"; } +.bi-suitcase::before { content: "\f900"; } +.bi-suitcase2-fill::before { content: "\f901"; } +.bi-suitcase2::before { content: "\f902"; } +.bi-vignette::before { content: "\f903"; } diff --git a/docs/site_libs/bootstrap/bootstrap-icons.woff b/docs/site_libs/bootstrap/bootstrap-icons.woff new file mode 100644 index 0000000000000000000000000000000000000000..dbeeb055674125ad78fda0f3d166b36e5cc92336 GIT binary patch literal 176200 zcmZ6SbyyUC7sW9!5J7YWX;@miUAjA$5+r2-2|<=_6$w#bgHDkJBm@EJQV`gsB}7_e z>5^`EXMTUaKF=J!_jAs@GaIZkv+Ad>rbcp!goNbs7Y&kIz|ZSC4FA=@^8f#+8<{AP zkX*U}aA{yOW_iaEsBa`F0x%VzRs=R%IWi+5`{#Bq02WO`BDzUJ;u&f8kFVLuEx?h4 zMBJa`vT!BIHQG-iKWulOIoKgcE<5o7eZUM7iN_@$6rKSPV75Tb1Z?b=U)-d6_S_rj zb9xEP3?(69xoUUw+|JFz9>_TZ5y%X{ZajFd$oJgN{{_kAkUs!q1~!(Pk1n~o+dX$6 zxeTHZ@w(f<8mp94fFa;74Vc@X@NAiYJYWru{+ahdj|2!44{bFy6^xU~= z_orKvk6@2_YHRnB1SKPqF3cq=i+**b<4RZgOJ@oe$MEROB%IQu8YEz^-LPH8w{KnF zzI}2PqF8r_z3T{Zecc5_yH0HcUixg`{rq{RVl3LK>AS)jbl< zh?_rvqw~*LpNhCh7^x@yH$@M*zeatJKB0n?M{^louWX<|&ZoeR`;ml6fJ;GCzf+*@ zsPHM=Bqd$Q^m8PMIN|$sB)V}lxjA(}<`gQrv*Gl)(@TaaFTqU9+_UM0R^qeIUr%j{ z{JoBHkAE=Ntl;j2P2TU^yt&=*RphAEF6gut9_4+0L+>ccbT*+RBhQ4^r}ANOSK)Ti z>!MHYW{JiQCaNYTBgQ@^%2UNIMHWTXMY$_Qfh%$*HsS`iP1r^riyP{ih>loR8Ssys zty~(>sxp0U{A5J0%8b!ieMHm8)XLawMAyem)>wb@!6-5@#y5Q*Y)QW{&N&*dIjpjzK0=t1@N1nLEq!r~C zF1tjg6;7L04!en~_nPbs2UjWZ8^0TVTBX8o(mjlV{ZCCU+2dvBrWc>CtbCBd zi99qkPb|vlDt;|h689;0#bz&CD!)o%+@+w2LTUwC|4B|WyX4)n(Qe_fn3ZMnK*6f$ zZt5{#NVS}Lc5(mE;_9v4h+}9-d9zCLaPkW8ZsKuZNO-eh@-K&7-D5{9)8wIfA5tsB znIexNzg4aJie`1QpC&%qQ(Ar_Q{H}4$_K-gE7tWjp&IffCrj$yVP~I0b>vI42d?a5 zk9p3%hN{UIUtduS{1U21`LlmDCoqMnRDH=X@GDbp=L*fv@|l`Y1C0Qr|T^D?8U`79D?JA1gY2 z^`0)3(QpPrPof~jsMk5amd8#{(kVr>*L=avD-JfA;nXKdlX9z9b>XSkTOMZt@#NI* z-unw$UWq&or4pkluDw1B*Nny!MDO=}UXU=F7#8-?mG#Ol^q@Ett=9nX>(|s1CE2rIr=zBSLn#SC!QH8*{;ekNE!GokIK8C2NRlT=|gvAs_n)bQEe z^>@&ENOkjbTl(>i>bK8b(#IC6Bc3~N);xE6GSOFE!|0|yLD;XR9E*C+JTbao8UOoy z-|!?QWKz!V`fsjvqkZR-_aVP1zJ{;ao@6jS&8|^i7m}Wg`y%)o?VG^(yz_VYzN&Oz zGs332?6=vv>%PxPWXMol&Al}hX@Xw0#~6=qeWsn$c+EPW^h95|*SgF}T*zo&&8;=1 z2E0JE_8PpQN1%pxEoeWaVKCHI{%i4?`o4X`cxid|Z~b+reXo;&dCKWv zqGerv|E27bfLC$@?_}b}L$fZc^-|B#2Kvd~(h}aqt_HHwj}7fpEAC!34bqdD8v=ec z#l(jVL6*1u%8Hj=>c&gsidR?aPAu<@4vTyBTHP8Ql>IZ_Kv9ZaU8!$iDlG^a*h4l= zDR0<~cJBF{O|q4?(ErKu)~_p=65TMD9Jq}PpYn2#4w}C0(>D1+vbE`tTD_tB*Px$G zL~GBoddW!@NrJAgM;(uQQP4y$vT}-{W`G~rJyo!A>mcuBJY=rf$8}2TAoIzlL~XD8 zyNQ)h?}O|p$I(tqRX!=}PEQlvK$N2mQ)GY{krm);$IJZBH95M0pTDmWer_Oxlu-su15 zbX<7~1Ag(d{2BkbX;?!`+syLjw%>_X zb45$1+0IDF?Xa@4_0_|Z;E}@pyK~XVyb^UZ8~P^fd;D(h=`;C`_&vd6&vTB8 zitHt>Bf>eqe7pYM(5bh4TmP=diFs&s_TtRe=J8SJE1M;nqxN(Ai^7Y^u-TR^`NPlW z>Mgw&Yhhb0$1|tCEp3~-4X5rcofq>5CoO04=P%`#D39Lj2d{WF|Dil#JC_gZVWxZt zx!vB%ljF}#)kp3WQP~EYZF~`0%VPOJfXplcKD+Wlw^qWErj%0h4ZZTR0p}#dox(x6 z&OmOGY2$`pWP?(sf#mS5Sf#lEcCp*NO78}wzTON`YWb(J#LRR%KBBYjo}Gffh|K*g zivBlFZQq2r$tn6HSZ9xf#K>>8wMG9^dd!gYCeP0NF_Y<=gVyVICWqX?45m@yv)F&m zhkU_I%{Oc!%UVZg)BinxO#drlv-S83s~dTG>w%ruA*a9Qjc|4+yQ@`&c_EVKv`F*(t zADw;-SLf5M1b-J9e(HFR;aY!R8Llk){&$O=xBfux9p% zmh2cT*Jfo4Hl$?^goh?F@RF_*mTZ-H3hfW659d4%&~) z72O`tw{w;|yHTfiQkOe4%FEq((q3I|wMG@xaoxV`x3nCDIWFYy%R@x)LpjFl9g16Z zkJ#myqdM$7{TZm#+kblMFwon)7i>?StL>C`o+%pznz{wr(&VhE$?mG%jP7vCTb;0-_5k|c`8pnkZj+aTd3u5e<$CbJtw#| zS}S|bp0I}iW9cJa z)g}B+yklJ}0YUMfKdSvMs!j{}R*gJp*gPXWSF$l_`q2E3@vQh<{GvXr&FQRVcKC(G zBiRfp0gB`|E;;r~5UD7EmF@v??^{#K@dKhV4+0~mXLJ6&__`AB?@@B!wKJ~VXpN!a zM``(!H736wnOpI-yc=(W=CZdweV*^AE%#Kke31O(;O~j2!>Iz}Xl4)7=-AA{>TzIm zp~u3>acHR0r~59e0*-EO%+fzpJv}YylH2D!Bb+^&C1z4QdMzp^B=>cnGVY-QA2;Pr zn=pT(9N}6q+DkpQw8_(6F5VMAmYOm<7!q7UA5%7I1Hbo!g?-C&YN@NevH9=o2$ODI zY1{c9>)I#XH-!As8hWPkF@DKL zP3@z4fB$fN?&2lkaclpJ?9=%1u=TM06xofhqJ2_}jkg5qp{1Xs37Km#sWekO8)9aY zi7yHoL?=@>`26CeM>7}u{Ag-#O{qFIHvCTXPOeX$a^3Jb$fw`rtfh6&51RSxO@CH( zE(N@tf5WzqK7`+tsQsgSLl|f;97Z?$`O{@6Dps@Z5}UaLW*{isKc|@(@vWSCPB}4@xnAnUI3;%QDX2$wBkM(aFi%)j*>d;M^|Rb_;fva^R?6M* zR?S(&O!vV}j<&qniWdR3;*-=H6p2dnFZ4g%E$V14w+Uw7kB{%@{Cmq2k-^~9VeaXh zaZf(p<_Gg!i(Oy}m1AU0TZxc#&rPqk#(#SLl0B5ST9uxR{_--hG%@QnF;hFY9N}Ru zilUpHHW1CC>VH4l@qPbVkbNzO1O;2$Cn2f#H|^Wr*;)GYG%{GfUca}XCa+Us{~@@dTvexL41vV*LXZy`&jb@7v(?p06b z;n=GPRBbA4AW<(m(!uSi*=e==VUCWw@SW(nNK__+-#XczRVV8Nr@H#R}r3jP3g)QQ9 z5{8=)Wg?7CVEP;;x_v_$CdrkL3h9tZEIwr!1=u2!BLSjk@Kh_u!!s>?`5 zyRa_K<1D%YNDEKq8!^LIkk+b2i5YnsRY^N8@aM$FNaH84GL8|wzEzE?T%}J67ujW=JS+rTMbil^ zhTzn?%(I8NVe}|EekWzPJ<(0Yr6eO(vx(d39(<1IrsdL@(W{}0s)QB3MOL$jYxX7K zIJ*Pn3u}nMFNYzpC+M_?POk7FqMNcyea3UmUQ{JxVJfnkYp*(kQKJ`A$yPXq^o5G6 z_x0fxy2c`gWnc}MG(jgx_$}g^o=Z-KtOh@(lB=*CDW~D`Hls;{Ke1A>&;co@;!>AE ziM3#LVuo)L#*&9mko#;^@IG~o&zMU2!gykE!f+>2PR*q%BOZ&nCcS&LunI}RQl;0& zr5VDtXoUOKeI!DC@=QHOk^B%uOTB>a~aqtRSX^kOIs zK{l(nv}6ckkDv6JX`Hbw7UL-JM|6eZ$Y#A2)M-CGP6XMk`4H_TQ&^I5Pa_Yh$DWAw zx?9+ofz`ZE41PCk2P;5HK^KkT>hl?DD>kqK?6H0yEiR4#!-`3rJ|A5AXO8gRA%jaopfMYSl?F`f%Jdmjb^2~r?&3rNrah9GAwg^dy&V{?L-R4^?NKmvjL zKwuN>(gzF-F!u@oDS-|%0EVdmqlAH^3joD|WHzv)Ff9PmE@P0PdccCz*?TV;_jAMs zt=1W;OUHO}+u3`q2KTevRWsLq6ol$@j15_0QodIJLv3*Bw=Q7LVAVR^Ib*G-l<1m{ zuQ=}#O$V0<%$m7eHE1>ca}_$-BT)bf;(p$5!KiVas?m)#W{On=Tz5w7=ndi*W;EH- zFIZyTrd0tW9WW>X!x}K;K?52~KCMni+n6mTa_BLL{}ZOc7EXy$yT;5OOD?BEN1MSK zORfj7N*ww-k2B&$oS4WXeL7l87Qoh_qYZuo^l>{Q{uA8)y(6}9^u z#heLa?^*d_>E$>MC(*dCM7IuXQbzC9K}=<;h6Pf>=na7Kxq(!VCYay?T?iY{0E+;e z1!FKcqybEd0i6UE(8&ZHa?lag1e`u72-88x079?-;D0l+L3kO2w?HTWChJl_co&2i zaF@v#V6deca4=pl@Hp<{I3z{QFiDd=mZ}y=QKOizM8^e}K}>q8tA@6_V<`uJU1}Zh zNE{aeK}ZimcXj~s=z{S`(BTA~bWOnN0tY3qfwn$qzXI%hs57CrhacQe4QNjSI~Vnm z1|cH|{r-dC&b=f7sKWtH>jIqv6c9IN1*R2hfzx8aX;RLFE}h$hn8ef|O>Is`7fjOo z?qMiDZE~Tmg@}Mr)K`RgzJN2KLPvHG{O?1|<5aAt){)#Zo z7j`C;=-eB`n5X9BILJkM!C)E~{K~>Vmf);uQNiOS?@Y+=xq{*n{ z$_m=rfISpPj{GD`OEkDHg3pOVpp-N5EKyQeMG7C*aE2AFYp~&1ARr9{D1ks00wqg{ zQQY5!hOaH_UK`uFLyPEd17HZACFmG5*uvKW-jG)m$OA?$V8o*p_hs~eW%$KpOyMc-zQk&T!h}NOH%e zCn701RR|&FRS>d;(^}|X6aD&%-0>M3ZO;HFU~Up@BPFokOWat)&5r=XftR+YD;^=l zJAt<~4TSZ8av7OX{T)59>|r%vAig`CJ?+yVBx->D>RaOVZ;yI=52^5(g4#6L!6X!zzM0DD(Vr$$C1prL| z+&6FZ<*D#rFDCr0Dr0>&+ML7}y6J=13M%8`4GKVBF&}He(i6I}G7~s?Pu$^=C2I`? zU4+Aot~)31R9XTDC~Tl`0b9JT{V#%&ElHPoIi0E4}SU_Mz9~4JW7C@m!IMC==U=jtiH@JAMl4KN2 z>-n5jLD2<885C_$)Ire)WEqSsYk;BxijJx8cib)WF;Z+PB5w}k4$1~7OrT_ea-E>n z$D*6AV#60ZO@Log*sr1j}%|E{I&J2_X)6oDgzm&N-v>PNEnBmq}o|gNn$dkIKXW7%g%s z^$kNHr#6Kw7Ngux#OF9|69+^|0o(@sR0rxffS&^X4l``GM;I{Xh}SX>YxwkE4APqG z>PfM=;x(NR{IKQsC2U-o=shA%wBl8Ux0(b7+lQxS1rWa$kP5mBB-RL^+YUD9gN|$> z5Zo6-4$_YO1s#t694^oa&+t~>*Fg?mAFIS`UPttEaxtQ0qcRX7`<6(|+}I9YGtQ}> ziwl<3^fH6!zpn(scOVqxy{aHh=f-UG4j1af>8MJHAfHSQJ!s{T+ z1fk!5P#1tt-ew@wt3^OZ7IaL&X~h_D8XGtbY;?(r8Zn9&9^ z@fqZ<`*L9B7|h%TGxXpb2`G?xt^;Hy-hlh!0rur43I-RzAU_yejiCL^9rUJ9cg>J0>zbbvqv5a0y@l0aYs2*?6~ zKp-Ha0hsRqQ!;?qsZ2!EQexE|cUj|mmb95tf5yvH%u;RRBhQKG+wmB62^lq}v44*O z5N-DWa0SmspT!4`9?_+L4Nuar71n==tkK6n>|Sw?EI~ zia(;)V%m{>FSFqBD4=KN#&${z4PdBYI!|Mv@i2N_CNGIdnFTk#fS$2;L}C3oynU86 zG`=n%Rc2w~{&q^b8NuG&nhgM%G7EohZ>NMy66`5Du$>G#Eb*`u4JI$4w=xU1A^|<$ zpAdzw8{zFK@-cwP2AFzGeqq-FCeKodo(D6W@eT6tWHwIRwre-N@N)wF9Pte@@iH6R z(nL@F8IJfMsce~zsmt57ezyp7)BMo*pqdl_+y#I(VUCHPEk5XLhRnuKvh7;+O?0Ph zAQ1nl1r*GvPT6A=P&@<+z&Qr`e!2jKD}IhCM2YEO$p|R2(VbrB88TTrG{mip7WVkX z)B6E3i)Dm4SeP!e7)AfMUj7;K| zS14Ef=y|w|br4NJY;U``095zHT>By2Ue-|@AF-pZkaQB9w z5Zv{lkDy?=@zWVuI*R)XUmpP3T?kplXnp}4)g&Ps`+BX)*%PcexbfEMS$c~5&Vx; zW`V#1$=#JA8&qH3gCP7gJwC9UXa%y7F2DXN1`0XpnAu=DH@+D&4Lp{_uY6#Qgy5tH zw?QETB?goy+!}tk8aQf0!vom4R-iN(l>V<#6KLEOAR824o`T?92em-y0wsuBV-#od zpYQ;y5pE5p{1G0FnmloCKn~z2cWu}I#1LE=0kUd=BmM5HI5}9Yg%71kT>Mz>s{0F7*Ntc0iF`m z@gz{-oD<|7*7Qy0+htpyGG-&;3^Z8a8R(XcU6yBNSCv|(tsjKx*WI5 zN;b&2+y*{Lau8h5U^6J85S-DVI=99F?u`V=T~6NRAsduj9)hs14LNZG>3%q>S@Sv^RjPU25a_#Zgo@M5&Shc5Qsl5SVdQ`Z z#=)p{82>V_jr-%1NF$Y+_aCC=0$xFn5$vkF1n!t6>`%x~E_?2e`W_!c$5Ro|O zF_8l>l6gMrTjv1jL;#2bVD#n%ZR+mrn57s=o{zj8Mk;1HAEHZBG^nhE-$Lu3il}N<8z9!Jp7V&hWj#FhSTCbN-ps{+0NZ1L)6RR-a$zxe(X`+5Q`C^tosW(9RE25pc4){I-pYt!oGYE zMuE^W207}rXqeEDC7u0oa&M9pGGDqVfaCU)^`la)o2h%p(sEQX&hS$Thw&bZ?(7kZ@H9x4HZAzmTCK(d=9k!L-JiB#wlyRc~K zjA8|~jTfa*+Pb#7CwM$#-;|bGpnxAe?Q-?xI^u==CJQfZdIOfv`a+<>|Ez)VSI!vv z?!+K91L42Hgv89&JtVTXd6^Ih6q&_pdcNV7KFGsHar~UymAM&je zw38O3P@VEMY@}oS$V_exeWH}nx2X*!#R|bu;Qjc4UX^fQ=@&D&TE~PFx+hDprDkFe zH(yevt{h0`+umlaI6R`nwyo~6MjZ?$GlYi9Bk@h@czb~pY$tPAf=tD#@OEu+Jhsy+ zmMl4I zZ2yT2En?I_1Yc^0_-7f3Ra|(_5&;W+#fNlYHz#&+!&8=jBGAJ2c&L2`ru8Hc&A08y zU{37SMhLG8V%tkvl*l&EOe$*I%FyjS&3a^;2e&KmFC_`kD;?POscZ#mzc47Qr;{DI zltv)_r1wCpd+4ynk7jF;&Gd@FD~uNMf%B^#miPlXtjzSu1aWKH3Edf#t;-Z59M!l+ zR#yiZDBt1!U_X=dax5VEa=o`4srUG0vZb#PkbjwcA738SrCeU{xk=j74JS)MJK(<1 z^A)@tvr@cNxx+--vvC3uYT)Iu^_Bnda_kIs+0pMl0M!A=Z1iodG(S4T={65>hYR?G z%7&}thp15BYsDPuyx(0681EoLb}7b4s}W292x#`&(lB7(tj^*S=;^JmCbMi?%7u`w2!wWtr- z3J%SWUfj8*DwA!)^Y`dfjjXOdQ>?j|5%KTb57TzAFCBnrXD0rPZNTT!`(f4N*IDD4 zCbXGoPq_jR|7?iDWhdN!f`02?0{)@PpuaVEZwmPmDz(C*>OIUFQ+q-SY&TUW5BPvB z0lEgrff3Z zp_4Mj!^oVMJ5LL74*I>>Y8F|}&5xV|@{jJ~I7D{}ut@@hY(Yt=<_ZcCADK- z8_aue({s2;#l1yAHns+XbEHVc^~Ew4wiEYrEs??aqhdV1IbBdyZGY-?1c8|8wNX|J z6bj>~UH*RRgTS3^k7Cgq-7^Ym$J}9Tw1oX&XOW7{g>Do&L^A9iErD>_3pOQluoz@uJ$z(R_VR@Lki{7tFjc)CKdq{!nT2;C*TQ-^v+H>g+Rt3X$xi20~Zx z0xvr8sK<VenssS6GGPjvG_mE1@JOO(*@BmLG#r9U|q1y0^uOHQw8>} zqS_gYwJE&J;~5sV<&Y`e$3&sz+ju(xdQ6+81T?D7O^3p3>v<|EQc*nL0JQA00FEX_EHRH1JAn!0(Vu< z!s7WhE>3VlExekuN1+O2m8YycJ=+f}mTKbhPn+dABbu#r$z~?#;D=0dtPz{DMiuz* zetZtSJXb{j2`SI+zhvA%n+>}4;GZ~8aFWN33x1j-56zsQQB3P<8Cyi$SsbL^QS5NH6R*K2FJ5R+WVXbLZJ%%r;y1H3*;>L_ zV^7Z$#WwIBI8XIzYzO0*BAp+C%lR~8MssfQRFPt)O#q2cox*JaUjudYPioW2@8}O6 zriP)vTW+w0*G&R9>vtt-*REZlRHK+#-etiwsAavP`2snWsb#S!)qVuwqZ1sNQpfz zG`%2IC2X}OLO42anHeT92qt{wrZuij`-m`@rHc`%iE!oVvf{B+SFFdq0Ip3jt+yfn zygYC$l?L3pmo{_ANgJcmx&O#c>HqISfEbDS&K{BLcXZ(nG9J!8HxYiZ?JO(1^2YH-T0Y`qHnH}Jy`|){WJsA)Te=j*K2AKju3?8 zL$Uv&q+paEjMip@)^%>MOBL*L1-r)o>q-JGUkH2Dt#zJ1=YAi+odBmyv1FNGd`U;K zqI@7iEKA>P&|hv!WA4bCD|T@x902+Npu}|SEUVJ>7f3qGWJdw6j1Evx0!1@!EBF}Q zu@mqHh=u{tcpw_^UM#DB4sfzqVi!eU0tFVgrIQ7Xb=nqlmWguGn1jh^Q)hd!mBXzt{@M2kb0Kb5`H3Xb?>Tt#Pi-gO_b?X3U zoF3TDlWbLM-=S8w?Fv`w1yr(Zg;4V4jX@dU3d;|;!kXcT(8<)lmhE?mHh4M$@h^Y| z{e96&2LLw#kOzQd5a~#50dh%Yz;xPMj{mrG;(ZFJ6^~~EiCbTN0`R7rHC?ocbxTM+U4mvNeEhd2A;rJ z^(9GWV_a&x)^*14o4}W>%L|@YNPFhg$nZaPA*kFLqi+W_sh68u_<{El|EU7i$xqW5 z{3~W2==Ewt;JQtPO7uWfwWn7QA}rYg|KW5L3t2!)^YqM9z*D+2aYD&0*jCGPMY6J% zcM$6^NuI`YropA&CfrZ@FpQensj8aqYO9<`#SNN$Z2RI_I>Yu6Gcu*+3b8zlkv;xw z^-jQ=0qyqE)*G2)F5q5e8b&>T0dG&eL-h0mZbS)EU^|;0DKYi$a055Y!gxM-o##eR z?L1Ij%j)DwlG&=ElVk0g4tQ*o(6sX4riTNuJ z?DPU;!u`nK3*VLKj(SO}u=Zuz{K{&?{+BPVwodz%*RJ)}HeFm;t00IbBU8T&)Df0P z(_u{)XPaRcC)q4F|0z@4oVoMq3(F+SjWcVk+L`IEI6K^zwQN`ry)fxt}FO3h)B|?OunL~ z`Dcla^@qnBbTO@??M;TL``=pcK2)NAp}!BB_B?oW>#Tk; z#CGdgy37Uqnn0YbxTUt^Lee!fu@K3ql_t=XH4fK1?sK-tBKONw$#g^UN zFWp!>SF9M=sFIlYmm2lHt9n zRE$rgNIn)Yr~UUQ>R~S_e2j4*AjhJ#(dYrXCg58I9`5kz_otidg`*0OP%l`UKoQNQQOQz@=6Cb98JmqWKt*-gYN6I-R6yGvKgXFDG z?5%_Aq#dzpL1JKi%RDnZ<;||fJ*){g+=&JK8quy?*zbH()NqwJ1+DFtEF&{uH z{u*?XbydB5zwP8Dc+PTm2g6Ou@%IA@yV2wQBjlbzY?tq1+V$hKl1JsTsbL>-Ut7Sw z@U4`f@X{17B9laa^v@GcGcNbPY`<_Le*0+4rhoPgjz1XmQnW?dW^b zam)9K&!+Skw0E#t1W|7#m0s`DM_c0E0%IIG-1_`4SJ?+XkFB~3iTvao6ufl&lUwgE z_q7K>R;cRFCWF~Ud-4kb`B!XFS4p5GDS7D#_s>~(%KqNl497OSVkUj&_C|D{(dgdI zpSR156(42(_?5qVO*LRu7geL(ieL$p{~}3Lg`F-2y?TObr~c-1mN)1vUp^UCk)6ty z8wB59zZZnHV-%GhPbXO#NZmE4QcRDetm017?`tUNRveJ}qUT74T-tRp%%zfjAzybk z@Ik&^%8eDWaJBYkZ{@pn$bCN#UONu`8iA}2TD&*93al6(9v>0ldr?XIB)=?*l|FZH z{D#Ebxv4wM`1l}2SorG9lMmx&^A$V$Xs*VIXzIMd`vU{iUy`gR|3fkt^UAc$JD;7bQHAHn_>>oF0 z`#)7$Aw6&TTyBx*;J^`BSQO+lBlNmSmCy{WK?eZQBMFxq-B)&y{j?bA(wPM zaL^hU)mKi{>fQaR9Xun#z>|Mqd0nWe-lV8sZ)4QL)AoTaW_d+B_r7XUad9j()1aRr z?Ss?)o97>F`gE@se0p+@gxN&&3ya<7 z`Mj|YmNvz|1D~szW%_rP9a*>0GxmE&*auluk!X7*k{~oWcX}iA=-uA3U-5{kJ@Yr_ zaQG=Qg}Oug;d4KGWgP5@CTk|tGp?wA*t?;^RPcJGb~o+7l}y}Chp!Kg&DZT+oF9J6 zCW=#DlkrF)pDpmu1imEuqnm4c-`k9|W01a8oaEcYpUAB(py;wY0F9N(78H{OzWv+50f**dnQ_6MAqyH*yb~_dV{fU(>ra zX#uTn=4VO$wrEwxZ7u78AD)KC>t~O5==gSau&{sEOAd3fOIB{K?^>lS{<7KU_B5(` z-MFuKw-BN?usg4GMT%9L2f0vEXnt*Eh1VyRF3GXay=Qv4L*SH0vG>4L@s+c5R-vZK z$H;ZAw;uEm0kI+8MBan6YR0ks=S#(&R+j=#p*BISH)lI!JB@!|*_X(f*r-bVv~%g2 z=t9T$Z0IGYOS@DEHK9~)Mrpe|%e3gEMdgN-9qaW~6#Nr;sm+5tKrC?aXw0>IlL_E zaI4ZL)J1EF?8M4AtEYO!>%Eqz;h}s;;wD2@VRDAS-7|$6%~a#NUn(OTzST^XL+bZN z(mtClh>h^9*WTV0x;-($y;x$k!8$)#O;Q`EdmR!?|A{g@5zckxd5mqCR1t}7HPhio zh*aKjk6q`CUQP!0pa(CkNW$#r`nb!~?c|LIBr=m1j2+XQpMze|a&7;r+QX;_qq;ruOr?{X#CUzKk?Z*nY_ZOJ3k0rV-z0)WtLTdsIrcV#Yn0sy=6a3pJ3Pg znP8>~-^#GfoH?SvmOpu1rh3V0y!%en_?;6hyJGPkF2x`b{WNyh>1Kl}CZ*gvmT0r0 zKyS{`5XtNMT$RFs_oyNFX*>YMO)U-J~`D zu6=@=8Czv@Z&yRjlW=a`WLs7yYg$F$=7sVYe>1U4Ro?vuxe>vCMMdbX`N<51*7?(0+yW>k0Ssl!8MNhkXM>=`MHmQlWe&PeG%1@~I6GrLX7LUB|v8?&>kP@yPZ;*G%1w!_Tj+ zrMMaHm(sXjVW=CoqiCZwB)ytLZ^gE9ndJum8GGYx{-*0>#mO&{#Y~*=)G@RglQ)I+ z7=}p?M@*1RE^3jhnYno@B{$bCk&dP5p6t5lo-vo@XX?o#;?K^+4UNUi_2k^1xjg>- z>}RXlS1oa4@it2qT?3{x3wWTDZx?6i$X3YpZjo+jr$8;u#Qu+gumFuggrRlfkJVkR zh_Hh@NoIvhKVN?cz8;FF`!{$$?uO*e8MX}7uJ_W>M@Rww`DHQcE{<+y7V!x=p zpe}1Wd!bvO*b^OB`{iL4306SwC1>$fp{OKT<-5Tb)MI| zH^ZZ=hE5$EDw*$Sf`c}G1U}yitibRcI9Zqp@>UkHrm3gxRi(){JTPC6Kq6iSn#)OC zZ}Oj(G}XL+c=y$r#4Q8w>u1xRgVP@~cr*S@S?`of>>EDsWm(`wLHjG)cKYp|4#?#K zBhzLs@4k|;d-R~q;8XZSrBd|$4?*%j=<0t)w$Ob< znm^$EX83s}+4|)$Gj21j z?mUHT5qim@y5-jqYLHtI*9srrkit6!XZ@)OpmKuYROV40u4*xTV+@LR5Z@1acXRgM zlkwBC>M-7#`yd~_-zqw!nEhiS)Q?2U_;SZ%>7hru5A+rr#or45n0TR3xOl&BT;Wd3 zPUdjwxSAj=IX!}67xQFESp8!Awf09&FO;vzxSFt|npw6To|OEBG1@5P0jGj~@FAtP zkKqAbakKAkemdP<)&hOzph}mFtXSPA7N5*Uwb!LrIsA(^F0XVmmaVk2?h&+_cCna} zAkkas5l9{_Z^d7DYEgB|@TcVP0IFug<8b&{@_UOyhB31HHwUu(kWp{Sz8{WXr4v`A z$ySRGYe^TA?v>LBeyv0L!dXliiZdD}9b#T=s})&MU%tcgG>QG`8;Wx7z0d5KE(ITJ zw0}64FzsJ9lAL<`73)nz2*;@EOX}Lh=lUK6iI3EeA6P!X7)})jT&nt{ zxc9-bLi?@WD6^M%6Cyon`BAmwMB*m~sW|)8q}cFWr1PJN_I>le){Jg{xo*ypTaO~T@|B$EiZg^Up%W#3osll=(1)*_9)85pmI`QEbX2yvHFsQXLVM@_FgrF(mKc$q@mp*!o8J4?Fs)_! zCxP#R{*mC}_cs@<9WNe8zOH5@A3tV^6ZmxeEYzzw{_DFTD$C^T9+a*oTVh9{nyQ!y zPwJ}Wsf&{URlCVRdzQ1@WtZM7J_r0zEnb$~m{JDvIEi%i@Nmq&z~z3O{y)qlyeqd* z5f2sazAkmY$@N{NiRJ}~S{<%Q!H!($R?-cLJC5ac?24GoFU_wTx&o)7)zgI{CK+O0 z=Qvl|e_rR6AYWbk!1!AzINW#37-?$kV4mowa{rotSCGz>;?<&j*UL58$NvK_K+wN! z=oMVk{Cm~KPvVtDNi0*!KJ)`obf6;2_&C*<#XkEIGl?XN~MJ;{U8+Y&&}aO5)SU;2kTG4R`Y@PKJ<4l6+Q^{wXtwxx1dt6$QA(Ds zgLo-wV(RvviG~p-2RspsE=`1CmP}<`*38yS;y_p6#ipi-8VWL%s!9BRezye_=dY@Q z4t7tA^?}F9JnGJzY8lDU#NtOY&e65yHtRKICugz)dvO|Km#zDTKFN$_pJ{dXE)6p?%=rPXsxu1mF!yHQ4zX@NQC?FdGw2=8sJQP>x)OBzmPKD z6zV`MA4jEFl1sV+wY3F8%f_yqX~q2eY4whj-(uY?DD+wE%5x9(Z7KMY})ly7q8F01kz77@E`37@Lc;u~a@*C#yB#t*I0xJIUdxffxG zQ{QC6dUaz`iF?D6;)mlo9?^;;qI9@E#H?s2eDge+RMjd+Y4E*Yv=WXDG5EO*xy=3PXKCtus5Mz>=n@Sxb>peo6UEO%(Ze?O@}j=vlFd;;Y35RzvA?Q|yRFTD8o zixAxc)Eb)Wc0u#^;e2G$r8P1s)1N|#;tJ{#UvJ_7=`fZ1R@^lI_ zWJrK3maNN>t6Xsp*F8n9zRZb<6k>oVmnl~~KB6NC^8=R@v&Z^LFY7b1>8%cSlZ56h zy7^2|u%LzkkB0>dV7wB!nnHJE8{iA{p{g^cjMJUm+*H5_ z`#Q5^cfioZMt}6{+>t!E%goQO%Sz7szX6!a=_q&#@3Ch5CKSM`LGST|5=Z*KFz@_8 zaU|)uzF<{ihd8~jM|*j3x}^YGOIjN10}t;R;V>D5DXQwO3E)iDR&$d86LX(WnQPD~ z_HJvMtsPDx@nlxsRg?{s%!#s*@%tOXpYZ-@0xh843u9PA6B}y(3`0d2>+4&C4i#G( zMx1Toj5cpyh;^3-dJeT_l;xq;TvP>6lRTsfM%ww-CA9O&T%Xp=zcxt z4i)|e+f=L2+YeD;as!&s(o#RcBC!OM#qw>j`ItCuqg%9#AqTAd7-uroRW_ANFi4Zm zh+F6srszuRe63)(|2~|HEh59e_~EE+gQk$8lc!eHkZ!(HZS}f-e&@5Qh~oiKZD%Lv z15XhRrBd?O=jINcuXb!N%5UW3a8Ho`i=&xyBSzEI-lW4|)W#3;3N|B_-NW;Z)!*F9$Q0>&h0Tmh8ILOe<_6l?G!!ZdV-`@hed7J53{fxUitA{U`LX zOatM&^|5^abRSEulZT^g;}c{ppT^DozL(`=IWz2Hxh#D=x%z1?mN7^s5@8ZhBf4{J zjMa&pf*r>DU#GC>aoopJw8_T3ESIl0r!Zogi)EA)6P4z%F-i>kSBls&`D5`gy>b7_ zx0(BRqJQO3CRe>8mlLq6(hev?6UlqUQgt~pHM#0(?iJKN`@2`pqGFjSQ-`u~dx4uQ zHYMpt*-SHXH18D${uS@^sDC9BDipd29+oTVk0(=Os*7cm9Fyg0j2grKl@W|j^2zw# z1pmq;!5Z>=yhK8^sw>Bh9f} zW3WuCaw?E-6qy4Nr154HNvQa?u{&>M^`ID+lj+m zoa>wF@XWv;$S&_qE*pl+MUugs`wG$CJ26V)Qx6J6A`nwS3F**;?5o3LrZs@b9{C#G&FA0LZQ2Z#F zgrgu7*34nsx>>k?ulAL@sz>G+rZzm9OUrrm&y-c3SU2b$ubKX_L6x&b7?}&`;}**9X5w!V#Yc)KC3~0D*yIKVeB#z zp{+xg75z?xJy?7AvM~OCmep4v=s5lIIGH_4{P3R86zngIQ=h}$g@?aw);>lS^xi_Pb29`1v&$kwkp!DR}R5F#ctMdGK_%a4rnup(wL4 z4hvV~9On=)z5eJphqo$}HLjc!{vt*Z@;R^pboD$i{hKUi7XZUWEEm+lh5F3_pw<^u z`6+B9aHzAscx})vuVs3g^Q#8!=I~(t1ZVhNTyBJBe69dMVpiEwBV2Jq_`Hf{-mMte zpzppL>18N)n_hP7B`=|}=F+=iWM*pjZ-4+By0pG7=>~}K#{Fm(4erXWBg=R*v*U%o zCz7zqwJ;k~uu$TDkHwm2Q^!0qyP1ZZr{U-<(!Rq2PhrIP_tmxIhigaID}kCgOY8CC zMkjVHN=u^T8@NgqL;gh9imUH;tFBjZf4+9GTw9-Aze@E)d3~w2R4z5w>Xh!dnlW>D z#xxA875HH|ACgjLXTkVf2!$F@a8{y;E3HZW&PkC*{iNrT&hBi}tEg(lYtH6pD?2;w zR*S57%3NikS(#HjJZmn%*&p5(hPUAo5~)yj2lG*c9al=|taMW9^w$WTC3#(NJFV_(;1$j=_&0Mxy42!cwf-Y8WR+g2*2MxC8KodGp8&ccjx81u(1=b`m8 z%?Z*Td%JGT(vp4Li(6jI7G3Ouk*x7CSc^S~-FECfWzyaBX&T>8p*~Ys5LSefxMHk7 zh$N2CS&&5-vOIRI_e+>%)TY=5Fi|V-p`daFxZd2~7$e zl}OF)R!yaf64h#vqENNgI-6S1J8TLwU5i0keC@n&NVrZo!&Zs$DAxkm(dZZj^X{ar zvy*o0e2rkXh6%d$t%Os92Lxv{S|zv0%iBe~I6`;`&jp~+wxhXtez^|BsFCIQ5a{5U zVP&P_n~$4*W#u!q)(~3rnR1b@Ig%3P!;B2-5Mek)%qkT0AS$T`;RMmo@);nHH^E-K zLwFU=66NSM`;5mlLxKf1Z)MAR*!t8f;yOchCj_>~n&w%dS_1S+YG`?y7G0(g?4k_B zrfh46EKfHK-Lnp9wrs|iDG^$}{*%kYON3Vl4+)P5@BVINBFO}UFP`qCYg%yOXhBM7 zK|oOFvgM?BuOD$zcP>qAq5&~O%7_`~LbQ`g(8fw7aFA{nbSUAn@eyILv)K&+F2F(s^+2!>-4wQ2(GxqxrJ2R zIEmXdX?OYwg)jCK&Lrr3GA^x>Q8sbG+jc;dG*g!yRdO|KYjw?)R7cj?eH+Cuz;+j& zqnhFTibi$E;S2z6#W=vm;~5LiAIU{gp@~98SuSb%p;E*fU{pG!Yb9A0sgh_iqb5NY z1(0n`*JeP-^?LXKG6D<=Sw>FCGEtj3E0}CD`em~DG8l1upYTTEhptpM>tm7V$+`yHNxOU{hyUz@WijGkN8qJM4_OTm! zu^YEgoIcxb^P8tM?83E2u;8nijk=xLoobGw3wG00&=OxNJeZHTCreCDfdrQ%a?W>h z3Q){C2_L;8efm+sNrIk$hAAFhu{h9m9ReXno5Oi^BD`R{e(FX32magoj4GDjmE!Q@_g-i__oD~|Gd zJ9gj4?ku6-IDNXrz9o#na)^y#0D^Srmd2m5>D4suEOjZT{>s>UJTPA_%P%*B$G!MV z=$T{{NCQw*X>kH5;sDST6e)+JF08VV0D>@#drp>(L4K8Vn!6coAaJyq^88B@mOlZW zA48k-y&2TH^75A}I6O8p`H(2fwRIJnXK!ME-`gBb2h-=d6njlvxy)>? z6NIm@W#cVO-;ktpW?yz)&;9zqLH;V;Gy^jtQLF6gnjIY|k;rfjgId=vRjQTh(lfV& zVY`LxX4i`%?>gOuVWb@duI0cW$SHfiqiUL?`|FLZ#=vI8@%DnS%yPTk$s>#Q0kNMh zU`yl5}a(>|oYnxO?pa@ek$T{E9Z`IMJ3_{z!Roxi)LX zF?sKH?KOpZZ?I1XQ52Lq&f!z*_JMO7Lv-djPkAOGT)CSkRHf^<+PdFN7gG0=Zf8HL zzD!ce=2ql5ea|Pm<%1-St=Zc0<^(D}CmWp-f_3_Iqqco|W8>Tbd;Qc)rcrJHFVDMh zRJdu+Okx=o2bsH8Q|C*G=k4kjDSF!Q4EU3*z=FTI9LRT-J7uuXG&5?(U`VOjeL0Q) zC#vg?t{>qmZ{J-2_D5V44NVn^XdAZY*`@`js&;)weKp4gJ$Ng^5#cnhyX_Bh{HF=& z@_cmtbkVI!vy;nW%ge*ErUDjmGXgBARxTmbhN0<*uJwsM8TGxx$lwZoK*n-|>kxlO z-!#~=;#cp-!6FY$=1uDY7qh%6Z0>T6H0c-zc?JRyNo)$-Q{)n!(%^rCdJW%rtxcRk zdw4_O>b3+35z*1z;1)e@S6hkxV}Prvo0etJ)zxrQQ!|k zItv^+hB-Dytw5si{U3XrF0;4-3!YtXM zW&%#enF*{o+W`1pzPc)v0y`*a)OqU)rM{(G2FLBT{b-Nw*>LLi>knlREi;%;>_O8g2X3on z1p4<*A!X4weF(;xgD96wUUSLljV008Y}r4ol_5?ik` zZQC>~5)E!f#3Hl+-YvfCc)qENUQ{nTkVL8kLq`Aoc{%Qaj+m{vWoQSO)|)d&E9v9CpPS#~0tUSQO+eiV}=vpx#b%4NB@ z`>CDyTb}2-e=*PyuZYT?6SziT0*_;`xEx>C&615*cPv%lXVg;kL(g_)Su&^wwpJLr zcqOW~uB%QUa$|9z)37(WMz|Sm#nI%3qqp<)KW?i3-F z3vH;zXHELOf!Q$LezQ(^BL+Yj(0}ce9r*j7^NRJ#Y6bp&wA!v#NTu>&P?4Zf;P8P$ z&94V_iQ1)Bd+E7*?kTio3T=57;J`g9x_w5DqzF*~f_(=f)pi9Ss6NL5iaDTj6WjDX z_ngcjYUdE&cxi2WmhEdWrMHL9mLW0R+yCllPyY~ywS9Bm)BnbBHy;9wL;bu`kl$J0 zT@T04t$k=hQ<`=sS^$F(tO9ZVbxOvc8tL+%pG=(3BAi1Vej$#C_wC0sFUinIc}fR} zXi$_i1~(&RcR;p3(^*oi0Fz<`EGd?5+4lF5Fs#KM34(yQaV@-%Q}JQUhgD*HE@gdP z5Zrq14){4I4E5bvhT=VYXWAbIZ9kd(E!&y|@teY7h<|4SAAZUW#(-bHH3fZI0~d<% zP!!tuN5#7~-snGDZ`aR;S2J(O)xpexnZQCn$vTTDs7spoP4wC7 zy8bi*`ivgT1i{Q((fhI{tn-_1bdV1DZY%LDjPk;M$wSs=!`^cX@}s%>)!0|u}6 zbof*uhjT`w&OS6MWI7xt&x065z*g=~qRe|>)CqsW5KSy05|-FLA!Cth`;+6rw6+~t zU7JFQ^Agsn{>!~6Fvy*OxtQyP?2D7C-yN-qR3;WaEPt2_Ynk;hV+9U)zr|vpX&YAq zZG5dz#ba1!s8>s(<;>1HmRPD@7_M!b!|<5y&-hWP6v4+3osqXKPUq>|O?nwrogq-h zIlXp)IRwuSfi#Kf|KTa5@gu`vjmTVoADPQTaE2!|&?Fm&?1-W%b(F(8oHS568k699 zE&A8%AR6`TWLPdSbJ-E$+H{q8nm-|%Vdmj*y>vXjznt#MDI^2fNc-gFp6pKPzO$@8_gLL`;I4^?DQ zBSeykCaLIWRwZ($Hd~TZMRp=pvXocq#}}&yE0u%Q#pAjm%AyEkBVyPZF7+a!rF(Tn zC2;=}K_cPQvS+D#gbnPYx*d||1hpFdIh+KvfL??;Wg-$PFI&&RYAT#vYz7EtO?S2Q^9UzB! z=uVJb+nlLWh3L^qTvVsf`ivPLsV0)x?uMcmcH5$qRF9+>JF27+%sGd--6-K0Cq~JT zH6q!%B!0&>WydjX&p!x1zGs_`Bb)!K17xT!h`tDa3soRR2T4IxrS9pLNF+%#HQRvV zfuJH$#Lr7w$(4v?2GW2QOb#s=!QVV0iT%>PNS|Z_VXk%<-e5DJTmrXu7nVxR#b#;g zUAbsZL{mux_&uU)$cicj6$!%`&a0bEo_4Ug`O;KOrz2)$67A_OeqE8OJ}BXV%<{EK z!Pxq`q~Goom(%^DO24Gi!fK}PywDPaO^%;ubd>TM52YG3QRLeJOT=!>6u3HmFaq*t*bFvI@}Fn3sQ3I3`>t z+yb(CpYST-HR$VP$<18}6Jl+hWGll_&r{5e1!pu({<)E)H!zDo7-5z<}+wQpCzCCv55BXOY2%MhXnbDFFxWTC>rbJ|sJ@8C4 zk-+IyMqu^@qI+I^d+e{i`u00+b8e6PL-X$2$BEtGlq?Ss`wje~EHUf7%wK7wSLrkU z1wqi$*!mUd={v$fpl}yxd{j7zmQDJi{6qizwsS$a7UF*xTzug>|5YI(S=m3)Tzr%ToX?X+5F+wHSl z!jPW3#SH-pVz~VnQ1wDEaFn0R#cq2biy4eu271EPK=FIAFAOm(kgX^=LE_m#)OkKE z%G3@}xXq&kH@13gqm1mlc%PrMV3FeeS3u_{iidycFxyO{H=jniJ(C8!&6jx#T_b#3 zfK}d@aSaAZKj8%uNusPtx7~(&XGr%lt#u!cug)*Ps-bg=6jU0GIjG^+C|2He)R^aK(M5c)7R9Jo~T{R zGy8svsL%10Zp++@vov%iwfQ9}ivz;3Sh>4!fO;1@y;l-HaTf+m-qjAn?JJ=noDS(2 zl&@QH%@`XAG&9jpc%0$ML8xU1?Ts=1bL_+JXRA%IX?qN zaMNM})Jp}-!aVE5@XT$l`ghXA?8MB32Ab^KG12qevGuC=a*^7hyfyK*#?Q6~cZ&1) zRhD<@fN-1eJ*@wj4ENytIO$AmVClYFYl8-cLX>p-J0mC@VPPKTZPI81nm~h7bDy3& zKLMA**)NL4CNxHk$IqP`?3q**=GY$YliI+10c@!=pQ7`IF(|o0Mc|Isi3WeluYj>t z9)%*S|Kk7m$RmoX4#Ti|NiZ~X`D)U=;8>~$85npr9h84OhoC5roI}?0SocH1MIi>7 ztP9t}c<)v={!R0wp}RWGMt}nh+NHVR(`J@Q9)@;Fvp-lkLDQxH{VR+NLEFX&;MLoR ze?<~W)PnKZ10q!irysl{IEidrVOt7&hw6r6l|Q4-;k|BfJ>HwIOQNOS=2@2a-$hlr z-c(*MN$DqPgr;^gn*`W#bZo%BD z+!4WoPH-Z8Rm51(4NTF`_Ku6XJdy=xnO4P3ywCOuiD|PG_xUa&>ne@ZsN2RJd0y(2 ze9g9e-weyvy?2_9qEW4VP_bZu5q(>&7`=d}6At%jN&TDI#~U0EWpQdX(0Q5h^E za!kDD=9`~ajKFpRRjGP*WUIfnV^}cMAqQ_2RhcS|-PJ6$92=#|T%{zdPV9J&=3E19 zOOX{(5uG!^z^8y~!&S`I#x_ta#bN3>LFWnE@noKDWC94|ba~WNbVFC>4oV6&ETUQl zRiuM44BAMd>MH(iE;yChq@nALWVYhYZ?e4>{*G*rSwR<2kKpW9H!T#mT^X)0VX8Y# z2#+Is`l?@JwUBzLnpUn*>nG#6=r!n1B_%wzwMH^maVXsasu&9V(arhN>~h>hwp-|O zC6TDB={#2ok1resJL8%HJROSL;G%Zmn=&FuuGnXr4zNOhlPZcRE>vHuY8PK%Xr>k(7zlNC%^&HCA{jQi8m;+=M6((cE6L%=-QrmLTCkMv&u1^A0{SuT zmI|^lLhB|vN;ffqTepM$QIH~TU5xABk?WA50chKl+Li=EKF`t1DHg>ibCRw(Rzy5= zh`djwsH^g~@f*jp}zU0xb>; z-w-y1Bf>G^6j%=T73Onsj9A#1HQ8dh`ayI$6xSW$9sy#)Hf&5N5CsjKc87M_j)?x# zKC?L3wgT`a?sDEyWSmZuZ>2<$7$lbJMoT5Db+9UXdPh>)Qnfi3$mOQ*0o&@jBS-$s zv6@5;#f)9ijN$<3r%InSNKh|pR@DKuVMt$NE8g{3l;OiKYi{RYqBU1s_kQQ>h~Bnk>m8A);LI4U^K6*D(zd>_|zrm7j*U4ad+u zVu)%3x-(t;Lsb^VzN|>1q(E0^s0vjHNJy>cR39OvC8K*@2K!UigF1zB%rXVTUIhsR z1-dAiKxyMEwhoO4%2Nhoj4Io6WaygyC{wN{$@Pac8-`Gd|1{Gg20uQh;|HQM@Qs`lPQ!@$G0?uBD6CEE4m9!X z(0c1p^ah3=?(*3mPz8tMC>cPVPBHnF3uaP}#TsH(gKWJTI=NV>G)l5L$zCTv+hz^C z%}_@IF;e72Vpm8gP#JAiHrkrzDdd*)f#~fJ#nZGFd;69aYyRYx9X3GTcKg5gh>r6Y>L$(X4{v2N!$Bx;0 zc<2L77Js`2E$v>`(gyo+j-KO+sge5~R7Q@NsBs!rZ~|=;yv28=W6K6l5S9w#xzx2b zc6cs-`W0w1nxa!ebX}zy#Tl*@31C-rRWsNfS$&>+g|_(zMlBF@2W@kA&}&2t-GP>B zTAGP^LK?b(4&N)meZo2BKuwrgo`yASu9D)tRl@HLkY|Xdcn_Vir@kx?Bf0_xc6vi4 zlTk;ECnApX%VUVAw&r(0%dLR5t$@9W``ut(i#4&I^b(rT9_=I>s9LdqZL@s`nFadO z7(ZLx@|JJycF!F2u4^V$+i~n_azj$FUDvK8->8%ytdwh8?(%DI?QWiV?Xvqy%bjih zKy%i$@)Lx?F8FzI$DJcq_|PfQQcxHr4uUn!g4PX9ss58{EC1$mj7C4!ihFWt$%JQ^H?X z<;U=i$7J;}o-{|^<=*S8-gbIOH&j*^xSLx}z1{q#JoK^GD+}o!w(~=;rh8kh5HEGZ&% zl9KwIqKZ_3nj=YyFoivZ`_HKo+!I+BDCYI+Y@Hrf7U9mWolAq|$zW-AZm!Wz^!U+%8>2J-l80gVJ&Y$IL$#vz`uU7PyX5OnP_nO)t zNNE@+1}treM>tTbytyf>3YhowZ&zh`^>4Wkw}^jz68;6HUqtt9PJ76-Um zV973zL~8DhW+6cH>WLVBfj7!~_rQ!4Xf1@18eEiR< z{)P)k(^%!Pjzi_0*CJmu&1%&&ML*Jq%KrBMqB#}Uhab1>4#|Wq%&?U}L*?#GsNJE8 zzHcI}{-jV}dpg02ajux0r!J{SP zZo<6qa0X!FzIK>g0XN0y_BZ-_3)e>{gD4FkeAPr+|M{Mfp4y|$7HPaRk;Xg>754#3 zSo-WN4}XEO-^-&rF{AWQq~|a>e-9H=L@}nY;PIU-@KlTobgV*a+@2hDigOyB_U7L7 z8;>e5K8_I3B zDf+VFo99@CvZ=8pC0`rVqJy&h-&IADzK-<_>wwh>HT8>_bl7weQ^;FPAs4F!%x+MW z8%*u{KcbnkqLbJ=XZpkS|Bb2r4kGzGn%Oex*Ck0&zXsn==UFI=<(?A`2#aatZkI3E z_fvfnWlbgABK$4$qq~UjYHiAxb!69h}PSYr|IHGuod*Sgf zz#D!3Y=(5^BR-AT>lceZfgyne3@TkSFMie3zNvnlM=Mk&$IM2J|e`cvd8mM66FrI)aUB34rSL${6i3&obDQ1WrL$(%-MCb@IAu! z3a=G@80h|fmJ1=>`Fud#l#n^SI|VZ-$w*1__ZQec-E7xb{wT>xplP_|Rwu8(R?(|vxh26oRS~mWJu}y!`N3Lx#cu6L{D+GfY`u*_i{3|IGF>^lTR>iat0tr z|1(i>SL8G{j2{hNzQeCVe*e*wtX-_4Qy(F=oL9|Q@+@QJb6CZ5jGf!t+dGd9)=gke zU0mhX!Wk2`+%+oU3goTc=0P&F&A5n(xWp#q@2Hf`m#EE0<{fvw(e(Z1!l6>L1b@43 zJu=Ox?!M<#T=7gVY*c<>%{G%8Y`gL)d=CF+TyuBbT5Mi;G7hYgD2kCAm0>LN-$4%@ z2AGyX7ETrS9biUAcVk9$q*ZYXcTs_!J$9MqQkx@oP^U3e3<_By~;IiApTRiXUv$E3=kciMHZ~iipey(4nugvpQGuwj?&LJXP9)>wAgN|bJ%rG~+lWEAePMc&O0 z-%*~q8Pi?n$L17Xado8;0v#*ysR|?Z0#N%WQbML5JIVZfvWthEGEfreS+auoI!5+x z#kSu)coqJhOW%b;!FFWj;#b2*gGV2I^h1y0IjKC# z&L4dg_h(Ma&_SR2Ld13q$Jo9slJrJlhefEoRCqaP)$bP`5*|)l_y>hg2tOe_Dg3PP zi^AuG&kMgSd{KB>_zGzLW|n{^DgMK)b@**Y>rpcNjAh@5x(a;sQ`o1TcQMt@I{Zc$ zPnZ{Sg!GP(<`EJd!4$oP!t>X=N?HUiyqbCr3L^+~osa+;2K)s9|2x1hbv+>D;y;E@ z1doOn|9a@->pHq1^;-75-q6>u$cujkTzCS%F!aG#vI6DmMu1QwCKiOyD$InmrPxk4Dm&xl_2>0jwew*-vjOR}X9}zw-d`kFv;j_ZO68<%C`+qF2 zd-Ky7RXpd(j-cF2f+0#@j;@f=UrpQ7I42qB4oobMRduCIp2pMz41QLE!6Z!A(+eyf z+1mg6tU_zdCkjgljiUWf`mCiExx-n+0y&P+(Iq%A#BhrUyW!$j|6yN2W$NoduFZN=OoluzxjGW# z_Rx6t-_iWhWBH^5$b~pRhH}lB0BNNW{KHQg|P3o($ z4QKsz)`l}nYTR;u|D?X!kLLHVegEmkJXdHwqb7M#2SWRr&tcg6?ngrV8qMkY;{!sY$ z!q_{_^y+2__!P{u$f5!1i@?A9M@Pn5`c*75GY$t{0tp4&v7XL0pIT zhe}y*GO_J~*bbLIcwb4&=tFr^&p9mc_9emI%U)+P)?-3-0A&QFj9t}GD)fv0d6Go` z6&KrP_O(HQLLDw}2EP2d(j#S6UO&%c+Q zbh8s&%ix;kp|GCFpOoWTN%U;n6HB!?zqGtH!;wBIIR^iDj(_F<<{y8`KS%|St{FIy z>^UPPWS3H89T=1YADjG37x)MN8^jZ?uzW$YxjiO?EK^=HRgi3kq9G2(y10A<6ZKKJ z=)fyyadG9jvuu&&xpw=pZTQ*61EDRr&mV^P=v=$SpTJ?Tc7dVje-$lNE1BnpJgLa~p?oq)(V3<9$MZ$~MxM(BKfpPhBR6 zd7HZeo!cMT^fuf3^F`OWlUrOC56Wei!9GM^nr=v1+#Ql*H$$S%$R@*Co4ah?zlVOA zj%}eYrm3zQ>x<*z_LgDhuzgk8p4AwPIn?s@P#Bj5dd{Z_igA*yGun@&tK5e)_k^~` z!bkSDb<~2X^UX^#bq4(i&Z$r8i?fYMhx_96B^36dc6SMe&gBC*)b1|7ueiVP4 zr>P41qSzmtUcI`i()Ewa^2gU{+RpR(T9;B^hj#j7buK=9h}G#meCXlH^&VIY@_N

2+UrCZlNAp`)&G@jg{m-!Dn; zhYym7;-O&8glg>dkFUeu$1lk8mPmg_)x|9l{&e+csF?1#Jg9$uQ2X9BKRmV8)xB#h zw(pR|(=DVs6k|HjCDA+#o^ViggRb^OQ-hAv6nm=Pz4(HDJ~&TS=uM*ZEC#$h zD~UJJdsNkC10`vw?1Pg_r`@c4Iur>!QrC^=byk}`luLEA>K$ALygicMHP3^+!f499 zF{5$E6CsP50M;x4_;!b?y>S?}pT6<@V>d1Xe7m~e@JsLmA5RQJ7Q*l`eER7;252Ss zLkb}(rIfL0AQUd|#LT3fWImejLk+w_3|taFc;hkJH1PYq0pj z6}GN&-0Kf@vI-NvNRCAu0?O%%yIk74Nw3pS`fH?z>AOJwl71(X#g8b;4a(JckgvH$ zh7Y{h-0T{go5AL$(cRqC;l${6yN`9d|7({V6vahJy}2zZx2w{kD7M?|#_fvKzFCzX zXfzt$%vFuXRWlx(`d2lM9&KE8bE7fy3;ga;p_n6l9&7;IHKUi>R6U+&LrwER#Ow~+ z_ApAdf4be~R=1bgiV=@J!$nYibP4p)0|scLn}BwrsBYN`jbl`haZDB4`m3=!Z<@7d z4j!DbXM^nIYiD#+(sM+j=NA(*?lL79QrmpDUL7Z znXU68V7ZvWj;psg?7um7=W<~$#1rlnhk~oSGOue64_KSgcXx(T;HtX&hAyy*DWvL3q+q~gQ?dqE*4`At3rkCbauQ5 z#bAgx3P{q=6I&%Q4?0H808cnn>F(({SeeaNHWeHxWA zrBW^5dt3OUG{zWr5>$yLC zbdBx9h({r(Zl}0SS~9d}+K>bmFVaPOd=O2G7s+5L9})vE&}$f%F0i!4?6AXSQXUh{ z=Le_12eQdzQlg&~@u=eU=OrrD(9cnoJ`dxVDw92t$J4UX-!rkWvqKfWcBBwoNmvt? zhbzRU0M}?UrF7I_^noiDj|r!Rmq0&uPIw27+p?6UJU)7XC3orn(~uOShgaw4lL7jr z7n!nWvHaEfaKO6@FE)YUM^DGXl_5 z2_}a_-%k2j5X5VE0~~6Uf6Q_CW!@-1#y{S}+vdmlM?v1cXXr~WE0(u2^c`uaJRy}U z%J$F9a6ST7_-Ww|o{M0jT)hbBj|)xX%BV0d8(+9WVhsE>7LISbIlF=N9YDLA(tzFW z0x1fK#Q$aU*a5a1zyY=;z=31ULPBu3@@Jd)pgHR|kEP>zTt`GOgIpUZenvP8)Mm?o z7?n`J_Zi(BGI|RR3FZSp((<%2oBWo_{V$ju1McBeE8a_eGppoCP$~u32%;p3puM#m z({!-EL_1s5)CVPgicNw&ItUG@Q7U1oXo-FIhr>o$c3mK(?R_geym>fe`_uG~^>MqL zgHEU8pqs{CXfN23q8SoD#YW7ZLE~$jInzKO(yu@0MpDqINUy^t{5q*Lkv1=R(P@+Q zpx-@BHsiS{nu}j7a^U7ib1~l&IQ1*9K`Sk@wP-BAJ?(F`JKb18iNu|GF^!O#bdcFe zvrQe6u7sK)WM$!a>wv5p4=NYGx_I4ERi(aXYOl7=o{o23a=rH>mgxq4FOKJ+(%sh8 z%gTG5h7p8|*DpOF6Pe2Ts~fe`twp-ANEBM#M!@Ex94=hndP=ySWzXWtIlAi`Cs;-- z^ZK(0qhiV=OnC&{!WsUpZqn|o12=G4Tyl85&o&muWPvO_0VXc#ZT8^N zdW`v&;x9;w5gJA~A1b0k!kbstZuOi)n+Ge3LVlUJ{?&^b6@AOm%|>JyR5NT(r^#~d zD~c+KVtLUK6$$6MYlrKx66&_->;5~TU(iHSnh!l!H^k;rf5nfI#hPL(jRW%s4#|>C zOg}hu=zu{KqA64&!OSm+A|d)*Bq>CaXtG$ArTApU) zm?W->#|e4}K?F|{q!wVS&WeB=YE8u0Wf`MzrEm-{G17F_w-TI}U!ZFu5C?NL93h+> zSVH^1QD1Rnu)?ps`FN8MQE^p=DuhTbbiuMied>VNYN`Stdln{kF=~OQ8H%o`C076| zK-9l)hKfe1B*Ji8G3-zjWxeF6CYAqIj;v-|X&srNi>F$|FpP3ZcT|xYj^Z1EFWIUl zOCZS#RAZN+2qF{LJ{THQmPFGp0j)9VpBtE%eJb&E*GrH#<$^tkGQAF?KaBExweXPe zgTniSj|xu;|3dgx;kUr*{S)Co3jay?Z^R^JasV^<6}q6Xu$A7xtl5Y=TSy&;pqy_TPdon(fs4nx_)OitN(VM1Uu?+UIo=0hB`f6~#;7R3<{PfP8PJ|F(Dm1muVSH*I` z=BJ&3lf1o|6fY1W<|^Gnc=#D*PUIM!sO^4xaE_IVTQj07s_jlP1Od;r!z{HWE3{jvT)gkr7kmA4hU>O7i)PnzHl@Bqbmoe;Y3( zMS|0V87f5ly9^T|{yqT$$c!ML6Y(hF^;=U66!}zs#=e;n@#@0)BT($?Pb2>9gDemU zsD^D3j(-bBMom%7^7^A~(}vF(OyS9Mz~FCZRRYa|x@im7*W(^HTN`8v3XE=D2rGb( zs@si*Vo*t@It=p^t3+kPp1FTnR0;e`hu?f4)OF2-K8^yWD%EA#v~@Kg#45Y3d#Yl= z*Nrf23D*fX;9l*Q1Pg6<7AVW27PBO?ENKm#;TK(Ty}y2`z&-~WkYa8?-K~-@!IP$5`Sf#j`L+Wd7XYRmk(~hV)9KiTDX3sIvax-MXx(V~?PX#T`;tz+S7` z3qi18S7Cgh1g?8)_*tpCREDqO>+p7{;+l4gC$j@OJ^k4b?z1a+2xSGn#ov|H@=|rM zf7$`z`-Stu+k|)H90&9fV3+op<^~g~%Y2?&MOSpuC5;5Zzz04E&7AE;mvqrd%_*I9 zH`&T)%(sa12T+5!$#SUyhwhXpBbJ&Ha4Nmn?oHE3hE$iORwHP%Y%97dvTRgAGEgl@ zDH)QfwBa%}ovtD9K%$TAG?wMvU3s~&6M7A!R5BWv6v#~N2pp>|g7n=bJRrPTcwG3H z@N>ei2){jIE%c*lIcoA~oQ$4LpKmS_H76u=?T%k#5Nm!-i_gIVp74Hy?Eij}rCtAK zkPaIC*;0_uLocX% zK2HIF@#|T}L3S^N)1S z#n%#G0WF4)B;(Ie4EQ5?%||`P#ugac2hFUpk?q;_5#wF6Xs~yVh4&a6ua9RJ9q%qP zv^L`2_s^GAnbp;8A$7ffz85zlZrq5taU*Dw+Bm(Zz$UzoyOnz@_W<{C?latZ?)TI5 zR#3h3GkKw=^bI!v2dBcAvZ4L|tc@LZ1DXpyeEQCHG414cuAogWS(@PjJ7*{Q<2a zKtgw_7sZ@oP+6GWPx#58YlUV2Gy%UR`g&@-`lpwNzULyB;(b#XKV`1cCss{#Urq5C z0djfhZHDw_m8I6X+d|<=mxq?8BEBwzo=21J!N>fv-+DsldNp?^==>k%exCauxUX=3v=fc1g)YLx;uIiC zUuKnQC~G(oUGWhwb>2_2h7-}*zn@@@^zWTCZ;YaFra{CN+iG1OlS-B#g!B_jo+O?y)E{IpMeO)Q$OSQG&?44Y zj((e<_Y`-Mdo6bcte1~+pN3xjdn0RHFKHrYD_obG!kJpv<)v?hI}z*AzXm;e1dZz@ zP1>}=b-9Te*San*E$6tKxDD<;?x(q*;eLhtGOh|APvd$?({-4_b$RGJn$~sc=^g3V zdt=t{C%DgYUj%FE-^VnrmmV=kR=6$?NuSwT>$>E$+*;`h&72^>sMq&`%$)7Z$rwLHbe$)}kOWB=1)djW z9$ACO$~uCm!)1dIUe|HMo*{xL3mASR$n=C>=J(PRpG9(+_-S$g0J5Wo^e{hcv1t0T z25YHRK<{7UuH|0Gy~X#veHk^ukOQ%(nD;Nra86{{(GOz0Idh1otEFL~9mY*L=zF{- z&0Yc)sztA88LBhmVy)zL)mT%FmcjVp=M2fJ7bR_%xj+kzI_Xx`unVqRu>B&d8$?%a zTcs+4L1Pt`>AD^xOADND<$15KxJP-6FyS$d;iaqq5-~qp5wx4G%r!jm4zt;)YI?OX zJE5u{zl@UOt(s7o&3CTUMX%AwXo9h6WT2mk1$ts^8^vCmdRhxz>}FSgOKa5;zma}j?@ zCM_&#qJj@wJ~+NiqxojUVYk!o@&oWh^v89))ffjnNIBr&(e*V>k*>-L5-VUT>LSuF zs#1`dN3Gw9PB1mc!1IawtG!gU%yyS8;9*Z^JTUM9prx)JVj1h#5XI+Xbc>VL4$1YN zIAz0JYn=$SSVqmNPdqN01^=GxaADbYOILniI7~i7!kvZc6=}nUs6ljaK2tY z=r{ix?jK*`Uh_+&+Fx=f`<0hOtH1QV`CV7*V|sm@|K86%%KZ}e6wL)Y2LBCo>ootR z<;K>(2f2|RCsH36Nwv@BrrOR12oNJIG6j2ZPUHT##K#Mw@@ zzvPl*Ypwor%(RX$w?3X`{}LqgOJQz(1g-uukUOGv*1Y;RU*h_~cxwG6C+YgA8vUgw z>?kU|5$f|%-sGsK|7I-P(J;OJQjfp=6hrtj160wOQm_t{|%e- z_BzYs+A5XkW(|(#=?-s`rX=y}f^>L}h$5u}OImRY%^zMWJ&V6#zou!B*YM37HhTvk zqa5O+&Na9LppUF^SHSpn6?ZLn1B_y)xYu#72M)iRdkc3j@cFyo>5!L#0_j10b*wGl zD-cXv9oA_t7D#{zf8WnI4>9Ba#g8!yF>yqiN(0by9*+38Nt@#18ylq-U0&RJ_%ub> zJl(F-*0$&tvFKlzj~xKs76d7tDRJoYQi0VmygBMA@*#BJj7!O ziNHnq8p5^otH4WGAC2qBSE?pg>L%`hs<%Y)e4WP}EL*MX#TBc~E3U=OT(qWWZ*{Rs z!@*%c-Kmr5&e0B7eVyrnrMw4N6*Aj@2W;$UJG;9AQ|2Nx|@HU56@Eqkb3+V{FW zvZUO)e-F}n&uw(K?=HhK;NK?Oog;>d*^F^>UNue_Ww{k`OiQuh5~}wT)&vi|5O#*z z5JiG9_(asTJRFKBNyYHsoT}^aZZ+7!XTS{910F&=Vor%EZUv;#d$^C&oD!*Wc+l(r~po6P>HWJ9W z-$#t0+DRNPEbNgLNoM$!_uiVsKafY0Lh{I}e(u0NJ?AH(Gxhx&h!O*=C5jpyjx36! zvxB&_MWX4Fq-#Xn7@))aAidl4Y`0p# zY-JSENr%rBVmQK@c|m5Pn1-Tk30KPkGx&R0J@xIGppZq^`fDsZ`h3CN$Oa(F2{#4b zKN4m`9P-6rV$iU99s+ET^p|jV(r9U#;Hk}n*7Volc$CKkX{VkY{ZZG!K3R_6u?>=G}0uh%j z*DknB^>M8dbUl&3O_7W#L(0>wQqZM>q}S=Tuo4}|wz6K;{Ktc>R@KQ=p&%OKUe{W4 z3+veG^@0n?*ee=ul635gx@7CJtmEIUl4KaspHfu>EjrZ%rOI*fJbQE8%V5;Jhx;(# zO_7n5vD{OBianNl3N}YcJ5-#vz@Nj^Ym{V4HYyQu&TMx8p__)tBPvUl%bdO{ z@X?{`LXY6$cc2w676tUSX_C1f{AL;*(knf*diuSY#u5haFoWQ@l_T_$eaT0x!eELfI@7OlRRe z3l1KX1yR#wUO28+49O4`ebOY7DG_s0S46l{QB5%?86My|FY!Pj9`=gr8B$L08UJ>| zzfLp?uj9$>a7Hf$`!|v|z(4=&O{@GNULZu^j~rq9L;NZ(59SFGTau#Z&gFDPHVoN6 zlv*OeyTZ)0E=mF~$~v#&P^a>`Eb@XRYSTqY5F|lE)q*GrY$RC|@EWdT^yzyQ_crd6 z-0uWE2uU$Ta~dE|_pt|I3W#ntl}oxNl(2i0 z_Pk>cJ^1J0RLvPB_)5tLpB}~;taq;P@*w48ekEXmWr5!p9Piy59PQ(UW!T+X;z?B` zO)^j5Uy~QAgfB@lC?>Lq{S*`wdA>Z9#wA-3O;cQ46GR!sfGi4!hHy$W=ZJN}XTYY5 zypcc0{c6HHvL5*+SZQ}Qn(OoU9By6_IwoS%mB<(tEPzjAKupiToPNl86b- za1;886{<_c>ux;+{q_m&xBW`$kx>m6VamTZtR9!|Kicm6BI|nrx1=3XRQ;jF!!bvW zPq|F8Wgo`ePFb5nSwEFXTuHMd6>>QsAagO&$LB+*QFL@}#Jl#IPdnHo^>xgVxr)81 z73wLoL7Gl_#p}-cjNVqF6m8VuiZSS*S)lHVYezPpzwj4SNq)m29v#`TBDerFr~}eUP8U4)rYx_WIY6 zPG1jeSR?KlG_U!MTjDPWI*uU{_^nf?F%k#!L9ubCETc0G#;jgHjo3G7IkS{AKjP!} z1NkD!5nVGt`0F{loS!dWn=^7|E(6oQVLGPi8rM*Sw=5VXTw75~b$g{c_2#=@D{DDb ziR-T_$lAT2!JfkGyG>B6VBqXCSXXJH1TPNPYR`BHg4U$&tE zFoJ11*_SJs@bBSaM0(ZTikeg9*HmgiHmaTpiRlf(@Z#KyR%&%mJ`X(VzprW zG+9i4>%5PX6fF*pNQ*@N_+gYt=8YdpjSnU=)<^JQ#+iN+p18UdK&2p5EV)(|RKCxK z0=7nEI@X@c1`H8nJsSe|btJ@xwbE3n>^NoErEs-8D&N*gu&`|yroO(8OUc%OHHKp8 zcA6TO#o|RgYtq_^Tq3R57z}$x7K1O(4`W!Iu2g0DYuj+E62r|DP_6@G_ba%!Z-t|2 z(qz$DY<*5QhO=hB<2BoKe(9j^7XwqBPW^hUn$W?7y9^Vc<51L2W0)`03;)irb-k>2 zePsXlTr)S9*XJL~35I4CawSclNAIj)D*0kDuYm1l+BJ)0km8~J`xlIS&Xml2-n@#^ zW%=&A>&rKSA(P9k9m{+OwAB-`xG5C3#(?EBtnRxX$D|W|MV~>d0oAJ_uZ!!7u993V3#|&yaIy({N=3t zx-KbpQ7$4bH2s#mDI)U3T<+(#m4C_pc5KA{=J*{hV`2EP{`c4v_5#cg%T`B8Td1t> zt&!MsGET82`(%wff|^C&r$HPPIRIr0LT!pt8oE~wBg6R!CUFW&e8CU4(PjA)rrLVGf*52A+J|EeEvqWGxnkB+(X zhI;z6YHY3}Fzd@hk%j?vb)#TByB$Ny34ZKwFXwK?+@w3vUXrHhYAfX)sadi3myMXE zO(L(x()Nm&onb=9HcyQyr;d!s5ni7LHm4(&j*?-t{&mN}Dh95LQ9O==5k0Oe3dT^< zegJ*|mapSta2xzUQU%u$bs;IQCb=uPYiLa%G_SKjS{;Kp?-UTWK{$n>g!qCWFgRTY zL*ZN(gWw#OS3kZT;-mUaGdSltTtgm!^29J;1~ui>M}^oo5725t+kMqbsjdoJ93QTV z?`Ht>AN~wIsedNPau>02&_y3f4KoQ3fiLEJx(}&+5EDehFDST?TrF}dbOm0_s}eYK zwx@C0JDTd!fwLv>`eZm;D!!k~P@eNE%)#atcr4Twx`8&c8#r&MG}8fWT4CShl70(Z zm+~s^HXM6>kIS}=8X!)Vmjl$Vw(kh({1$V>ylE?%y*lOC$dTe6>h#Fn%X~3^uq_dP zZ>qXt*GuT(&}GAVGkQLh*Cym|;HSBbyJvSjHQUg62mYH(x*xrpHL7Y@@y0GNch2ME zu|W(kGqkD#%Cu8E>764ud$#Pb%R@ar+jrgDvwc62?GX8XFxGwx?@yhK?)}+@-sAX$ zG6{V=-WppJv5|M(_$%WPI4O6p+zDkspVpGNF-kk;eR3P> zHzR%bRJ=*aK6k}V`dk#^w{?H}SsFr*cJ2uM?Oej$x6U7kue)E%$ovL1>Ye^puUS*7SWRQDh z3y%SR->^nz(r7K++8T}5NVa!vXO=5VliyXAz#hVKt6Pfns}Z!*PZC{SUss13)^Rn; zu#DEas*{!xx9b>vuwK|MP$+UIGBS-yl?M~P#PJA%{>3Tubq?AoK}6HVYqRO)bjeTZ!{br%|@9 zJ&u2JELK|1h%9Pl2PJU>vU+_dTt*A7D!4ucV`pg%RzJDpmJIa43Gu5MScC5Pw(oW=8fng&(`DMndM&i(X;e(pN6j#a8*KJ2eMeuy>Q&zrj4N! zkSNcGHq#FybLm;SLdS@&+qf1((!Zf-n)0vls|6#zW<TL9B`b*zM&tfo3 z%+QMYr?HxOhz$v_5mcNB=+<%3M2ew=PMe*jpxuvw^9(JU8!dq995&|$LMP3{1YY(4 ze~f?`mnvIMzte4QfglFL=2_flW9cS@VSa6%Vk$niG5XJg6}+|$7bsz2;jqG|Qf8%v zC(>3I8S z9QRJ}w0$#2f;^_9VZG-$Zi&Wlgi}v}EMg0M0V*uk+QhnhO(hiniR{hK)LJ$8_jo8t z91A+LwFrNPWs0mC_j$i6GHf0zPfoULwd1aJmIm?PUvSyVWEiKI({L%u)8XsL{+c6P zue>h?ttST%VT4(~M=`k^OElNHe|C8m{;gGJX5hfn@(zDkD;BlGypw+vvG@YJ^9n*A zoU!v0qM<*k8{$OXb_@4gF6H;c_m`m8o@DjFeK^7q(i;Yc2fehNPNNt|=r(Iaqvb=p z;ZD2oZ*vgZA0B_kP#;A)!UoG{FVD>6+0%YQJPS|UlY(k|YnB)SN@`PC~ zJfUwttCH}IcV4NguJyLw(}kz6(#+U<6{)BJ$G}gG3;$o-mp={g?%@_uuS$Q#W4%jh z`&{k$0f~L7-R&#sFXwJi4dIKbq1=&so8@W>(T*Q~^#B|;AW)J%A?tufXzW?tl74yW z)l=UJ;Syqa#H>9-aoGp1Xr~7MLHs^<{P|tJt)z|f-Dz`hBBWa9L}NCXiwTv=A1Ju?lsN}DAV?E2cd^@eXP*l1$d+El5(Tn z3~=CE37wuB=6UeK_CZ@WDox92lt13el}fo*?W)=hc%bMih|*l`s?W<*R6Rej(7_sp zorQ_b!bHI?H?OyI@6Tb{4&2e41!RfAc{IwM;oBXvly}=$3vz{~Ok9Y}4Xl0LPdh|D zCR_4*C8DccLj~o!3(B(ea(YNNq$0}?Nd<#_*Cd$ldQfEy4#D?RAc3s^;5_VPcK_v8XEDH<;mOp?(O zt{QKxiaWr#3!pm}Qt+AGqWxgcHpOA$gxdM~c-qfU5~Ae| zCBRF2t&DEU#8}Tf@CN}DHz9Jb)`{&BSXrIdG(xc3akD;G>Wd7lQcm)nJ>`I8Cg7yIyG!+H115$G02X01!a2ptrukRNxTIc z8`HcLiAA@^sr)5US-|ovypCaPf-7uL-4sMi@^Y+iGCW|eh_SHHXgTru?NqcwH?zgH z2zFUK8*YMY!pt5Nf(KD zn^d~}j9k!VP+8B&@tEKOS_Z|z_!^A4#az)!Gs={+E=%INpbG1vByYwR(tp|%Pl@o) zB+2;{gX!M=R?h<+j|rV^vh`erul7Il$?P0GUxM!t`o%A2Cg$NoobWJias7_c_GnvZ z`hq-hulVY1Zvliz5q_RM1K5#$1ci9zz6EbVykeTNBdB>JUdz`;h)kh4iPy;tymo1V zK@4c_MU8vLkWLB0DanYTw6z)Gn&V=AeOylfI$3IAL}xG}idkUvTSN)aqma-jI4S#| z9kR6k2Z9{IfS>0>obc%5?{^ii-J&Bl^#p-3@bsD65RG6O$$*~_&43(TqDb=b`VT%{ z6`2nDG=;fa{y#1Pub7_(XWd$|6XEqt7G7g4yd%8Q%Lp#uHWRO(*%@B{f#MbUwd*N; z+7@b_*GcdGH{TX<=OFXO<-l`3UTFr2qnP%+m6ij4K1>c|;k85cI8^@Km>7uhW(>85 z4Dl90xJ5K}gjag#e=8HO-;CpJ2yXwQ`B3Ijy_Q=-WHQ0$*5Zi-4> z5P!%f2o$#a7%n0ZbwP9v3bGRU!?BG8nhW$gy7D1denATffZaD%tJ@tk(NZn{Hm2BJ zp%cY5fd1c%*6{t+|GE0UWaEDawZwyT#u(JkU)rMSUq5$lEz$ZcnqGhLG!3e90#ogb zo(~2&W5_tPe7_t7ct$idXjK2zH0uFt6>Y&T(CTg2?uc~f8N_GDrCHQI%q6lw zbFK!`Y8w6bg}|Y=jKO4H(5|q7%8JVx)M0Mk)t)3y0kFzO`Tg0I2Zar>3QE#9Ls;XVeDy?6!;Nvw>>POQh#7+T9u7t+U*> zbPX(~#l}duF&OaQvR@__`9`#wq*;Y;K?}AYMtHLc{W^)l8Fzs<&!^!KYftQ$NuL?S z$+!%grv0rKPy1oH+mDi+k^UZsE|+uY5;#A42xaOR~ojkYloIifhqmkK&aNhYKK#KD`+HY4De@P89>U+YcKOUK(hCMCPCY zhrQ2MzThVYUSbfPXOQp5*339Rh93xGU6IZTq9}Y)S~z`rlL1>|Q)vY|c^abuW`SR# zb28VZX@EgBURYo|pv5sVCM|49_-*-Dk?TT=SifHQ!blX^5F`yH42%uRpVx6Nih|mNJrDm+XnDt|&(E*HKSwjiqUpT< z-a^N@ z^mBpvkGajezPqm9>GhlV+)A(8!KB)*hfxAbe~Hf%*Xup&G|J`1UYyK$M>Uw40@0E) z6*F(>lFplXT`_XDWb!#(mQ+)b|3@@sZs3JQw@`4Ob_<4zHH3&Y>A_Le_FuQRQC^?$ zXSya97BqvXDltns&$~p^3{4}ZR**=A*Q$a7=xp+;Bops1Xu3Xl0xUOt{|VjvfNI=9 z@?|+!nNTZ{PK>@V#m^!ctjBZ0*rhhG`z$l#Fs(5d-I#yZbvo2d*6P|cdI_WMW*p~V zvoyLaFY%h+tb+RjO&-YTf0iW@)OB^U0FYS}JT5+WtI|rh!8+wS*#d$-LV&plXIwJu zb$5wR5gGu5xK+>0)m{n}E>1JBA#%uQ18IZr7PXGQ`>TocqMO7a72B;=UAqE@rf%eN_iJ#qTJow@uT+I=nwiVR^2);n zzF3~DR@vsa&g$NY-=!<%{kx#i56wmYC(s^app~zO z7MZD5X6L6Tr9$2+8X9l;tt;}HnRPAYZ`w~|_{Yjxzjgbfoc6yua+Bhbm-mg{kZ64# z`pu5`m8L$!{VvC)vh{Z7v)9D#sD=GY`0lu??!xyYFXEd<#^u!)`+~@ys6HRMD?c+T zRj#|3AIJLP1m^-xF*1fqlxCwXE0~V2kJEvy6An~636r9t=-BJJ^#g)POrgZ;xIF92 zRzFCW30&+94lKCSb#0C{$!6C?JxA?zi?-T{r0Cb_p~TA__IRU^T9|{)$H9iutk)24Y>_ zOn^Me-tmxXN`aiH>@Rwb$xBBxxzH-tSEr{}uUM@UP$G53_Wj}5HYcwCQJ86jLf_qt zpb$&|;y~TCV=u4Ocu6h9Ylh&vn#10f%&M62Za1;mJmX8}vvMdR&(QV!LvTEtCJA`f z1`(XgBE*9UAdhCDww*zPug5`;t+gm|lVFwXPtPl0#`tc3IIsI%{41)|6U|I6VzUmP zvRrsVR6fr%BbDt!|C%Xhiii3P;{et2o{Xz4;A6ObwA^X$&#;H#yp*zFvXsv zeifm4G6AT+L*a+4-1;t^r}!sDgy&srlO=pZph;>U&u3Z+$FVqkt@u}QoQb_Pn)hJ8 zpUHefGF?LAeW~0I$+xd(w3n{MDktOR`XeV@R3e%NAW5(*c46>RLN?SvyY6LEDQ2`NLyi-4Igt@n z@uVN2B#TKp{O@cEVi`~Z|CU)uNi@e0;C-1^bsGuu13@663n_6n6!Xt+0XuAlBORL! zjoBw)OJrdwipAv#_o5S3eV@q>VFxUP)?9}(Vi$t zz>XMH-%3V@j9*)k zdAVMe6}vo-<1-A>7TgrDt{h(q>h%F8s+|!!=#8>w+lnp_8OLlGxa;NC>v$sZrso7W zfU#RLe-%2X1)bAJMA<9n2d;2&S%fPU(RZD)Lokx1+s+s#!=UxR5-NO^cGXOsH8q~6 zhQv}ZqDS$`i80-dLDQw4IX}j~6|Mc)a!jX=jjvGFFEGyk3YuRt zw1iGN*)J2}9fZqX{H#v==dg-V3PGRec|{OQ!1zQkL{&rip(vunUl$xpA};5xBz`nH$@o41zrSc>>tR{&Di)Cj_sphc*L=N2<|s7$H<$_;;P9|iLxj_pG*U)t@Folmr5lokwuY>QDn;?W@1Vo*nG z_@5ZTj9b#BIk_ayN&1rIZf(t}%ZhS9ajo@CgD%p~D%=XqT=~klW`j}FOVMh-ew^)A z#RLel2o!21WS!sOR7?681NSMH2P8Fu3KG|3!fwj#z5`w?@z->@au@6?P;bcP*T zlL7p9j%ZMd33^ff0<7@YjBl;BM_bl1vau>} z(YAF_8re?${o!k0_(Z$MZt=)X85!1)kMrEOSv{c@VH&_WQCp%dqhw~;Ffe+OwOm`+%c{J4nG5*OsqriHykDL)m9^WKKG3z z{(a4eO&i-0oZlh|SVFx>;r^DhC`K`hS+sodpG451#D4|vybAGl=zH*H@th=Hjh}iM z$0c>XfY^; zEPObf;F)0k(%*9bE5MS#8Gh$kin8dPNrnsKZ~lR<4VxQW3(#rzy^yop9#9`B@prfa z^!=sT4D&H;U^bcU<BMI3z+@h5ewEKjcB|7pP}lR#gOfDycez$uekX$deyp~MMHjdb zHj7mO?MLNl*eDgFYtIi*YNsJwGm1rHlL~h~h#r6|8m~Q<0IgOuo;HebCrDCFH%9TM zb8(O&pOOM}DuN^!T+}NHhS5l(QNJJi-hUDBPWXY3G0h{R%>!Q;#KKP7e4ij(eKlr8gs0%<&B@b+M4P$qQJCs} z%@IGy8za1XEA1eoHA;#@xQ>Q6>L$K?%)x5>hf*tY?hIH=BtXNcN> z=Pd3yy83ZjntfZqQy7YXL|84gBV}qc;Iaq5lqbbFLeYw2ZXdnARQIy!$zYD~EAK&0<{B zW}0+NiDpXkh3`kNOxOhbFycS>F=|PP)OM|8`ZKq_dStauH~)8?u2&ExU9-&d7%STl zp04{h>#GOpJxQz+p@BEy2`#2qqm8hIg^+CyWUK#Nw03Gg)uRt3J@rg;cA{3byGKb! z8K@i*q)_$Jwb&m-_}6G?HfUmNSXy2ZmocSZ;c491ljXJY>>& zuJuh+z+q$CwVM6jfjaF`TP#0IV@9R+LEr}x682LK?xqluF5&*uu?ErXPETW;y?rLu z<`565s_tiEjWSeBJ%pQD)M`7zMYygepw%_ptGPQaie7>Kj4h|@OgtygGO)&!l+lQI zKU>XpHppJK9wbE_iI`_t`Yf!_xz3VgVNQF@l?(eriVa{UQkNL`Umi}ua+R!N@oSRXf8HX2y6fa;^pF~vgK$_7` zD2`H%e;Prh@X8xLsIX}#IqUTg=Z{xK%ShuDE>@LOpL~d>#5n3 zk=XCFR-7t2w(YCp(ZF;LlAPL9JhzgosNm8W-s zeiG9@wSm9^7b-gDVUWh1l5Vq48Y1z-M&W?&rnl;m<-R7CO?n! zoTOahO`(~i*_~!}VL@Q| zGSd8h^F{IduoA`Ih~q z4AI^wp$}B_b1vRzgzGU$(KL9_22JZj2`hq?o>XN?)Ua(Dyg<|~^LYdpHo%Hzv1n@2 z`(x&VOzoba9gCbt>%U{Z^|G5pG>C~Hv28DqOY!Eg$<$s*4@n@_54J#9ky~8gPooJjYEz?&Z&y8BL=XX!FqS;q*yDVaZsuiNhn7c>{nAcG8FbS=&Yn*TDCKNZ_B1U5Qet+JY`Xq z3K;6%=Q^kO2mwx(FDUo(OQ|Le1F9*_5E1*%=kV0 z5DhKyYvYdIsUHj*m88X1ytW-J2GVpz_Rom4$ufXOBhp<_2CSI|frbAc_G<0nLlB$+Qcp)E*pG+r0~l5Y$WsY8RunkN&+V3J2(brJo3s2w;WR}3`- zN8^KsGb|?G5KQvG#xC(ddssp@Wqh)4WSNX`JQk(jooO@5La3MR=N7qZ25kMfvJk0Z zfwIsa$_^(6G=)$-^Becz0O0{$L-m8H0Wx!3GUl(Aj`{P;or66@v;D>+{;*V)bb>}i z9f{35F5t`0NWwhND+=G_IOE0t{^F16`$bOYiohXtZjM{v4uZCL1GQ-y&2GnQwfi9C zaO)`^+xaJ}uyd4N*OQgD((7Xe0@y0;21aecQJyRbNBNF|=mpV`Ct#Q&!#yEM#+;^! zhHi_ZrmMz;q~rl6o-ay5QRZ#lAvO{0f+QA2xgiJz^`5Ejd_kY>ysYQsDo0PetYwxK z4mSW*M+9C}gcFiXs&-A}OT0KO@I_fEOe(6WYIBmPYKGj>;cG@+l6b?AnyRMiT22&9 z^&czy*A5++l5BXZD>Zt@k9TToviQa(qKKatuvUE{zORP0HTx;#J45q~#YquS;!DvC z=ns-a`FMyQQ#}n z_N@KIVy!ss@{z%`m~136o~~*FTi!o zvh>L`Xo8n-*wuwe-kpX9d=VNlUEvF!ZmQ*py8FdawOZ2LIcNF}gOCbm%$&Q&6KB0* z&4PAS=VjBAw6dlVeyUxsHmX{=>2TxVnaO%z(ep)qZ^ave=R`XY>BI2+hBV|Y>T<}y za}=Wx2cm!Z@cd^Pcs{ukJntKkpSNP91O(u`c^CyJdeM zo^ouA{-Gcwz`1uceEz;bV@?D34vvIMp4#|}w7%gg9pB=349gq__!MHjv+1y&8OP`~ zzyq%cusTBll2v|hX)g|@WHD#zo+-5|_6)86C7!Wrme&vfwHLla8!ZWYjvn2^!jNLH zU4iirb{dbZNabLNQ(_49mF@u7_7Jgha~!uTAWVf$h|r2*P!!{`6LGJP_mg3xpsB1` zwwd$V6`|olYd~IC0JToDT-F>-1zhi$Lfx@6V^>;|>0S6y(9X{z0zMzKReJHo7cY<{ zQll|3Ep7$Ff_oHDDM(Q9(IaI zbfO%EJFpAx;A4iu!?Q(s|B;?qnsxZ%wEdJjBh=P;1%11)of1S6KdBSk3G|Z4q}!YPLDCUMG#%wX9`Ze>8xhWfqRyV1d$K^BY;8heqyi`1vrR?_WI*1OaKoB>4ep zM+9vc@wNo{iq@1Mxzlb$l_?|%YX|oN@Gi~(Q+0H~mp-kw@4RUB{R3dxqvY|%s_fQ; z8J9X1zNtxHLP&p`=O4xMk81OdvHZfqtk77T1~^m$WQV4qKh_Z@ro*viiTh_7aejp6 zSN&)AAq+wokC5FoD-760;xc&j*_yG$Zi-gSKANbt+K=^PZ{&+C)r?hva4Y%#}nDYm%TrHx*8fbm_w>K3BuG7wO7(%o2_H>+gZqkIL1; z#i8lHjm-bYcZ$I84DTwMNW02~3p>Rq7s`rde~eg5$%+JPd&2|=npEo%|E~EFsIUM< zK)Sz~-%3`TV!~iHAsYU2dap7)1?`=iEs<#$#{4ytaTs5{Vx%iMW{Dpe@;;wb%plw4!FbFy-NxU!N2AO=D{SdS7PV5+jE!pA4IXYf?eiMZR)r z=4uL1AxOTCT2K=gjifl}VL>iQGA|WmNu1{uNg%QX=bsp0k6Yn81w&dA2rr8hs`MLa z#+JkHvzXL_U?biZ>SwKC>e=9p_Gpl=P!)_xm9NDWwU5WtvEPX+Z66-Bt*5C_p*oj9 z@K_K9s-I28q)l)`7U9I(4m)&g3-RLt-z{^;x!bvSWMZf_1VQw;J*p5;G7;GyL>xOF zz#Fdv4->^0SyTww2p&MEe>{Lq|M*w77cPI0!Z$~2j{Eq<@$*D-)Z7W4Mjs7_wEM4j z)Q-4cVt%+^qCjHPuGub$`Dm7Ph&SR4ThAZ!K~z8kU!YMYABOl}6bH+3U<1yeJ9Io(ZxswNII;@v}?QlkM7X@Up}c zy*o_=d)~C$(1nvxN?y39#$t`p$Hup{&Tr% zNmrztTQr`~i@H(L1sF=^?isgPo4Q@e1N#COTY9Nn(nP_jt&QK-IKOtc@}q4rHJ#1B zTE&EP;+YpAaU2GX4w#P=}`)5*Zg4gUB(P&K#Ab`ysVYpm@+v#{yGF|-+uh3y+YY`~)kk$6oCT0QJ|7&eC3 z3uF8EvQ93-$H&+oPXhiAbjPhbz{oznL)5KzDCO|mqHkpT_yXCM=XBsD%=RLO61U&( z^#e&JEA77bGM-Su`q2|#nV4qssWA0??)g8HWF|)SuM~+##g8?)05`bU`)zIs?Y7wa z+f-;C6Ox~yVxGyyh8O>6>D_L9qO6jcT=?-^Ue8fkxcH$s7T_V6)M3#um6G`Up1^&Y`Em zRiY&fe$C;lCNQumhp%7J4YTa3s%AE3ZKrsXoQH8UFG|OvwGC>B5A+-L!9u)|yMucR z_pY%#NV|or5j{;8i^A<4Q5TKZC|}HCR*X^@JQv2Z#p0E^9V&nlF-m)bWPU7;CyZBW zl<0EtSdh|Pd;COxEM(`dC|v2kp1}F2IBXXmqvQ<<$-CS!N(pLu*Q^N611 zk^IU2oEgBgOf)|yR@9R)sjjz#b1e#;5yTNGAv-1~TZ)@g=2j+*y-Q8GIH?xS)j|8M z@s0g6WU@V(H!WeJWl4@B*F936tuwzc^_6O1voEolHMkTEdm(6NUHp8*|DM}M%usiw zg8mAM7C-_5*lf`_UpnjqfbdJQSTH5UFyyi!s=PBZW0)p|t2}kynXm8!JL(heEMNDu zh10VK_kzJC=p_TX^%H6ybazXUl*e0M zsDQ5V0^L5tt9TQ7&T*PPQ%Ie29G9r$G0h#sm3!M}dmRDd%nYy};rW#nJ``a4lcz%x z!eXYgm6b?B3aN80%0>4*824wxEUzqADP76ILSLfVKYq+URcj{!ibF?!} z>YeEa^ES!lczenc`8lG=xe`5{v;@9IG-Z!yDjMnYT3#n}4`e1eTlU`z8!dbkTHJ`6v5E`sXalC&<0>yl1>z!KlLm}>A`2$vxU%YqJn zlDr{BdGMRm4?WLy>3qb{_Is_MrrBy+iI)4)T)f?6`RGnIhE^qAM;L!IEEp|HVV=`C z%I+0pX+xGMv~Tu-hm8$y!PzKyRa`~{cxS{RlH8~2uaB;FXLJ}<61xC+Wl;`JP0-Q{AoO-ni7C&?1ZeJE_(1p4WILhXXy#n zkFUWISz`}fPvSpWC+uyd_4QKtD_pNu!#ed|k;Uo%7{=TETp6R5=gWD1i9ZU%0Odoa z&bJGs4=p`>^7vxT>oj;nYiR~wU!J_`bocb5b4T{bwf@PMAJnu$K~wjv?dzWI`r|m* zQ*HX*S&XIty&j}iC$s9-%x#_h7et9=mp%XquvE-({8@=Z~2!A_M%a zlI{WSt=yxrI9w$twbU8B)b2PPrwNSK>~`9%9*9M-E>}F{Qb4f_3bf~f7Ta#MVc>;L zLqSAfeKa`fALaYFa8LBGxH0~?k12RT*n^F_((f&ajpvx8srj`${Gt>!CMVxx!+)jH zBoW0qQ6Z(hwj$00?nJ?`O^h-ssD-?!sitA=vkX(!#5`PqCy8krf;3;TO6X{mG)+{r ze7?L|&gV5n)HDfaQcBi=qhDt+cQZ`TX-qE9Fx0J;@bgDN)zkq1o)>ZQP!$EiSXgx@ zELA0-?-`(RYnq%_bty-Ps#+87>VhGH25s%xzi3KC6IIO^YtHgn&U8N1kRglkt?|HigAT}FlZ=hn$<{YSEjdkk4 z@Zo!X*D2F_JD}Fc_haYwtXrU$RxC>(7M>Q#{NAP{)*JlHp_A9Fdd9vhD@H}qjrOdn z3As{Hbjr4nFBTM0b}P|EQF3few)N8E27QZVYWUWQbpp>(96aanf^+QJ6AL+~bJcY( zo4xSQvT71XES7SDrp~q}57?TnSw&fmt`!TKtl4D)L}P3%70a!4I3rVGS~HHHcbs^- z4riTKWT6#WXj;n6P&kK`TU@IY*4DwgT(qtk-d;D60de-Ab%&4-Y&O+0D`8QQE^;xxPQw%$^D)`rgnm5 zYpMN;8wN2A*@LAJ#1;+N0~ZEiM?>~79KiRKG^=jI${XU2kiQ*HNiMjEW)it%I%3TrP+yyKf+pX3dq7LW(n^G2$~(})LKD7t@mPkR3kPzs&q;G5dBXvlt3lo?6o4q>%(RQXXrb5j<72t3={Ab};{`d?}&}W;z zwpS;Q1J!4G4W8zw(fLMiX5hjDd~InGu1+r1c$OX{ec=q?cLr!o6TS?2i+|z4;cp2p zEIBjqIw!JS+1yK)JIbBpUWqe&ls3>lpFGe$pF+?+pFV&G90%c62W-I(_0aKc&{Gu$ zZed;bCcL1}kg(DN%x{AQi2`a1%Z*ZFS+Eh-Q*eS89|$fiQ!K#W;x<@-3oZNs{4o8F z;H75~r;Zc&wGVJFa4zOi3D)M|{B~Pmvpir4v5Hf?AijXJq^_s6TtS$y-d?PV)8wBD z6~)T`S5c8la(l5V8rT&ck>1G{r>e9YvUO!>8#vq)cNKRJ_p|UN%#y<<^p3HxsD7{2 zRvOJd{dTiJQ;2w=^cQ#<;l{6mS#}WTVUF=Q5utPr7KoeiOgDPQJDB~N*drQrnrX3G ze7iLv2yRQSxHuK834)a`h|ZUZC}2#vh_UI4Lcmx9(@9W+(?eiJk?_6@7!rsepvPR| zVT|a}iEDZnPx<8Cr@`iX1d(Nk)y1}40#on7>qM_s`b$|6cuf|u*tUWb>nctu@{%YS zYT`=9GXfd+AwRY#pii5-iF+6K+3hH#v^ze3^j{*h`cG4TRpTw~?RsJQUxaGa4}MTL z%?p>Ac2tI84yPHgxsP(kLFc*-uDEi6M^w_%tF)SEe!Ex~vX2Gf zmvLDK7OU;{6}f%jVCSF$wC?nX1lZfB7>ZsZns=h2l9H~N-b}d&*8h^I++Y>!jx0-x zQ@8S9?#_5>fe^cA6H8U^e;Dh+19UAwQgIG&sC~&$EK4!Iq$#2x@%u#HCc@3UOn^WV zDGD;bDUe)_2%9`V!3#v?!@0>oMzyw~(cy>#9_4iYJL4Uhu@wFk6tB%yvKN#pN z9M)mFk-G(RKlPoMVICZT_OMD*WclI7zGJ-^9fewNSjUz6-LV{vQ;rO^GXig8%nxh@ zGS&1-g<`!*=tV=|ix}%72t2Otmh*UYO^5OAGGuPWCHZ1eKfW@n1|{POhh@!nJCAPw(hR;b5rG+`N^rA zRTd`sxmtO$F;M};3iI_+VFHX7`_4)oL7AQKCKd4{Z<%f#SXG$y%2Tqi&KGmnDqha! zk2fUCv~2#QU%%*kpvz&!B^YgiXS=|&t#$_;dEF*X)_Yy7Dy=lp!M9$PItx}ISE|oR z>o?qRy*yVd`}XV?D#FZE$tz7x2^DdnRr0v7UhER+0*An6c_UUW>6Tp& zYoxa6SGpbg9fy7g-H7mqaVq^KKF>=DXYF|NcMG#b%N2MH{u3u0RZ*2(QJ9;bpA)RY z!6~V}u-t}0zqY(~U~=-n+H&pZh+Wi+NH=OD@hZ3A7T@E_{Oej5yK!j56$D$t63nX$y;85=Vys3%?XC2 z@&|dv)X0oai|2tBSOc@;BGDa04l)VSqt(WyQF63or|dP?=Y_KUsWXNy9DO+m(#d_c z?Kbx)GmqqR2HoWck)MZ^G4}e|-z&$O(|rH0Ll#WXz*Pdp?!Oq1T3rW_lH~CQ`k# zgSEs%mkb~p4n1W<63e!#mK;Y@nap8K2r+&F8uoocy)j_`i6{r~wokxaiXiG_F15b?TaIIil)lP$ss zW^yI2Li6kG;|_2=u%AzG*K)4_S&RMf4EJ{Ko!kT5L)=HWN9d{w%)RIJJQ%1H55zo- zQ?A#i+csWd*ZUp3GED}qOZ19VcKWTpwAxi%#gpjorCuMNW5*sIgUS*+j$esiU+J{v zWfJpXY{HnMX{4=dAfm6=bU{`3s+y`Qk7%l{sCyM9FUx?i+)zT}VT3my9M$LNQu^rI&!0CTzy&>RY9 zNXa6;RG{z7u}{)>P0;sB^o_9>R%0*B(HC0ug&J$5O)t6hb|v3x8=km}STyBEKgzV>5=`8fi!8Too9&t0+>$h`v zaCd4yTCMi}fDpAMou3;;r=CAj6vQTQBw3juCTN z5(Qap7K@Eyu~{lL=)nZ&HGU2vJyZ z9?kS1em!FTA+c34e)jdX4E|q_UK4vh@YPMg^Lw~^fvdSrB8q8?_1SIEJ-Ok$ zEkuu{V_uz~t=bh-kaA7^r@GA3hT?H`otrBb~)T`W#d+Bg+$ zvq}Pzh?4+CP0bg292ZoxSn^M9d&JDuUJb|o z&i_KQUfQ5@4Aj}`f9MubuIL((Uzu~%d|q{O=W~uy;1xY5<>aa?7IZBq=Oj4F6Jlxt zoX8bP%CEsb2meg?Bc_~7;C2c|(|4qCtI*7|ET1FV*q0ii2diREDqyId?&1o;y}ORh zQ+s7z%44QTV;&RW-f<~#S>av}dPx$O?O12+Ut%;GhmbFESg-Cn0@vBR$Gw*VZ*yQ* zJwVqCkZ_3i`eE`)#8X%s{!+7Ih1N1Pp{XWDX4ZJHopuM8=O`ZOXYQNA_)>F~t}0kH zF}!w)|J-h&){pT*+`gPU1^xRz&-0?Q)%k~Xk$NM*QQ7=1CD>$u;%WZvkan6tmF%L@7>bDIm;yQ$bKRy z^n}r(xYd~RyMWLMhF9F3E$FIcsd~ZGWZNYL#W{j!c|dr%WhsV5QJ;^^qp&e%39PqQ zV)V~8$Nwev0#8U5`A`sU72 z@`+(GoK$y&iCezifj*Y_AkS9KpUTbBuF})(~@~aD{OdP5Ouh05W>?{z&d*d zy>EgfijpAH6MC87TV(N)JEXdd%kFR!b{nrgI+G)6zGIQa;vm`qUB^5psemzusT2x7s1C|^+xT1FGzJ5QGb zU_Cus)u|kK@yEbU6QJ=K@lj;HmFK-auI*{Vu*ze2`YsG0M9j}t1ns6Pa}7_t!)!LH znqF#*(DoF{Bv9u8y(0I+jFo z^FCVc0EQ9?M-tR-YQmE{97yDhapa!ekdIyx+q4cvMiJfK%0-C1Ya>)krin}IOdMEY z%Lm6hlw?+f?c3>l_<{Ea{wam7qiF!2U5l$O!8GFO+&V6jz%WiQmHHUG#wOg`o)e%o zc1ez30&KUh3oRww+W~$|iW`cH_^JO~cy8q5jb6vrpFJJ;QZn)kE^?7r@mpg23jn_1)v#W?du7U0I%ZC zV2ob;TQcZiSd_u|FXv3OVV?O567#!)B}c&&8K$FRh8uj9Br)riS+|+J(gdy zd#H`!miYlcaH(YYsKfnkiRP!aANzMp+WzGT%77Hp1!h4PI7xE?B~Y~5^Drt#j<5(w zT}{vcB_&bT&LnUo#G)cwi1{_ zG5M91iJq&pgN2ywsC*_{ zj#8EpUl{)uEY)PYvfK}Dc{EQ9hG8A00e?;T^JPz(**7D*<#|Ek6@wNr-w0MExR%XU zVY2O0%=5y6@d8I$A?42sTLvHS?P41nOE4(Dmv-;=ni)J-z{>p{_m$@)< z>@7d`ul{ecSyXr}*X>T^mJYQrQLGl?1lQMMB;6u+0!G?9X+Hg+mCnG*)bN%UUBR|0 zvDRZo8f6uiKvJ|8Fynr@oOgO^_xTVJuzif-BF`?YvDV&PZj?(R!;9ybdnd}xvOTrX zR2h1WlJ}&K*UezLA#Q%mF!H~!Y1|x}d;Si)_%=oo8{Py6q&PB{S7zYUnH4AYwJ5Sn z()9iQ+6uSuy;3x(9OEloi(ljBxh1X-J?)J&V#`T0krHxBa6qw&I!U+ywVhf~!d4PC zyL2sZ>~FQVarRuqNt+CB=L1%vt@|1~`^5(_0uwjJSegh;XIMN>2f_bo@VzA-OeZwEXU~XBi^SC7A1D3`xHk@yxe;jxkiglWKe{ zznou!zx?y6d;(ttoAtG|Gl7$k?tU$~(CU1|D9=CdhbK@CZQd{fj0N#^|37W-0_8|{ z9fsAb->V<03ZFs&-Dse@(Ez4rdb+0@jYjwUXLe_Q*blio`{V8oX_4ZPT<&s)ACVl! zup>>Nq)$R&vZE zEpzXC^?3yp&^;@_@4owa_r81IAe7aWxR>P~gnf`dFx}cgU)W3&Sr{y0 zqjv|C-^Zz;V-N40w5Kn;zv??B)}wcW;dqGwy5abHMZ1if|H^jpDm$|G-{XyZOAZJk zzJWHSEPf5{8YpLx+6)W9sc17ay)mAHg{wtz$taA04nJqqjB5t`XD?(WImMT>Z^athyC{{@3RJu#R{Uk{ zzaRaT8RE;AROOm1UsF`^3*n;=!8HRuiuQWNd12#Fogvxh^s-QXnSDp}Rq`0jFC-t} z3xc2Kb9$K1Ig!^En|Zt8(o%Q}50`i?2eKBuhr?^U41<`CJ3uki1`!Cy!{7snBYNL)ViB;lYHU$=*dEjj22uf%o5K{wm?vG(MlD`GY?kst?~9`47a_xucLWIn5o53wOlliD;lRghejr zXGf=TuzAqVjHNI}#*{I7{I4}igNfl9+~IKLT)LAniw5h-3Hg-DaYqWkm)INMPZ94+ z@9|2_fafyX(YLk3G#Zw?Wt;nPbynPPaV6S;eib}M;Y7{F(nK{edk+!^+FdXp3D&4opxs>{o&N){IywxyEgRbo)$ z*o0_g<>3{g*#&Bl)n#Jte8u+t(DR>$m#XjoxvLREP4MFkxYs?rcIfDw;}nQSiCQeG zgleSVICIZE{F9}6Dfu7g^0PV`N73er3q(XMp|NHYZYai`uiXt~8Z4N`Vnr=-RddlC zzJdo=d(iQ*yt-}ZRJ&bB&h=5*^VhMP3^n5 z3)|5D*to4I$^C^Z?2Z%xe)T2U)UFtKzjhUSG{yG3^!rkYS*~2hv`BWF$D~_dHf&vO zsp_BLO2_wJXI}U%ToifTHcsfK?8&w#~<0rKvWueDGYNg-c!fAt%R>IL=O@(&O$u_fYtgWesu< zFxiRUhR+S8X12ylk{#R+tC6d4+pyCTr48G-N^RS-ZQNe-247fvgW6vsd?{7HDPVFk ztsf^oK^e5e*e}{;%WlFW$~SIY!Y6n(-{KQLDOoQ~H~w)^Y|;~BBeIX`%86o-5P zHBsno;Xy?k{OOk!?S=)k+lbcnqDA@dIlcuXEbGc&y#cIs$>QiGacQg{*pb#)4ff=_ zhaAluY7TdB(=LjipkKThJ!(y{q6H}qkEXn=`c_%{*{fIiqLUILrEww9RnKUOgSbbo|M=>Aoj4e2Gr#eb&MGCUC)(|ET zTlB`(^SHvPeQ~0`{f9Mm1KEt#x7tAC0M1sX)Ul6iz8;k}q!XY^AH&r!ZnGs72O^G7 zAQfg_my08|GQf*Vg}rW6Z6T@A%@7+>ogs!x2w;HeDzCt%>Z~A|_;!)##3QoO#7(Tp z3DF;^$#PBBw10vJI3sKMe;>bH&9@E6P79^3T~H=s$?gBcaNM6foGyPj8U&DqVW^K5OcsN2CpFz+3j zt9DkaCB3s=oZmR4>DuAtqU{%73Ra7T-&!XnvvyQg4XfS&xwIe}yBCV9RYg|RdZA?P z6+P1|*}WCjS?OA;+}yaVg06SW0&&}=QfcjdZow-q`WstTwNPp;sH&{YuZinc6ewfk zuK6JiX>ZsY2E&jJ;5CHzH%8+>-#W&B{^hY_8y||!BYA_hUP4@rLL+y`3hf|07@hQh zMdk4nsdWQOw7W)a&Z(HCpjdZ{&AwjHP1`Ekj@8_5RjP%#h2lc1R1KFJD~;xM^A8HT zQ!E=nF|G%~;!joZnXqOl4oLJbs4|aYfP=yx9rEM?xX>coQ2||wA2WD<+@K(JOIEdJ z6r%F(o!VN-uNAPKtml>dpjIlnwoxS&yLbWMqYP5AU{K4fhhA;2P_4AKn*ikMUZ-3M zT62q`rYfp#C^GPG(W#TF8$Jb~Q-(wa{v)gd@GST_a}MqZ^7`7=TK&#I-aJyTADPR6 zHtoT&0;78htN09$ox&o+tjsX{3mD*0y_;SaKL}aI980O=cWv?-IB4~P(MyM0*eayE zd`VVy%U|(9G0TT*b22exOaH!Z$p(?bXZu}2!VkF_iw6jIG&<_COv@u~H z{@++!DHH%HMOR6ouy}T{0M3r7XvY+VOcLNQQFI5$<6Hn5kWPolDz$4)`&7{|2{HaZ zaGFe`c^gWYny7Lx^(2oQnjI) zHm?Wxm&Am*Tn0~(Nk`_PV09+Uc3dZI8ZaNHNf;F(ui&&$6A;yNys5i}iQ&`v-aNecVG&EnG+wT)7-4nJv5tj%+s(^;oIQ$4L6m9gDhl+g z*pCIxdc^__!0MDEoNEAQ4|`STLb{Ev*cMCX)OkZv9_`r|ftz7B43-vjOS8JJ7W8T# z02q~p&AMLd7@BDw+Gt+3i&Ib{^=dDCxj3i!e%&h^D{UOET|{zh?}f)KXRaC=E48os z&OSIIPyQ9_wPS;vXt5gh(y$63_m0dKf3E zykyiC%4M=(g2QgB205l%^QDC@)fK~a;P?DKpMPiJkfEuM&8gs@!!18k28?O(Zc?2u zsX?Q7WcJ62-#*9eK&gzaw7j$c71i1BCAFDh>R^6tKQ?G?5>S-Heip6HrO@EqwX@Y7=L2JQoip{NgY6ZK*29<1J%^dXQFSdK-tFIyzZ#|Wz|<2MOP zQr^zC9UDs6B@it98wvpQ96q<51JE*7D|pT(+6%YI+89i{EUySt3vB1>*W()eJic>; z(Fx7-c3c+pNL+X%CRa)(wDyMm@V}59nLY&;7FbD7{T;-8$0sT5fiG+NuEc!hG zdZNPsIi59w8YD%9+stojFR^9BrJFiD&;eldOPpG)KIxnPhE?8}8wH9}ptRs9f$zNX zisRo(YwM=Z;vVUs9~E1Rzx)JY4t;>Lk`;_kDze?Y6yeXG0|;M=!T1cT!?FX9`zn7F zU>F1OzkU_({%SIZ(BATs71TkT5E&54Y=Pza{LXxR`D&!*pK7#Pji**|9T4Ou_5(Hm z^7{loa)=F^Xcv>XSkoq+Jq+SQud*!#E)KH{!i0@7mRv-k0@4O0%Z+epX?Lus}64Y!)VuQj)|s|hv*o#7#cH%_x^Bb$m5Q!7y4xrdP^kbqHXN^_{1dvbe_SJ$@qZf@(G1&o10@+82w?UZ z4c9=l3r13&R~5e7mlm|_4&;~%dIPoi(UAw13b%xCtJ2bM}= zeRl`w*2l<7c0cfG!h2Hic*77=Z`V;6f}vAoDWa@X;1CzUhrE+T#lr@Bf=9F@V}l8> z!EDdg%8H_coox5kd$yumirHLgnlgQ#0V6G|9c(kK*{S#QM+%k+G!>oVvWEe8ei^$F zhhbSWRlivD75Q=B0exk{ZJMo^MlBN?mk7CG z4`)k@HH+K<10AMB{>uIWNc;#d8lfu7U*M>D49~~G3{aHhZT>?4T{19#vE<>VZ-%l; ze<{W>!5NHP*)+rWLNh{@mss1|S7un^jir(zu7)PO?!n$u2YRflYe#N}wsG=02!`RjLFPLzltsH1xt8U+)|7mmg7OQ(sunO+b8I z;FD!V*U&;z3`%Uu8li%MrG^S8woDamI}?6-NHujZI*4wnq0qyO$8U}R&KFq^vsp2m z@reCSC{O`gf^LH42=CAfU>#QA&fX?|F4Cf%&jr;C(jP9kDOE7u( z4QXW>nV$EN7}c?Hud%L0)9XK^^|H3Xs*5Z8Z|?|WTjvGd;qW8L**lV|U@6GA#8mi^ z(6b;rK3&j2XZNj-7eg`-LCn6RR_GqYUYD3uze(gG{T*ND#rrZB8Rq2j_%1z#@~EKP$e>=^2X3;%0|?y^^x|HQ9A zvSKp+*r#k+Is`nh4L;pz>AZB0^nmoR^r-ZN^bVlhM}>VM0YHq3rRotNNRzeI zZU;joA#Q^JmoFS(QOC5rBIfA#gx~CbEs_7OXUVpU6e|>!=;fvs%GMW=Tp^O{GkDf0 zFEBDS7|D|JB_ZP@<w6;52nK^u1?4h9go0|jwyJm)?{6e$zpkjq z?>-LFNY;zpZhN(;%jCV`VNX7M-(lH1EHEM(_oj*46l{aVgiQ;>b@nPa(qLDq1xHqi zCOZZ7$w~>Wf>K3{necqyC22!C1sw7utH6)TN(uBmu!8u$Fx(}^GI(|dJYy$3ErYzE zDb~~b!2Vg~%=u%w?3l;z+A{$nZ}09sMPGe%Rj;m`Tq(3y+HXg+6(qp(Nm zsJq9Ou{Vki_=0Pq7qEEnqN2c1zuU0Agc!C+lmB_zILEpCTu&b2J<)~85yjSV7%S>x zPjOrf$EEO{C~283HRAiKFsAR-YQCaY767oy=XFE1dq;b?udiBf&IMLQvkMCqRrW(s zraWQECBGb6o)cOhgb9Gc5vBkrtPki`=y+CG_Dk}FoL>b?=iF>NCj;`ZmqAAWKUdIS z9)tcz16#UTM52DdbkKk=m>@$ip-dyP;nr>RfeHp#--@Dv&9A@(wOA>Fhh%Gp zWn82o)+e4bs1?#1?bC<7;@X)Dr&bH)uvD?Drt5%%tQjj@^}S7I>-*?FTdoF}Y2XCI z4K{^qvaTrx9NJH5mTFp-samF{Z5vv}E&6`Zt!M_L;}0S_E`Zd(!1~Luu249y<r&X+Fgor08&1{jVH9dG>yt&RU=^)V?9Gv(e|5{ z)-WnLZu{YS)27a)Aovo|eB&XCs`z1$wE-1PHvt&H_dSZ@tZl7<8Eubr7yjv9_O#yn%jXVvqYTxc7LLeVyhp zxnwx8!m_X5vU>n)`f{|T^WO2q_AI?tv9rb$dhMVCfRWCvL`}?cS7N(gv2-Oe`#&^= zeivj=^reyqOi`&;D~i!deU)s!FyGCPsmGU;F3a;$LjKuycLso>V-i6qYTGdwRRWWL z3`$LaG4ZD|mO)PhndU-zz;Qo-KSk=fEbz%m3{GUZA>z=E&davBO>MJc+D6~BL0JR^ z!>tlCFi6!k3W2gVjv1vX2ES{%wjslhVY_C{@hh&Xx)t9!l|f4(8Qw1fPuZD?2j8Y&;{r+Dt3D; zDLkc3{wSC2P@sZ=t-tF?ol<7>8@f_zf?WwzsW_^>p{XK~@|ofZHKmDHD050ZnBkN) zRZnQ73g=^UYnAO=%hjP6-^~aY^rSGUB)STx@^YRo%?aK;#}pLzab#+siJsvm4)al& z>mn{QJXJo4>wVn1rmD;rRVVe*eQ#Ya?KI`B({l2`9jm7$?rwnF7JD0arm4`C(KM5A z-%O!GY>om~WBo4di*XmLQ-caBq`hEBhv6{9Ky?Vb*a-kt+RHAVv0Pyc%tpn{Sipi3 zrBe8Ap`v{G#tZNNR2Wj%*FI*K$%@nN7U>b8%oM1cKxHkM44q;G;olaD#lkc9eE$3s zBiB`(<&x(*fA2ZZH#PRHw`O6-`r=;1q>K1lvh#%#Q%7^^C{b>J}zF_c4D0K!t$Krs$9X734+0CWkF zU({9ER>S`UW0sHFos8K8c6Tynxkyfq*|S)awG47S1Tojv1}(xcWDW3oG#r3#WI6#A zK--NIzfdvs2kB0wC<`C!m2C|JJx!zsH=YKSExx0u>%x$J8OHX_|M)`bQ)=1zG0k^r zc;f|H>@Ayc>R|0eYCE7vO+t#QLF)mj&bx(xxCZq}qrI{~8p{t>scI7n1N}^)_}_f~ zE_-A-u2))iRF^z=mtqvp_*JUwy6aeuM>T6zQ40mRRG+UYHP=>LWvQtyw3ljz>bVrl zQz!c};<10f^pRvQZQNlQ2mtJyZqD+^DLLj2I#!(n$uK}N^b$Ix8_3%0ajqW*4Ei9h z2irX1ZW)^h`J5@JC4ZoPoozh%rKec4_v;^X{pAK(SZOziPYsw?1$Vwmf;#AyBBsD1 z;V2fEbb7W*tKep_Zs5QrhJMa_DVZ-Tus(jRVw9-_ntJm!||St(d==& zF$1Rq4BCUUk;@ySy*nHuD(=EN;P715)VP_!fd-}+g^VZ1;-0_8SY#kS@GuCl-`M~Z z)3`Uyq5H0M{s5HEb}otcmkOKNgIPl$=)-w2pJ4hR2&(W>T&iC?sp_n}PqIHN9ghpr zBX=qd_r+-T&|I8?(*XwOOEZxZ))e?SRk4Q8YWuh$*+0yGiQ5J6%HJwnXYa(UGx zKS?f*$P)|xGiuqs4X`}pFIab(WOVVoIaiS#x7BhTxiZJVJ0_Q1({#)7Hj(?EU-us< zS9UFj5XaiBl2*73hw&_*zl6IBtdj6BGgK;a0B5eB0>^dtWn4 z<`vWabglMj+pIkQJORrjaK7sVZ+;uztf=Zqtz_vBxb6eGRnktKJ{dgr82B$sCr?YP zA93_N?0J2J(@J_Vdr*_%i1Z08c=$zlA*i{I$+ij0|1vxbHIWsRB1FSMMKHHuhG$5?3j4NX0V8&{A!k4zV}~v)ky%VexMXTtxpZ$B-ph9G|9%PdQC4#O zbe2H~MadVK;>eqUhD>7Hhh6vZdvU+aGd6OIRuiy%MqnKtryj!@qbqks8kymimc-e> z{p)Sc$DZ7yF+&CH>^FC$7-ullwrSRMc1&Isr3!+Rgx$+b)Gzf<1U2+Q$8(s z+n^U|cL#K#E6*COcNAFl{JABpa{sKe9z zW3+SPDZJ(>_8UYTr#|m%@SRV-`$=7Y&(sHhMAz{SPyb8`0mpHkAe{${yDHUwQ+Abg zo{|v2WQTLg875}Bq$<)^Rb5jTj?I(i)`|Y2jH9n~PF^^^EVuSfDO6Y9$+}65c-l!F z4)S9E1aRa0u?1Dr)#bgGynOt^$&{U%V+)COn`T^Xr5s0&t$hPt!G_a;NboDwsqOZse{D#ay zOWrKyUHpI2;_scfle&@A^rgIiR3t}RtnmXJ5m8=98R?@hV{eEaTMB30c5t6P)>-R% zthfx-t32^wxU->$?kC((_hgNlvQ8`jzN_eKr`Ool3ezIGY*J1Bl0x=~EQb!!KH8zCTWGXSy?+-uCub;ZCZi(tF;VAm9;q{pOn>AMV3$COI%+J@F@a5 z@53G#4y^_x7{42WPg1yB$;XE>0zjHb#|p!6$8M zS+s5I3SHC;+b4=rv<+>MD!MJDb*+cPqYJ_1R=Nr>d&1Qgc^TOa=a{H(9Z3)38TTMXyWvb(i4Y z|GsGX)|oS#n~9#8V>#{fAYu1SGbD$oq2h#!y}AOqfb1EhdZznbU1jOCMHZV}tv3e$*n<+=2*6_AL1NJD_9G%jG}|jBX02ko@{pI(*0YC`cYMRRDu7|$9n}RNcdm%S8U3}_IYYwv11{o3eS%DWjpKxyLhC%)b4f9$m77|ljX~Vkk8_Nz&GE-<7X@5 z(EZv3iFCN{4~b0R{~uZcpdknTlPVHPJul4HSEcWQWzFVmE)WyLkSih6{ttD~oKjJ! z^qDe58?9<)k%Qwf0Ef$~cA4Jxs~x|3`#LyhsKD@2hh43DUEoaHxQ?YtGd(8eb2z*Y zsuX?$_}!??&sSc@!{5Ac>C%OB=g3<09uD6OZUjdvqD;5p`>;}r@D2M}_b>79eS7kt z@A=N_s9E9gF7|+%=@U1i4}2%parj*H@V43RD_&nScbSW(mPNal*;kfmMbMBp!PVlM zlarHOZU$g^qf`z4!&K|t#*aFB`gi&zZX~=e=x`wyHDYyzVQT~{c(_rU0Unn^R+s?ipM)$)ZT|024fJLN+xcg?<)7Rx;j}?B7YwKc)JhRFkP6*u8-r`1JVg!tLWt zcDYyZZO4ou{$~jerephs9{c(s{)yZh;1_%f{!+jJ`K2$t9cxoEa;K%`!ks<`A8|s^ zDP}YRdWdNVSg^u$9Krq;T#3d77kw}Q2iSeTQZ&_={)4((sx;=RLD5wm&#E)vJr0@2 z!1NKm$25)I5LD+H<+3|QiPr)8r%Rz@BqQYNt{oHut>l^Y^jqwnpML*4RgK*cu$wdV z`7NYIqIZA~m!&=FJjUTWVwF9b9oUF9I|6?StT~Lgf@EeBSc|Yb3T1MWy2f$u`JTWc4N{+r+4#7vXRaJl!43^?2#T=MXQk&ilt_dX&2(< zynbd$4@35}{e8VmPq0!C!53s7bLjkKRsKSit+Sn=^!wLq*K1^v;!TRBR=*&t%RVN{ z`SKS6w!n9Smi1e3S0V@g7mx#6Y(8Nby=C0Jhe^S4y>;Bi675;TA~BIPW4nEqleTvw z@Hkk7{&U7sdrr1d64^?7Z2?ry!dhG57v#D2l3_Pr;_30X_>1lPv|a*fSDjZEt7sQg z7u9)iA+=JS`o7(bYTsjDqbQ!&X8S?OGB52EGCvOU_F5$1YKgXk({kj)EFE9z^_p{5 z!7dk^!?e9}eCf-p7gpha=j>tq{cB5&7LhvzyRr6u{qR{S?xPs*_wE2~&PWePkAWZg z0;@ycr5GWGc^ZTjx^o8C4}cA;0UlboS^_7_JpiLRtPXK%ZVzB|o4D3D#Nx4V+(7y! zJMP1&p3yC@;F)t~I9Dza(pt3CdPy;>hOE1O%PCff(>_c#Yxz5xZoq1Dk&KVAMF3B<}(V*)%?W&D?<>yPfcc==!B%SX#ln}?5Yj$M0 zM5}PmO4X{HG`?w`+ZI=HJuzYZ$&F?%o2H$# zz(7&YY1T>2x_u*QlDMKMN7}lkY$z7|YI^$!94_gZT#o=oaDY2&Slw%844gsD%)Pzw z(ps4;$DP5ivL{;6^Z!k{04>_Ezn4B)OX0aIS&F`qG_Fi*${}wpkMCXzbI2f8UMY)Y zuu=;DULFy&%wDPbY!AGbKL%5>=dwLeJCZk+k_ zgTnVdntdDP;cSp~X&tPlv#77w+97KI!OG0F2rCkW8mii7-6@dA!YW@w?QMg7#dKDC z8SY>jp4I>54JA;mkwdCyl*9SCX1`o4Dx@0V<_ftS7?xK&w7MY6ZcS62T3OZA|7&|t zt@c)2TmH|who~8v%`>|@>qn{Km5$BVY93iuH9|Da@zxgVTP2IittHIGR9j7z80D=6 zaQ|JED1~}xf;;m2_iTjWMv?wRvt(JJrJkAJI&#vjgyG!bf~_gBzLtI;N9T#&n9oD-Cc4!zKABi1efKl3VaeV_|{ReslSSLM2=ZuPVym z4C;q714X$SE>)CDL2t+pEkBml_(Nae5InD)Z4^n9{Q~h43NEMsCksO28C9!d$f5)I zcCg!aRTEv}OPYFbfO@nm%Ux8I!M&;`)NjU05W7)@{k$hlw1gcCH{6(f{Jlb#*F-qH zo(IRJ6wb2Hr8Y~K-XvWR#%{czn`Y_{1hTwm94aG2mQPQ>qN$RUM;CZtWTf!LE3{mI z6Mk59$sM29r_n_f=&}eh?`#gwjE5X)ejJIvcS&0y+92xe2=gy(6FExzkBSuh_ElEz z7Y`X749;RUL_apPg6u52zaX0Oa`br+nM=6vd zh3g!cHeCwN3J8Yrkw|uJ1#Bgr4#0DNpTD5g6x;hiO7$1Kc@O^I zw+9zO=hIECTG%Kwwf`vvtiu-YtC>xHV;wCoFB!5!Lf zOkv(sUz-eKsT_5R#!_rafUd{O+OlPY5j^pB5Zq=V`UbCP%Z|W?*I)Lkw>xa@rK=~k z*F>9O5%<8N-Mqv)oh&VPqeY!$f?!$Su$?@*9R+{}@pG`cEzXWIL%3XxPD+dvmwER1 zzd%rMS@2~B5bKAdm&ZPq>|dH9uSGD;bn_mdJTDmYk)qXHoZm{%S= zO$0)GRI#yKGCFo$MR^K-yXXmG0p-lX?+4Hsg!^KFn@C-_(^9f>vlY#iaVR49v=T>3 zCi=g(vukaCGYebh-EX8lx^E=}{2#`E%)b3Ve#iDKJ&$01=L9|DIA&bvJ1JhhRTYaI z3UqyR0h7xXKq>MxdpKDi;U$!YB4IB!^z~yr4Cb?Ho(U}&N{LQ6}2aT$&@Ua z=#oB8UC^K7FdhLp9l>}mkG{7txgZPewWzkqe>sJ?;@k-*c@?YE(*bUP#Et=z#?e;w z*WVq}lxP=pb+?0ZV!Gw=>xOoZcD}o7-+gZt6Nowr-l!|pdjV)E+ZSX7SLBCrMcjy^b!CE3>b+UH7lIEwjMjNik%`A2h*()brVxu+8}|m$Bxj;1 z_*fpXv<$7#lDuy^y}~hzt+$`WmP1G@vD`E=+jL9l`de3cN50sAixQsH4qoo?ywMa7 zpV=6vabN8)n;s&?xj@kAO*mrm5*>~$qXQkal@6U?epj}+IT!iX_}??ZY0GY2OkIP>7VD=d+?$0 zb}+CSU24BFX7!~uUzx=nqz(|I&2^8?pM8Ra>2v$BnI{53Xt`?_FEiur^7%4@fLnWi zn!@qz#~=5dPHgHiD44-FN(|7fjGXXXg*i`?vH(o6qUZ=X^JOi zTRtE?8(F47JKn;CwS}^Mk9Lx_M^sEpU_?2HNfsd`Q#%Kzb16Yy%^%ELIMxwrSdB9W zvqnmli}?ebmFHVCW>v`c(g`K@mwAo-Tmg3Xp+f)#Q4SxL0kq_es^*BV?PJFjjVfDx zg=z{v?{BG=EWn0Un{ltQ=)s0nma#KDn7{C%Vyo&HH0;gQeB%CwDqCt6BzFGvlzAd& z=$P0A)kMm2>wud9Bodrx3~<%|>ycPQ^*=Tyn={6wAGX)!BdlpQm;@M-!*1*}&whUF zMPkaD?P{96ZEKoqYqFUm&bqd#ypyWLvWQCGshC+Fsq>ET!#3@omKlYyzZRyM_klOU z{%{|)@_RWz?B!{ZTN7}c&(j>De5wGKv~k5UrhQcSLdUMTv2hkx(rTsLF%0>j^!1{) zvZNKX0UMW#ysX)=a}2z@kMVJOe_tnbtD+EX@H>38%DimUp>u~3KK-r*kzNMt9+|FM zh8gm(MXMpRkXZF3CJ>{-Tfdl4LJBcV0?%a7^f+hJTZd&L*LGE+ z^ezK=GJXvO9$E!!=|YrQwm@QG6-G2TL#Ekq!Pt&twjzLuXx$QajzzhG{aa7vxNC-0 zw0G^IWd@5?R@}T?!>Z*+WmT2`aGdRqR}{xMis=?d4M(YXRiWk|;t+tncT_ro9dU-a zFj3aXc^UUXFjh;79_{CtiD2$^0W%S?znw1|UY&r}E0^JuK11#(pqVcvRAEf&V2KUV z5t*h#XN#WeA~rM3`xR2KbsVyys(IfcL%h=DQP4? z8^BlKxfcAhZT4aywwOi%hi;P0m>$mOkM1|{vl$rM@X>u)WIK5SpVf!$S^9A10G^v% z08U2ciO9oEpM|+YYl*cR)uG-;zg-qA@I1A4og3Rv=j*a8o=0Z*)&Y%b)%01NTEm8EkV;k^SnoUhb)^yW$>l(dF z23|2`qL?d$R1Bk{Vh3dSX7U_`DQ6Kv=%>f6!+)r&dbJ3X$0fRDgY+SuUva5rDT->F zwL%c6o?!`eL!bXX=`rbP=|`mx;SSB&V~6!7crwd6;q3$}m=_naqMa^jW3x#{nIUU8 z8T5HpXSc_iD)YQBxMznYJi-lx<`4g~8d%j@-38A_mlc!R*oeWfojUk5AZLuSQ7)Mk zLj$6ix=dgU+NPyp6JAwUkp6`=h2SvAayN%@{#*tE8lD;iPTjOs1uRJFR(ubvN!7M= z;#sop)>XL+!(jr=O}(iQ!>~%40#+1^iF}?K02u)bbaMS+k?kdzHapWb)WpUVa$fT$ zDsQRDX`||<)PijJ8hryk->Jg@Vu+nTOZ6tZ+Iwt{x&y4V{iXV8T-U61#HeVv0b zHeW?}R2aCpji^BMUl-ue{*N5La+b{QCRuC4Jef@_?Yyd<*I+hG5Mx)k+TDR3r3rTTwOOtv51L~2{ewqz4W4AnhZOyb2Z$f_XW1sx$P9{!E$+gx*nSShE^Xk`HgL4 zo%VoHXsWgYqa7wg+W+_~VOS`apPkTL03pGhtl)SwgRAGt^X0FPYoM}iTw}>a%_B_# z7GJ7KT^?r|dsYwuw;zXH7oW}GdsiOuz9BsSB0_jMpS^?_6PMX&JKsNJRwlb>!eM5C zV26%z-wYdb!*C4v@7LS1vVy@!-Sa9@91?qpBjCHa7U-Iee`vIeZJCrs?j*tARqB>IopLur(>mCgE4-t7 zo~6WNZFJBN@Y!sgx6eA3!}G^2om-$ZuECSRq20R+%&C~~A#$8v)Ap-xEoYjJhS5%Fdnz~o; zap#9u*i$u=XdgR9NR22pLVkO4Azj66!YVJ=|^~ptYZ3z7#|01&aakBPhYoiZGk9v~VjQR&sBG-a~mxJjFwi0>EX1 z^^Fgv(>~?EmOUq$4{LjXq~V~hvp$$rY0_{l8Z z1h9YycXzMvPUX)I=TP{`uFG+~eT;Q1m`0(rD{VWIAQcK9kkgmBUjL&ApV!WHrrVUWqRb&{TEy0pF-+sKT8xyxbaU4SM&&ZmbdA6Z1wXP8 zzrmM=Y~+M$b|1cgy}T|wtg13qui*JT_u%o0P89*xmUNU!uXV!u-e9krkiYD#V|%(D z-*>&=)W1w@L(YQ5`ew&)zcR&A*Hl9nfm5lhsuAeJgT%pR#azNnUL~Cw$KM2R9MczA zDqIk-{H|(l4F43|iHQ&a%TKFf^ggJv%uZ?lIG9i~Y(J8Ib`lezv}-|CbEBdGOC|lU#+qA#dyVFLXgE% zJB95Af95D1q~B&V=qaXhXjP{2;i#|NGh;OXZ}b$R?$%@?A0Au#LErfFL8JP(iy|+k z8%&1tuL%3)#7OQf0LLiR;~+Qr7b&Dy0@*Q-+J%CB)O6$krHPcW2b#(LxOhuc$V16N zwnQ||-~b@*yA9C*Yh@iBSTh3kQB}aDo4ZvL&?r;8$Kb38kQe0$wWIP^^4U`5V@+4&Uxxnv7g$HUc?1$Sg&}NHq_{tNe-%3Nwz)Kh0b=L+ixe z<#=rVVd>IAWAmZ|DwY;Hh*^+>D8AX9L{Yt&XBvDvMK2FwcIEykB+pTOHQz!Ib=7>H zuF4&#mvXmay%Mc*iZS@cL=1jEUKV2TjXWl1OOTp2WqynJOhm1aS0^Ly0$%lvDB^DF z4I$zV&v6>~y03na=Ed4s^aJL>0?9sLxF5Q|W4h@>-;sy#zn5(@^YpV*W^1|* zYJnHrWV?FanT@nB(;XgaujYr^GbT=$gxLEB4zX+Mlo)$zE|m`yTz@}yhsWT$u|h1% zq!mTOa4~!txkOEBVsu@9DmA?RP*=3Ds40%C*_NiO#4A=@-Lhp_bkLO-|Tl%bj zHbu6GxJ_g>&EDZVdsnZB^Oejec&~u>eB?LIsPK0n)tmW#W#N-~>h;zHnD5(nf3C;J zWtIjVk9-T1`MYWU;bg=cNV6LU5>?cHco1zf)U!uf-lwQ(gF9WY7zxRb2^gI`0)3A! zdM`z=XzI83r4MEMOvOldR@qF6aHo3XJ~6!f3I>jErs97j2DLMGEA9*3!d2Jue(2L~ zLcEBL!-%oEc{KP00U^Xf-Pj8Sfh~l*=;j0+MurV=v8ci|1YFA09zmHonA{Py{T3qH z0!O`gr;%*nvbRMsY`-nbB{sO0W1q^{ky3W=XPw#2=h>R-bZFnIseC;T2QhFR;c+Ez zeEw*EWTqI!l4vKGQURZ{W`rzxwKK z;CFW62g&`w2-I1()GhB;{qAnbua4l27&r8#Ik4ZBfiI3p+nAFv$-6NW?b%=moZB_* zTP%zXKUWO7khdzuV$`L1y@CWq&rQLGO zi=%vo+>KchevmKi9KJlt`0}K5R=WF6xpNFmjCJFulbnjsvCzz3%kT&uAv zPUo-(U2epiN8*JKgdGD1VC)#mYXa;Cm9MvFA#r00gNt@#Uge#AqTmAIzj)B-H_-c; zhwsMV@!b!zRu5Ox(DGI6HJ{2htWI<;jZI7kWIv1h88wY^=fOwRLY^i5Eutz@K~?o9 z_FwbJ^S-7=yaj4r*)P%!&-@6xqGsaG_*YpUaGpiiq#>{Dl=t9$*MvW!MBh9f>CSau zep^xU08@+~o8rre>#sHN8Sg=D7RP?a&C-DCRbJQzcdJI*(uT2A>!-nB_=f(?5~0N+ zeLOW<&qNVnwS*C279%bv5nwou1-8+Yy*VDkw%-*8xXY!|L_B)~^9N_fv*rEd0O;w7 z==L=+p3R}}aO{ZSGQID7JPO8cg4Xna_9t_tLK4{?^PyY&ugc`Ep-fr!h?T_vv+%X&yWaU#hH7^6QonJ=IDc%D@4KjW_a4yFf{q=d+r)`23)o zU^qzXBf^NJ4IjY3x5#B49`gSN+aN=CwU%0o53?)rv%Gm^UC>{p@s`ztV`8toH!u{F|eksPKW)l z-)qxh*dB($Ip!Z=tRgOCQj-s(sx++s!H$2<4JyTVvje!I0M5QtsooY5uMXy=ka6YoFqP&Sg zKM!MtwgH3oh72gc{6G}0ToIA@ySfL!`MP2f^Q=1o;G5qok49y?**rQL34R6caM%W) z{UPaT={>V3u0%zO+k?|`4_Sj*B`)cqNyTjvF!jRzkclJOhU>#VuQ7}hd$_~+3C*u@ z>c7@999=b3MOTSqwY-9+D^#^y6<$pH94T5Q0!A+hyeFD)r|uY@*OMuA995r0^IMwf z7#hJHI;LgoR8xp8>xOP`t*&m3HaF2wb8T8bqNqBZQ`mfncyC_1pY3g$H45E9AD3E@ z7T7IJj+$#Azrk&oLfe!he(Z@n>dILb4Fk@iNQ}`)B*%-gOH>(*7qDn--BhVlbSNVR zCAw-;Q!@&t?$Cj(8o+QKm;({lQcE?6r|PCLNfzu5AJ2_`oZs227=b)u@v* z5lIcz))`I91AiZuC@B$E4 zlR>=&)Y5?KWt%Fh$>^7bmIR~sa`A={r?oST^gM@k+_CBspmL2=M~@r z>!eQ{`@@9yw#Rr6zB}T*VV?r~f!-Mc5B4)<%GOw~ zBX;npSN4E}6_0*y-T`8Iwrp7%mP0o`p%^F=67DM%xCx-VvskMYed7CJSn|lXuU$*o z?=LJJr=rfu>07{AF&X{A$SBr|=9w+vPu;NfnOu0d)19C1cIKtYJrL*inZs!Z!~T%z z-H`T~trH6Uk0z(&=ayQnrDMnL@qOZz!Vq5kVr>ns!1c*__OB~;#Tkv}=R4iGxlY{~ zITd?M-duoje{43abbDQnhfijmTrj1zpYp&CjJ}LDOoCwoJA%HuD}w$p7079MR5cu5 zvsJn2tJE?T7%EMb$szBEcWkLSfx};b;8#uGv}nPE@wPPGvo%hA%d&~0$%E0T*&I26 zgX=XBUS*I57kH1JJbtEn80>F{_M(j)Xc~#562jFCtI7(QW{G~(Yk6Ml$nxgq^5WtN zS7gK4wx>T@S^~UI7e-FmUIODUS&!m#w#DksotlE52swAlf=M$kVEdK?Jbr`$yXOUa z6;d)|^X*3$H#`yU?~E1~N3B-j^yxz3bZnkE&M02@E;0DJ;2UG)wJ_MRF+v>X&6#R&3349nI437i{P=pmTguEIuY&%S`@%4cw+^MAx?a zg@UTvk$v3+g|Zu+N3<5^$dl5$r59(<5>N(hHc@mz%rW+om)GTpyFgUJ9O8eEVWJ-9 zLF0ZMu6Ho=nSFmXn4J2GOgu%^fYU%IQq@~fsqGaEU^I|p#&0U1K^@oAY(;*!>3PiL z1~m#sjzj6hwEA}{m?2~X$evAl>cCavus6U;gXQyU^{8=M0j6r`zvv;ZQV6uIQB zTGtxTT-J2G-**ZMV{vYGR2ZM1lP-b>_EG7j>0JKTzSX9@IbM&p9A1&!+(HMg+jI!l>3^i~MBoEk4$WV@K2#dNRN*cxrY|H!`120RImRXa>Al48dmYE7U9$bRlkqo|rgR=nroKM)$_EcDl~W~( zWd%nE#$-Yw-II&ncQT_>PK1%ESyU-Sh>hcQisb>n1-!y2n*lfL&rovv;C7L@Y>g(H zdwhjmFBFtXEtf@Z7aTZrC6%&r4^JiRIC!_-6)^xDDrWOK8gj^E69 zI$s^9L5D0kF8toPlVfrT6S*~e{XS08yfMC)^|!rq-krkH+#^50@D9c=Y=d*YFXLu} z47%w_PMROB9UKPh>>P0JlT+3Y^7(NJn!1O9UYt|bSjRFkNT6bF=*R-)$=WS7dyZjF~860dn41YMP?)D z`0+K&t+f8t6rP{L4&1|tA_|u-WrBuH#7i9YJ+F>F(bNviYFvmVKKP z3I$^O6}ONxF&m9?dGx@70?6nqH5lTc*)+CCL--kOOJjO+mGx(Mkgr-O%M^PL`ScISYQ_gVM*PU!AsQ z((5Zp`LtpW~6@+M_R%BgZ+m3k?BkS8?#4V$0`*t^zON6 z?5TodZ)iM34c8`O)OWrFH#;++dk~#*K$gg^2k#@nrmTwQPQjrN%a{~k|L8yy2Z;A6 zW+=baHQ>9@SZ09%7Tp7LVi*D=u8hZe|>UYo)k+x)>S=q;`&>|us2}N9qTLt z?9A4L!zgewmX2d6ELN{s8e=vMgUSW3kcriQ1jM<)VyPaCv$m`nwgG6Xt|^0Gq>fta z-dnUR8ZJx$WG>UUOv^W9;}9C%1RQ%y16FegsEWc!T;E0dJt+Oy4~cphFWLkWRfG1r zvY$)xmWX#B%VsFP1RN);x@?$=34WospcsIep;8Yfd(N`Qfyft(PMj$0=dB2~56?YA zuX^8ANJJm!P?)R%&vKr>1pY<2jb0don{f(Xb7@-iJMr#WgiIm(=)jTqGvh=36Sk_(G!vmPI|%dJfP4O zixUna-!r=&y(tZN+W77C_EX?)e01>rtia4QLNW!L>8PSAT9 zUt|+oK-q)Fj}u#1MoW^|vI9S(!5}+v)l44clh|EiKh0e^m_^mgrnRuOuE}Y;CwnS0 zv~+Ezp|zJ`zR{w){+4w)awp8&`sq<($MT#7jFUVny=%%y-@yt&W+8;>>l3nYX)`n8 ztweA|+9%gTxR?o|Y=fr$86If#xEK@J;9zS3k??945;3L<^EAmWneJI>S*ayZh@{ni!xRAljQeY;<$HMyJ z;zlD2T!F!MlpK{j;HVI0RZG}|Hw2A+Mv{uWZ+lSWo!bZHXd9any;9+IIQAZ2ZLn=I z2mj6Q8}{hNjT^6b;-A~eS%=i)Tk!TPS8iM(dZ)A7DdX<8GTsUYw%cv5Blb6SSe?`@ zNs5@Avv*vC9T`8&Y#s%9Hs!Ls<-&x$rwjRk=T2Y9C1z?o3JU_)V8>_#+zMJ9j;)0MF|A zy{>APqY}3#GY`&rUI*9X+<12g-+C17RuSJ2swWR*&x#MPM^Bydz?5J3-pHM3zfHO^ zs2vw=nq---hWVQ6(gxFrX>WryqFh zI1X(FsC@Q8TnLS~vfgIq+{kBmIo@E7Cuf{zvIwNq;K+2jWB( z$8_A-h&30Hez^4&S08m`XI5mRLa`kAU}q4*_4Hnt29)oK?BcGt9`2Bg{%oD-tcoN2 z0nPjYenTa>0MiBj3a+_WWQ+X;wpZa5*Vy28d);liRn_?)b=ltx*`J7jz{8n489#iP z0=x(ud}VYI`?iSCvTqP!Lty?kkkhKOeVTPkTdLxcCm3HgmYa~z;fFOs4TaQ90^V{?;MWuVOO5lpOEAFm$96*%ETe)QcSx*Rsqd}%z~w|usqgjT*pLX5t!&kYrAPVbpmFr zMvI5%RbpDzVr5~wRa;c4Lv#(OQE?Sn^$lyWzP>m&zdUDoh9ZYMhqTZI3!&()*B968 z<@s8{Efz3>?JR_H$?_c<7HZ7*B+1^u0lcD^qrH&o?PY*>6DC6&iy3j2F7k?nL#!}X z4L7S{wT~IynjsAl4jPH;v)~OFV-A-eTF}7tP{=Qy_9?aH;$sDexVniNwJ==|^T8~A%B^wn?hmy4rFM;?uO9h{IZV1)bs=kDFZB)P8pu)1|`y`SCHRn;#yt zu6Lbt?(3X;&-tAIbjwbGxCFh7lagpD2-buhewVbDa+ns-x8q8JQ`Vvx7oeAZ<4*<6 z*MJbJFsQabIx(3dPf|uWS9KtrGq4v3eu%cSo6yf6tY2fwIov;|us>yVQceyY6wJK( zy>omg(@9o1PqPBEI24Gr*+>tBw=|@=$Eg=V!DuRg>in(bgZS}($Z;fqB;C4dB1M7+ zoAYzg)Nvkq+tSbP7V&9UIEH*5^^M?W<){id_A!xZA!@mPLjwE;L#=`FEYM{6y23kc z`=n%_R?<8!+q|K=eEuHomSfUDdZ+XO=~L2k(l1EACjGATN7A23|GV_p1mqhautAK2 zHfFY0HNFsuS}k^r?G8d5bohvjV`(2Xzdi=2#n3B8aZ?RJBpBI$O5SLrf9Dp4^mjQL zX1vx#)NdGFWdvN=?1;;F%(Z)H?pxUzHG<)LmB5aNZxblHVqe~B$9zGQpTIt%1KqNW zzwo8D+F#=|;DIn4;w?Pi#arcQi>C%mk4YzmdiyX7qJSAu#Uxe$L%V6)rpkBCN@QH` z;*xHGwGE@H4kcrKOe;kprD0UkFx4pmdq272Tklt)m}Clyp$^4pm=l`EpbH~%$+sC} zzojzG)3SRS!&etjE7eP-2}&nQrT>{Jng%K+m7(BO&1*B;FUbVToKoF1l>e47O)p%( zi+K*bB)w@~pb?Yk#@QUXNG)AUiP1G{PcRC$1~PhH2mvmk5VVC6;yOTFHK%QFn6~?e zul@*XTB&@`flR293&kIi=r4_2Zw-s|tbl1w*5sEt-Z=W=-6OqSdNR=g5??f7bcVw4 z?4b%!0hOiQ)Y=^ZSi7}>V2#4h07fn?TJLl8LV;bVR$@M+38>E~7T8yyFH~BU^zTT% zd!GwExb3@*)rRMJn&KF7qY)d9dQW;9v=UEMv-4e$t8ZDO?-9FKWvaR={3&qv=lx|L zv^jW%u4w7WSW&+p&cpDD=h-QImv0G-Dd{z^N_MzRo|Zl;eO~&q^fitXiVYG5>Ma36 zTtUoB7sqFg^ob1^6(r~axgr(u4DP6@chpehIN1m_0fIY8cw=ofv3QcURR_1Ud%g*PZfpM|I(h zWtJ-j=;7fk`YITevI&~)F{o3h0gIOT6!UN~7W7QVF+owEQazn%j^ij)(`0rxuY*hj z{gJU#xMNzLxI|Si1RWd~l0D1Bx@VZjMd9p$u01`e>lCyRv<5*(p}Iaf4a%QP6;MM> zMO-2wzowXQPNDaMiUE2zvup#E@Hq{&Zo@%DP3G+~=6axnKn-EE%F{#|CbS;MG@gOF zPl&ie8T$Z{p~rxhK&Wo%%6wA9**G>K&4KQMcs4Ol<8q9rDDNiF5~0@XZ=vGChc6hk zc!{N%odk#oiXQv=b%W@#jXuI31~tpJ^namSN?DO(f8fC~C+sHcAuazw4vKN$1?Q^-|l?W_cEvIf?^)h4u4Phx_4nOi{8yMfh;=;Dd2J}C-OS}I^*bKV z3EE#|JV|9SSL7i)d@j8ipAv~BQ-0F2#@XstN_3cV#`6xf1^vfh;FmR_XYu}oqwMw) zI5$EwLK99zeTct{B)@8 zGpzDLTv90*07yW$zt8eKHS+muq`M}qOJ{gy`vb}940Do~OPm&$sNJ1HIsGr=2>tdj zS9!5GysT_uX@3YM_efeuUl`B8y9=x$>swe{pVLfJ`@N*B3gv?JYyjM4%?>H{NUOh* zloB!)wnW?Ht#JxF`xteu1Ckt>Y4h~3*+LD=sQ>VXIcJ~dO%~ejLp)niNL5`P%3}1d zL>sR8oBf3LGB)i6Y|*m(clM=668q9{eLKQ2yGQuS`0Ydzk*bKstF5 zK;!wWq6;Q6Vv`QYNQ4coWL8CbGrGW*k)~3d+pV~_#gU`2#fllMgfz@iBaBW#RH%*6 z8u<2x9T~0zR)cN;Ws{|ElqP{v-3YF#>|7MM-Uj*yDz@yK-!OgIR+R68O+p;g^KF~? z#uMc@EU*7wR zuM$HxgFuHN{XQ7L^&l{1+-ViCFpQzZt0N zK(#;pY5Sf&b8(o{f_nlUODo2#vh;0`#~R1#6EX+|U{#XFc;h76EogAz_=-!+SxTgD z5U>oNd4?&J+(*chpqVQ?QQklS4gDG1d*)k22IFu`WdRKNeL~45y64b7@MX%|l>6zh zdzhM!p(_c_keItjdj8y=h!Yk8|@JEOJA)1_D|3yUFsC zs($Lc6;6d#wx+Sd*EA3}_lKm9k6CdUhr`h+Kwb+(;>}!&ViKYw&|%;f-U{=aR$(@y z&ha>tbd&4RnS@#3C}Ed6j%I+CYaR2Vf?#wDL}lXS1Y@C(rz}fmd>A)z?%R*NV9(Sq z!H}t`>9U)8Rj~cQDW=)F1Kiy&Ew`O%C%f%!*fs`@cEwoIoIC6W|U4__O|n? zKY!EgU$LO*&AnGL;P9sp69QHD2?6_;Yq?&9c6&uykWON3V32dqdEXLnB~emrQ9e7D zrEQ9mDxa-XZi&0pbbSeikdmG1-pZ3;C?=Y??JIx4e{kuCpL~H7?u3fEEbh{kTzSWZ z7`*3OLvQs8FM%^f-hzy`oTMz7YN5or6B6g5qfL|j3^#JooJ^-1x1eRhXMLLwACD%~ zsz{SUzQNQa0V|#*(@fk)_*IqElw1tF0u-;ZZzMa}%kwv@`5J}~x>a1n1okk2u*c^{ zJMGQ7%C1tCK1{$&RJ2DZ;XO*5(s#atDkLC^^1*jfnzVQEuGYbC>xWp&`OzV_;CuL9|-(q-w#r7uW7EB%7>OMIS~`+}j( zB6ydRJ#jByC%WQBL-F(wVr$ zCvp4mycT!VR>*OUX_Jt*(l)UwCwsWO0PUmT1@x=`85CmS?Z$F}sb?VGpez0zc< zG}*+>v0AeRfA=Xv&pffR!!<$xKH!yW5}dXsv#0M(%gPXpTE^zjYf`zOK-1S^f!X%FjXlbemo! z_~}6Hc0cAdpIA8mM4!wsHjp*?O~zi3RmxUYwzq?y`I%s4CHM^dmyF%GhP#OvH$j>x zKGk%zNZ9COCm~m5TxRTRtGvdYB;V$W26u0|T`x@sBN>Ehb9%h8RyujsS#6sW@Q>8E zGZxoRHctEVvmwPS3{$8D;A3stT3ZRt^2vt-xW8jetO$Cge-HH9JahPPyE-XP%hw}! zFJG4VP<3&AX_AIVY9fI=eva={I}xc>nhSW-LbEccE!E_BVQqOzZYP=KSr^D|%M*(Q ze~Sre2D9hwmmkJefShEM6A&u`EmuLgOL7M4>ixd%&39K@j@ei}8r=W+uo)8gelrZ4 zMB|QQTvb1Ne{giQVLGkV?!2e_4-7)Mr^0Vc=}6?#I8ZKvrUT>vpE{WLr@6IIPBL6nI`ZsKh9+tv)8Q7e0He*|c$*(e|vV*(vMf z#`SAlFkRA1HqIy74Jfk%HionFei?V5bpBml~M3tTCJ`sV#Le-we+f$djlgBeZt?4`=z*{@kesQ4~}ipATNU z`w8;Ha25RGZy`5>Io@S|jVFbJVF^!#==g;QVjbc2wG|D5#*t=3{h11u&wQ7$ip40dwwcv4 zRTJ0dD6=Xm)0NmQo4PZ3_oSnnWjAK()k?D>muEY3aZ;!0(%)v7*-*w8K&P!km(TMc zs+1t6J}BQ73=amF$hrkeI!pbH6TWn*&MlENam~Kg_PSWy6Ec7D7C0rfBun2L!Erht zw!-~1~RY>QLkq+)R9ew(FhA$xfZL zbLaUssr3D-PtNxV{9N?ybI;oT#aAkmlNJ1@FiQ_~ix6y=D!*6>{nyy&b+Hq3x7QQ8i$bSZE8a~oQC+|ljQqZ*}K@jSl&Iy z)X$w)*bqPSy7e3q{~X`l&r}@)47T?aX6!vD{QO8Z_jFW}<~z7j6NARD!3GB$((i<5 z6*SQ;XcG@LT;ajxovjVhzO4A_WK*+EN}HNz$X3Zw=!~W@$9H5+2j#cq*RUO|ZhOf;$%sk()e3!nJmW}2+R9}JHKCAk}wB090BJ|meqpcG}#VSvE zm5(Eya1-l0X6xi`8C&Zy)cs=wy?#ZTh(fIr^~J<020Ki2rxm5<>P&{(>FbOcu4&5p zj30W?6flU%a>|{uV?zB^i0noFvpKXP~m_YANoNU1|gij1hBbXBKFX$ZLNM{H;N~ngH2jjw;Mv)k=Qz z6eOgxfS3$q^5P^>HAP-9+{#6!vx^n?cgYVR;?B8qj8XRf>Y8_s(sSNgaqiT{sP5r$ zJmOxO@Ci)lDjYUrJPa$nlN37->}1pyLR+Hc5J4{^h64U0G?7Bc$j`HyJLwTcgXXU> z%VIjgd1Kve)>!P$s0xrMQzcZCvM&7OnPRJ+qZky1;jIS-U5YYIV>2H11Ji@XQpnm&9#d&v&BXn#@pTf1B zlV~AvqX-vVBkpS^rYbb3Sjj4_ii2EHUVUyhVV!StIe=Jr!Qg(ov$je$p~ZCC@Tz2u zSG+fwyF+hRG=9HT1!djREtwHx&D7vWrc{T2a>r0KT$!T^)d;;Um+UXQN?8pRPa&#o z>QhuUWM;^^Qqe#Pz_e0pTB@#_xF|&tCIUNO52M3X#g%Dwv)B2Dwrptd2pA3WCQ+bD z>eyGy=&rJ=$eIDqF^&9rF8_a8)u|dN@J-Jq%rzZmQA3p(6oZBk&hF}VT|pOHSp~h) zRH><&x(@fq#HQu>;(RvdsC;;|_EjPwA4EE7x3*Ba&`*k7JHq)S!ko&L8DYXEE9mgI zE|TiHaxq@%JqkfUI)j<8!^%^>rh}a&s{t5Xw4#_gg=Xo342WvLXi7Y4P>jna?uq;F zC|0{!hQ7c=Hoy)i)vq(zRPmiq0D-J3#HWg?7>q?ST~IVlS)g*nm~VS?E9(4kdwb6a z$GpCAdmEPo(a8x|7cSJ;rzK4gy0(h8rowNcbcyCB26rJ8o=BIQ0i+;-XQ6B?n{uxs zpe$e}LdC)u9@>$k>k6W~n9!?%7-l?6$0${q0eeslm>dFIL^CG3$8KAlM1SvGAYEIv zR0=hdsti4%2+?h5$3%7_yHr*%*)T{_a~##QND0&KP}Cm`8}wS0fy|-K1sa{+ns?p# z{_#z)Ow+k=TPjO6uyp32Wv=o_z}uy}I4a=VrFTi+FMU9gHnV9WjxYj!c(1j^(^^B{ z-cq%`D#p)^j#i2J9*m(Vp-ryCwxT|6W(dDo?S$OdtcOSZLfnbsUb_?Vo5P&x=PJI! zR&EDA)VZiilm%11Tiq^it3Rx+m)F&gGR3bfsL-poB4|@x*}O6rwcze9K39diyX2^B zE+{0{lvXr{&Bm`33hUR@DX4v}p}VtZYCQRPwcD-6r>k+d8`aKO#+2G$)eYC1?Zwqv zblRPTo7;VL%CLf{R$atr-sSkSuHH6HxEDoQlxqNENki&LD~VLkN)JH)|2Wi1%un(0 zadM3i!UFapjc2YFl5KL)@?_U2TpUn^bX5&=t!NRKal94dGfHvsL-!UO+2L={@wurkoL45N-(})$rry+bd@NbV zdhJy*NmfB)ba@^}X`auqX|dMPrsaNT6Q^6yzmixuQ`kFxytMNP*$woi4}S0yJ3poe z?hmV#iaNdBH#aVsj;yTw(R)92Y2#r6RaIg%&{P1sjUUR2X60wn$V9Byu+f$P*PmkT( zq!fP+eb02@Xa&a6QzG*~Kbw4nFLHw=S*47_%-OjPQ=3e=5Y$mYUY+br64<$PMrEr^9Spcn{GM=sJ|f=2 zCp)@4K!H!T{H1cX-mb%6H^6QE0(ZI(a9fy*SO(2u0h&~=)Ce2>e2o~_?6`K^!AUBi z4aAtrD-7bzZlw@a@QEI66DKGSJdJDaD3c;qfe5lDqvF#{<%1(wFGTd+`f3D~yWzy-;khac{9q+8z{dy84P<7#qw{ATC6 zSCMTy&;l z+i$e22lLzG=-w4lDoRZ32kpIE1I@4tT7J0Z8iSVT{Cgm+*PnRSgj z0%9M2CKwFPpGo$)D`3gqvq~lFt13G^*yUFSnCye!dm23ujBMV#SciXzM?a6|D88AR z+-VKp-)X5M_p5({HUB0Xhlq7=XEk7CZ##XdIa-zYi%4?Eb=yxllY8EN-U?dg1?l}D z{l5k6=Mzu{m!&UBUz2_dO5)JA6kVrnjk^A+QNLHbztGm;U)I)!+uaE=>UB3#nm5=E z_qE6arI@tMJ>E2v7MhjB&bX#Zw08Sy_Ko-E@B03%^nPpKW&CV@eHBw?@8YJtEn4!6 zc?Gzb6E|OM)oBiLfxQs%jNkJ~Ci)clWSoyLwC-av!m^}|9PO~Ag(F-N77$KsjT^KMk9`!**Xuev6yk zG3P|=)!6=NKfR*<#XUYB(r(53uZsxNbaRG9lFQ}{k5WxuVh*29ZvSe2HU&=^zPE5Tucs5zOWYorfSzZWuQ;O@ z*V{S51?sUITiH&0<7dENN_S$OZMAq0HZTv`i}<-+H%%Xo#Lw*_GE5gg;)s}f@_Tyd z$vuwmWo_fW2R}T1>&A{uk{@QWkX}e^vwgA%1mR$jr8^wjBRL~>v~l+wdgijAVMh?S z^E!_RMv;0L{+fssWF@3X4iKs-WNMnX4?S75Emk-Vk~A;oH^f{=Cr9k>6(_iMYbR^) zSC}bio;Uoy%>DI~i%Jh5!)R;?W5bbH}8OF4=++$>4YX@_?yKH&!yCLop1NtAaI{zv}E088%I=4 zS66Mf=hqZdCAv;Y#&h!RAna{n6bde$@IXd23*?d8+{cOs8$VAR$Ad3;2D30GO4cT* zt39K;H0~i5J=WPhC@^D9*DMD4H#xcHZ zy=NM$Oj&)9YK*QhMg4-RpXR0W?35JF_PepZ|irnUH=oL~T9h|Y~ z3$IVUk6Tc$w_)pTsnGov!xtWG*U++k>bd7?(BCOf5)MwwOy;TSdt)h$^Jv5WA% zzBRCYs#f%pT1xuP3iQ`IILqBvg;xaMoJe@!$WO<39={4sX5&A;I1Hp~YM1cepp`L{ z=wpJRn8$PRwZFKBtIqh&E>2Y;peFC-`s*N?f8az!1_rfqWctLj9aA+x-M0KQc3`6C z9Og@+gqSL|waTPnT5#{m8QZ|yG}~8HO__{zo8qFK!iep`uWXoAV3jaKRdK;kg({?K z8o?dkodE&pp#r5ku)tv{vlX()XSIZdEd~kT8V?;nlVUZ`59-Ulqm3Ip(R?r&HQ=fRe%`NP&Hmt;K#?BLMi3fKK;>QA_N2z!Nvpwe&ZAsMFJ0 zzlh|Rv7%amS+%T+fssIqP@r(OVykM&j4f3OOn%#9ebHPz1;Y-I(^C|)TfuBEj2&H~ zaE2W=2}tgj=E!zP{Dz ziLlF6grZM%@YMOSm+o*){At@4E^)qHwo8QXUm(8C!{YuYL2*OCHF79rFWN5I7#xQo zar}3O6TTxtHam(I?oUYDKJ8XMB&L$KEpw^;0V)%IrM7Q3<4+vIbaVG8&) zes(QEMy(1Iw(Ugl7m8e!b8atiaNVnk_J1)4V|`KZV2ZaXSSAN>o%!HdKbt%?sB#V+ub%Q zpnAqnYO9~+>kRK7SE9M;on5*CzJ)_%>NGhFn~D&mXr~UBZd(wUG%01QJc0x?HM8(= zZ+maJd_OPb;|PvlI6y}2yr};!pY!C$cX0XS=r zzq7w=*AF;e;~_scxH(;<)grX+L?Ekh97~!M-NuF_QTh=_L`5nv_BU8-hVq zMZ9DYstnKTV5ceiALFNBU;l0fj{KsfpHM-6h9Q#?T|KE;^LhPA=4#+u7JRGAzm`V+ zw~{*E@5SQF$>K*#X@oeb!eL6f8QS!Bkq5<9^napbi{$ITJpYyRPaOE*74gw|zRE*f zMR7sx+|jJ^j^a24pI{B@@}h`18-b8O$8<8>yKukS+Hx(aKISy~{#!|Hsx4o`OZY+4 z)OTksj_0wBUULD4XM?ZgluqKUW7ng z3hJ0f#!{GX^D6<|1Eh%(NeoqhL+_0KCQv-Rq2K<$B|#>g_DMO~^NuVwD}=cIY-?kqHS4>CRGN!NNZ?yqty7(tnwgzz zHs@w%rY5SLn!xOoUwakay9)1h_)K4z#Hn<67-ar(?nsh;bZ>QL(zOZE&4p#(*=WM2 zWUwoa9Pugjj~r)n{i~f{yPY zJ~_17GDpMV&Tqn#rO6>Np%nUjVhzKYz$8pvyF2I;TAzRP(fO`QC#Q*`Dr9DoDz|~v z*t@+-Y4!FV=)4;(er2jITeNj~8~#)8d>Y}7?_XrW;#{K>G8T3kbBm8rIQzakp>O|y4AqBJ_*GflT*Xei%jYqJ|0v$f7$cYV0P0s@w^GYXxY;U}jjsd@%a z9sdumuT&~tsS>qkry6pFv5MT7nr%mwl843cvvYHEt?ugTujhPX>afN8@%ZUGaXc8V z7d3(M#JLth0`U#i5zZ7?w6;4rvwDLShSTl`akXBboxS18BWMNF67+>>XdPOtr6lsG zS~wI_3qa$q&eiAZYt88reA%tfcUD{Vdb2w-2BVdy}qp;KC`L3bNe*G%Y^ zOTqNo`ckJ=jV%uepFX~(8>gFwQaw_ene806%$1eS+-w|rFjfO6^-$B-?tn2fR-;v9ZG%?kH|E4CQDNag)!@DX~ zkQP269Az`dI1}_m#x5~ZC-eczKE+@Q`;08f^0v%AsnDkwdx|QbWHQ!`{9UyJ-WK=z zT{8BSAGz(GiT90p@BeoGBfa5wPagDc?clfD6Zd?0{QKRHoabLC;+kW>kN%5dYB-H& z;lM=CGZS79t^ZQGLl!8#LpGGpD29ATzFWj1r%3aBsFnH$yp?E|jD0Wu=byQQsQ&nu z=kHdeDgN%x<|%UU+b>=m`~EvVbH@Q6Kwkyk)|bceNyS&l$2Vd!Yg&^g z=v`MR(Pc}Skm)v~KUewjvtMxu+%u`b-QU@migSAfea1^t1ah5~<^^r@S!R}XXgnb_ zn|`a^=|QK^3p*Qq*lgvSURYdF-MhoJ9{+%A*Xmp&+cQhHAM#l-ecX6J-Cl+7abQu_em zt~U8vDb`{QOi5POeI{=FfjGWN)P0P2!5H_$I z4){9=fAc&>4^h5Z%)a>c!VQbbRVr6=dayY1+(;#EnWJU3K(~omMK-kw|J&{o~^#ODLnH++{cVk=#=#Q zP`SK66S!Lte0K8NV@l1<54O1ra8dz;+bueewc9)8i-B+j8w}>RU)+9iY!S(Xjwykp zTn71P#+Ko~TIyiTN2!L=66mCW0&-QQ?%b8kTfRraF}^y%ch!CS5Jp7I4kO z#YLZmT3J}A!zTkp34&Rjd4|hFnGBEVv$*=5$FfgIeb8<0m)?n1>jAW1pXXKwbmSgX zH;rEmg+g{J3AmmS@9B=RG?wuz+B4b!S!7JnP1`NIwy7(iumk(S81BZfjB>aZc#h)* z9~0~{g{f2_$Bq#NbA2-|kkNAO7Z3wCvehXRLo%T)wEDCV6ER>4gH&9+T+{2Xt6b}2 ziuC{<)$;ygEf4YZ*c(w-lc#zkBDopvkg?CDJFlzeCft>W4hwa7nM5!iACd0BtR6#o z-1-NAUGN2fHutP4VD4s~ww;)Rx%0`1@0O>_<>}T;sWdYgAihNa)QTV&p!s3Y4?c;I z6rcPg0%I)mL2Uc6>Oxg^p0rEJgRSZEF0Z|OrapQ8zf=_d%qRKt%O~+#)p(4=i`|NE zKbWn#M4(^vrE`f+CJbK}Kh?O;Vi?3tS=n1NVh7%C6+Z@lAxERRT1=f(@_yW_|^eMtH2qwZVR zFO(ui6G)dCtqCcv z%km}4GcRWI_xRm;?t3uwZk|YJ389IDtyv#6=P=3*jz#^Zk3ZPF0QCPzpBA z=GJ9>aQ%vUnHMO3`Uj_YH@Lw)v^RJWPRXwv(#4PT7Z2WKe{lmsxQT9KKlg`q9R4Bf z=ea4pKGJ=U&QXb&I4TGIYoyv*hgDXk2&XM9Oq;;GvX5cb6fF;d~d zB>sDqe{WrSR=RwUEJdwv^R=v)gPf|Orr^oA^Twb#YHG6nJz4^sgMVz4p^YepWf_Y6 zUb}SZ?N(`y$fikPqfo_UlpulzSS)C2-~m4^6Jp}V68C_KtRi$JZe&^9W4Trd!?*X9 z9~W9lp_*DYWG`^3X@b};K1Qs{>-rAaNAG<+Zansdzpp5ZMd?G*58qsWlpyw}7`Rc2 zfk{%>TQvp1Bq@AMJ4L@FDY)%cKNc-ueXDa=Blwfo!|a&CS>WuK$YD*V`o@S`-4Z2j zr~Q8`=^r<)U-LWZqJC$yGc;{KwyOU1rHdkY-bG`gBHQlFjBCr4iSgAdyqL5`uP}8l z73p)NHJ)o@=)?Ve7D;DwpDB{{5&gX(N}_`0fpj`~#~~6??_Mbovs*AU((*`plG~rb zO7YBY)-SJcc^&~>;qF8FFW!+%30U}kI#F5(_Ci-nG=tI0aeNo|_Ue>um>2BQOMb-t zI|gXzMjj?vKWLPZ=VGO7&V#s>$P4m_!oZ8l=php5X71a-+u~{I-kWQS8$6><27b>k zc0?>2+VY3Btlu#8XeQzz`npMWQf98#INr(WFYvP?SmA5W3ipriCiQ$7`uUr%BHFGT z_qFJxjOmkQ1oAn|fcTegqe_hjZg-k7dzam6)(o@OY)t6-VdH*i&}zf&-EOkD*>nt} z)`Vwa+Yogt;X#osVNJ}BA?+p%3BnGdvwcYUyzd}7fBi74Vyr$rJZF;79A?lK2no9N zH=$4GI?WIAEN7rkDyUAPEnAnrdYCqStNQc}2;oiDr@wT4{>Rwj55CU%k_;)fFu>qq zHFOy_ZksE%z;+cFt^ybq_iw^df2S?*T=N&n4!&rAS-$mF%JN`tZ=yV}$LVfR$ zI(Lh&bKcyz`n5wx(xG{}gNILC=jLP14D@fu_tU}Ai_xKFTuFq(Mew6Q)DNHo6!mSB zXa;4n*;jm zq_oz-t{kMR!>DO;FMXbiwAgkJBl#4`y(T{hl-i7%%s$64pn*(m#J_SN10Ox7usuY5 zRaKjr6rOtqvz=fqpeXFe4rb-?bD{*KqMv;L`pX99>f)2P8R1+b$){j?83!Gnv2 zAFuA|Ryp+d(98V4D_i;=cR7Va9>^h5dtbBkZWp~dyItLS7Bi^gaTxmDdEp|OVe{eq z6H>A@E%Vvq4A*#C?yIYE0?|4x0)JNJJlwguwK@Uqps{^syHRc|gd@ju(JbN{|FtdG zyOT&#W4i%=VSCb49DWX@m7MELm``|!Y#ilSD$5dq{!o`p9&3C7C|v9BkZ?0x3)fn` z%^~o_Es>xeMrzVQSV;|`1Q9Y2Y+fGlwgx6*tim1#5JcZV3|vBAo;7rb+Ukc}JfLk2 z%*3B1gyhTePqyYQJM_z~kj!{2bSulgy0}xLvD@$}5wW$oiDuifD&h`bsd$y8(#Rcq zxQIi3u7IjoQmpAx+%{=_b2@6d6S_@|Qpxbz(+sT7`M_OXb?}~Y+%{N!YbtDcHN%q4 zvakE?8Is(zvLY2R7ImKeEpwOW5LsxHg`(!1AeSc*MtAZ-S(Wcvrz*Wuz#zRM;KQCE z^sx<@$d7RS?p)qSuW+1(CiYyT5h{5CGX5plX#KSQKwT1X65iD`9^!2J`g&##D7dQun+G&U*BuSoQIQUe*+#EIF~uSldPY{nL!>Vy$Ky-hm(tG- zl4$VAD-g40>ED7c!S~=}cPHe)2AbBh89B>WK-Fa#9lA6Pbet}DZ|6?iTfHH~992NS zB{M)sY(JUypW&Vv=WK2+{$AvN6J5|FUwmJ;uK1B=S^q}2)_}HfZ^cQB{f$s^&pA5LoS^4amHq`)|NHCHwTu1UQK~3(Z-hdc z<%vhR;Of*3N+uMJ6WML+#jA&ljk2ec>rXQ!J56fz?v(1gDS}Z^b_^3u9%FpA9WkGn zs-^U!-BqB!#a9uZ8qdRx$oRTE&7=qjeetH7Es*gXSH$hAczBrq^QAB>ttF*)eM#6y zaY_0pw(WFIdV<7K1ZBD@y&JPH23nYn7YXu06FVzttI;|~Gr<#Zx+hk}Q}3rd$wIsp zi%<+~<{2;`2EK}93jLuc-(ITKIjBXwR+1gPIu+}VOy!B&>Ie`!d3;iq<9Vh+TUM)t z;7EAd@<|X7-{K26vJ5>k^E?LK_4E8jUm@BF!femhb=a_zx-KhkC3Z%Y@!X zKzTvofCghK3`S!Y11ntg3s!<)ax$PqK>%9Vn=0I!%?m?I{f-o4hLpajIegNNXGuW? z3Z&7`Q4u$`wpI4&BdA7gW2$RVppJZ+soxM2)q6}?pcZ=PVOncYkrtE(IqoFiVB32I zeSM`rhrYDIV=7`z3|%pTN4ql5xC4XoNtyfp_64$L=lwG?{^IoX;<0IGes0n*CgB4?lT=su|Zr+<-nx1dD{5)KBTYR72>8{P;RWH}c(C2RoF+_*0Wldej#oAU=OlO`V zS%!&RN4TvldkSH`UQt|v*bX%T&yo-LzwwxfdGczfv7oex6s?98zFh+upnrBT7nC+c z3XhkDqUfR1xe5fOL;ZLNmD?6E_L;a!MfVv|Jh>teW(sI5L4iVOm4vd>HPmX&&x~Nm zNWTL*Ynkg8DHSp1wGx6!>G-dAWD9itK$|o}Rb~b=vN!Qby{h78s9ZL@^vDpU&h z>(FvT&y$ApJkD|i&QTp>AK&RJN*@3EtE0RUQ34_lB?n{qyF(0qFar$A%K&54j!HWi zy)fj&xG&PolMg6}u>oiAI-nei&@n*{RP)0J6oe>;E7D&|KKef&TpRYuBKh6{C7jCN zm(ECU;}{^AQxc;yg!30h7iDfXQ5+>_c_fF(u-V`0r}4C#9KXAryMcz86RNhEd#EO1 zLA_mtRRUcvhuAB4uEKaWP1v{|?u6xW*BqZIy9h0+4NwX4?;W64=iN8pV%Ml@DT;+z zqGa|EaQYBfc5pOul7UgTY3cWJ(+OS^z|Xy0O@%iX^i9+YHhA{l8)9gvcYNU>A}@)^ z$`=p%{s8PZZp2|fndb(nNyk7(d00BnSB@YEiO#Qwk+H6^uoD(chPYc13&aIX93Z@(62mFDI7MZ&m(S^X+9Rt zh2h*H#*&3j)q%foYKkn6zE12;idO~ahTr^Fekj*WY>{SInOmHzgssI^IO$X;s?OBn zRH2WkaS!O5%HrG~LRds|;5vDop#XlCPj4TR;(3ol3xc-2>qQx6Y=TjBN_s2UtDh*u z>E^z>dGz8C<-H-Q(>Vbxnd47dAA*zh;^A|=1>(68ufN`fGzFHxSLPUW&!(15VCpX* zFE8k35MhQ}gD23Hbmz^YnjIh-bi`JElTZ0 zg`MT0f^AuD^Ps}B(1G2u;0}=6)`@hUcxZC(|ATVd9VfS2uW-5COt9e7F%M_ja7b(S z-)u=;x@fY+Ma3jLwx2ck9itAeRzYP4~bka|!*@dSQPHT3#lfH(fmC zhN8>{LPp!SD5AZ~9||Z9K9maTD{q>dhC3?gx!!C!{Zm=qk#))!p`taaf8iEI^^drj zM)|r_v`#PHvZU04oDkRJonVJw<{kz`ixL!-WZ`j!h;9o}rQT%O{R-8gM}dAtS23nL z96o&X7A5(IH17rBbs8Nx{@|@wLM@XmYNw~A_evj^o|Aq#8#mL{u)+c-7xpRL&QZ^EmWoXmBb*%+)_ACmWfQ7(ecv75E z6z$LHMnANEfuDV`9Df5r-LPg9s=Jdyre3+sWouoA_U-x^C-wtJIQ-vB*Ve+Yi0b zExIUwd!PIToK!MrRh06<2XD6gcXJ7k>sa5oF7^Twz;cT$!3X0KPmUgYBW=W@buBb4 zoCMqF`SE5;_HV&}9)`@KEaG4=VaQ=(B6_PD>p!CK7Dg?Wy)k+FGq);5mdOxTiUx?9 z7re<*x>aGM_}#bEW^=x`q2dd?I;AG!$lSrM5%p}}ox>I=T( z_|a_WIiAO=QvrEFWuMT?`X`u5Kl-FB|B&bXkSss>QA#u?r0*g+jtn|^7u;KxBk!kX zRYN|>*h$$?XDR6gM+hZdP3ywXk)TJia@3@2S>HRXP2FIh+s05Ns4qM;DMKL}vzLTj z98Z6EmzMlUL-aV(L^4aojWzXh?|Q7I1Jax#Sd<-WG9Q@|MLlw*mjauh9d&(@&1VSOu1fKr1ilR z4?SNA+B^h(VKjfhXf~5qIP^f;SUDS)bK(d2?q0roz&cUNP_nt4Z8%ft^MUKDE$Pps z0Q1V>x+20`^)Txq{@-#*CtXN8Q=8W&y35v&*XuzLl!KtA&$h)1+PT@Ii*6<27vR5A z*cGcunQzBmz<9zVq%emjynib-@4HFbJhADt5TOon^QHyhcrtuvn@)=_z^7{L%v#s^ z1kOkBOa|yui5tGhOsBgxGYDtZ_(&>Ua(URXLJ8t=ts;t$0kyB)^w%`OYCPcv5 z61*k-N8-R)czAMQ&MpOtU%2E2idWhe{HJ+DrK@9dX+1CfSJLlGFG>GW`nS?+#Jiq< zlo&=v(K|+QX0vQI2VcJ~8puAhki(uIxqjI5H}QU4cIo6RwAXU{kUz>mI^rSZ4np>y zezJ)8lI)$qO`U_1`2EK?tKAU5RaFCG;9C8Ge7XLi9vbSg7Y!yC~ z?ofKj$@!ed=?l^?OTQ`of%MPd z+W$=mDUpUG%^$MHtqFT(7|`;@d%6=O9)7`QXE+U9XR~#aedp-)8#pcw9{aA3=D18O zxYY4_bL?V%d0%aWz1_TY+ey`eO^}~GPYPvKs0;IX1$;4oU3=t)>z&=szE=R@nNO?o z1)08>C$|ieYQ5`4A4y?!WVtIBs_g#F{Egn(-6xiV_GGf}GzT`S^5r{;22?Z z(h+Gn8Iwi$6J`qKb49`jtAqenJjGh}?;KMv3Kf|DxEGWENDXvjt|7nrSGjskG^V^f zAIt~say#*TdF?f#^R; !AecqWWwnu>dq_2UYMO7s#;oOKS7v(^z{gR}Q$;jJQk z8MzVsi(=&`K;??#vx(HW7g5^^DE&k34bH9VbK+;WcyJCcQ||sJ!`=25^LWQEf-V(+ zR(3bfvWV!)!t6v~ZINOz&r6)}7qkoMuu@ca;k?dGX^z3Pwb3c)J(vpt(cV{)KNWSS zu;mtmJl_ER5QOpi48l>);5^AV%T-4&rUhtFZYx3!tww!)Bn@of6@kH3#3nD#g9)j`G)qI|ANY?xt z`)!-l6;94D4KsCr_X@uI1tHl3z98M=H=chQzwzt^eBXrwzoBLRofh|OJ}TWV-HUiz z{o*uUaX&?aLj-fJaG^gc`#IeM?{<86qiXR{)J zhN@cHHK^VJ6kX!2SMyR1aOzsKw!f)cFG6GgW}#m0H8{Q} zH()TOC9=AGeSSWk^+3?=fW(0ztsOu)6&X@T_`zb`$4}9Zx+YCwoYC0)$VhW3D78xY zyunZ+WQCpC<@wHGXE^ooHOz5`SsPycUg8^@b*4gT7tEAJ9;ywZrbLb9? zYmCPPDg25#7l#wp$KpA2)0+5u@Gp$#esaRvg!3D5qp{j(<4U$G$4ljFdlkKD=#b$#Z{cKS}Et0DKj_9bfRgugVEk4?G{b-qOy_ zg(7wT4+h6vMbDpPtV22xD;N<;)etl5!Pk2{xR-C@G+!of3kLJJgx|2rwJkQMXuw_A`}~-T+-dqQCC!=5|Fl5SYKR zy*VpMBA=rK))&+&DZo``p7_+|25<|3$xo6$p)zTnQWdsGRW;uwOJHsOprt%7gCUyi zh`EI1ea!>ksPR*MessXwKf9@@a_#+mJMK%*>&ja{1phJ~{yls%&d_2?uq6I+Yo`TT_zxkmP-H2fp#t5Elo${?y_rgb94?w4#v4 z{%?KhCv@fROK>j3m|KQ^uqz!0tp+nxigcwSO(iB`*n+Af;|heoVKH4t3U>h^kS*Cm5*R+JS!4t5XY(2w9}E zOJr)v@(Ds_z&C z`)DS|eGd5`T!Zt(3d9z@r@xdGi(FPWWe z^T4UK%~qs^jzJ{Dag5hsdwwOdUE;*9YdtQ@wqaWIxKPtUHeW>Z`b||LBi? z*{Qg0#rg7m8fa|3clQI+GrD31`t7HXwA8;=OV)Z3kM^)ZL?wSn zhZYEw_k$EJNFSDdMEXhTE7I4c-@axS4C*(d-5u#H#WC zulgZ+!yB$2Y4Kmn3*=f}q{C;^A{{=P25aBQ+3{c7O(s+i|J;9)3X@m&IO^w;6UdHmEM>@KgPaPe{?vXwq{nU+*V_Qk) zNley+i&ZdQAQ_&5Yjp!CLRaL zPjVSHLAQ8!UN?b%Q8&B5|LGfVuc>=gyl>}_+O)0l;Cy}PXKcy40>@x5^dtH;p!zSz z_G<@I+|4_)ahn03-GomUf3kTX=^D=+KRqUM{BYrBS>d@CA8at^JBG<$9H4SONZb@) zldZR8?_NFh?V}Eb`@Z&>Y?ki8?*@s}1Z*TNS?`*F+J96!Aq}LrLGAy6%=%4Y&|5=M z=3y&YFi#Rs)6JGvga$y;HG%yW_BK1cY`K^Z=phee-%P!fq3&-p)v)~_nTzVybz3(~ z-!{wbwjqk)_j!_aV|SaQ0@CxoZNL*(44gaVSy|W_Je9b<28yb~fJi;#vhDBe<}<^A zfq>q&v9}k9Me?rg@A-Be{_WaaozjQoaa{U7>D|y{UzDCrR^yUI+c-@{lIMU;EhCYT z3=DPPww=PGZ}zA6WtQFI;XiRt3ww!lwNQ=t0=62)n6)a4^Y1dnw0+Y6!PI#wA`nyn zd;k;ec9O|?&-U9Wjy>GWm+W%A&HIVdM6mj~-DkPWH2Q{sur3=ORZ&bJE#aYy5u#t#J}P|jN+sB>m8;aav)qN<`0;s%X|4K_HHy9zOt1=nsg z0+$d)QE3TGPIn?OmD?4QC|#K%yH9E>PGA|XJz+Stsc6RW{gN8Fea8vq1_S$Ty6;A6 z$@iU^XsYHI6SiwufwQ7L$&_EEa6>~5r8K7n@`!UZqHr~ArF@=7OY&r>>h$B>%5Wjah%a)yn zh#<0NeBg%=#AyJ-)Sz|zUHd*sYOUjQ+uMAiYa4ESaX$&^_c8bD6i14Y`k?>k(L9|> zv$NL5`OT)lO$4=TIspuCZ6-OqlT?A2TwE2GzU5PqLV_{S>Onp9tzb~Ioy(25(yEBO zey|faE;gQfyHAsN(K`3X#XReG1lE*)=~CPX;I2!!#B~XFf<}zzq%4OB*kC$HZBAMT z8(rv@JS$mmA7L5IID%y3MVA13*wF~)21rl5SD^4NPBPor<*BV0{i&RvtAdze0u!pw zmAN`dmotV6ehVn;C61dvEa~e@_UKx)p1`WE_t&=8Qwi_x7wZhC4=F9k_QF_+KER1X z?AdJYlEa?|Z6NipaBg-0l{Bc=64`NAoUNlTymcLJvW$3V5(18X) zKot7wUuC=c%d-43A;iZGd0EE%&xvncHSsQ$2%p;ZNVC<^RPIiCimdnI{+8AW<6eK$ zBb!=C7N8qCFUyZV4xdkU-ZvPO2ZM_PvPjvhe?=AkO_dQX*`4=Z_TcZ&U-n)u_zHT! zb$^V{i%9t-)+N!MDoOmK^?-&Rs6s7m4ZD!syW-nS4Y6l!b07l@7*u|qOuCb#63@=Y zm8-miKoHE!2&sboWD!zj{=|vF#e43#DCJmF8ux8llTP9~<$<2!NrqA_nI6vPi-%CK zw9R3<$GShg6FTOZX^ePm%Lw?=6%#gJ$ho*?rBQPU*fHS<$RDPNsgQxhoJin~z*4z5 z$ob0KE9MF70#C&hJz58S2r<7qjA*z{!WSU>h;NtVJc*0xe9u*(I-P-%tUb<`TPK!JD!vCSruS8d^%c>PE-8r)~ zyEIb^s|aOT4QprFlpoHP?0V#zs_YQrpl_~Mjy7(aS+q=t1i$82efSHu2bEJt_Yj%PyIt26s34|l$hB9{x_A*ce=wnbSXSfN z50S{j+sLc|V(&`%ILh<7twWE07tf@YQ*eT`J8}BK)N?q^N)XjR_h_TXE^PcGsh|y;t6Xd z!=MkTvz-SpH83dRJAGuy%EmIxXul)fBi%1OEIlf{T{;hz=X;CuP{J*`;M=p$oGiwl zfB`kq^J*bz6bJm{af5Hu6%G0)P0>Grhp%u{HH^l5GTkHUW8w^&>|YPIgPmXyY?rs; zpXk9vnp0Ur*YF}ha8l^>34dq}TGv96_C@dJt z`S=p#j(9+6tQq;3WSrBNPVlG6+g&^HpEMpTQLtIw&8(Z zV+UoteqG$vSsG4#=5;aJ&6h4N-!#uF94Byz`~2MpHF*C&X1F>`F(v^A4aywjVZ~gNZI>c?tw3fs}O^ou~M@uQ24Nj{-XR|RSbILIngpkF2BLlZD&VX$mcreVf zclS7+weK9tGc=)An6tdIQ*Ng$x6kvil<_PlI{XT^lh;I)eTv`P;fs_|c;=xxI&a~TS-g>6364{}e zHleUe|M*=Lx`8=ao=}-y*e~RFnC4!s5~`CpV}l6MtC*?Bl@Z5_yG4Qa3pNMW!#OT5 zI^T9VxCp|>r+cQWtE=bN0}Q@I10+CVAOaAYBuMS>&l!mn$>9f- zh7v`IkVH^y?j9Wz)XI`ES}yIwvs`^JG$mOOy;=*{Bd?Z_kL;t7btEsi(y>f8#AGtjHHHB3`_B@!oy9_a3Y2PFH+1t$KC$kE)h4fAW@&GdZ!) zoow3en@_h@)w;>HqOf_i8H9#o*6)>rXeF*1VNgHPEcUH1Zen9ZUuS0wG8qRDyK+g6 zge}0ymSy~Mn|nmV2(7jbwW`o=Nw;=fxJjtW@me?0UPRm7HXa(Pf`%KkF|obI+QNj~ z;WJ7{o>-`{%;}jv?~)auZ5cF$Q_L<_)w}DQo>*TUq}q6b1nq+uJ)dEH%kuYh(?Rz| z)g$np?KE`b`Ur&vP=EJ(wE07mjr+Zcsh_@9xwhlGo^CKQw=1qUN+z$!l^=d@l;|_R zdVkBC@V*AW8m0Y|bQkk?zERrIUaDnP(D2(Es7RPhr9P{SYlglV-dK&I*T4cL_Iy?` zm&z7&zo@8Ru_uXh_-!KI^MJhtmYvJusdy+m@Y((P&&PQ>r4IMh|LXPoP=lFB*hI1+ zdfqk~Ts5JS9bvh2P$#EPZyt``OIg&l>H-1pZe6Nq9>ksg6ZZW-x%&Q2hxPpg4tyQbPQNuieL({ zpAUU=nPinso@2l!|q?@tPF*U=3zlNb%x}(Unp~LdDYDe4= zAi|Vd)5-AF|EcIONx^?RigWq$hG|)*WfDi%9aLI$RiV13SQcAv=JLJFlb6qtmr>h; z*Cdmf(sMv@v+&jsD~+C}i?HBLg4VAbK_#O+JIT#L`JKyl;Mq=y=4-mmkVZns_Aqmb z%6-k)hst-E#eO`l7oK%|+mtnyx?47Fc4I@tK=Z*Wl)9dPE7MB!ACcBshTHo}o(3@9 z&>F{hx{NS7gK-*fMt{8b$$41EjIC6$EVg)ccK_q*>#n+etI&Ext%hL$#Z@Vv!4X*T z-v(>`hglnOw}~u*d;B$MssYxJCnna5ls?d&py{W_dZ=Zz))Dk_&_n<6W%>J9nTCLc zYwWsUb^VeKN}lXE&FT7LZ?QhpbSgyGbz+!_`z|*&&pID>Ks3+AWC^N*t+l4IKi+aI z=UziYKpMAmw!b_vvD`n~@jOkd+IFK}Z`eN(O->wcLziz$gzY;_ur@|(uMQnZq^lUp^j!N)n-Z#9v@vz~j>AV^ z8$v5eLwhSt=`^!1?Dw8&rZrB9Oh2wr98rD4FoDfXs}ynTLah`q1cSY41VtHSysamc zCb|tP8@QCSOZjF(iArr(mR*~w<%@mlw$6WR5S183QQ76|c9$hC*xXR!$uj68@4O!O zdG~^;aG>$K>8rw~c(w~wZS*43TDU0^B0ZHjkPAYgflCfS9g6;fd&RWyJ6Zw8trZuVHVnt&2ZXbYc=p z&#`}Ssw;N_^T}E2Ajr<*du_eb(d{2sWryBO6gq=3O^7h1DKju}O=ADb>1o1h==i=g zbqDDfy5s?Fai;oi@;>{44}9S3V@Q0Ba+cDw%4_x_b+9rR93Mlj;noSMyHjP`3T6IW zcS`q5Zrq@2$u3vt^D&V$GHh!%foPs4uN9)!E@Z*X5p_Sgh97&z7*!!zc##oo{-wo~lKUUj9hcM>>mA_F6(Vag8XzgT>N!ae!Kxr|lTJjamR62&YI^PFY@nJ{jplt{ zPUfeQ&@t$H^R+V4gzLH`ko%~G>*%qGmWwHwQPl6EZ)HdCGxvZd>Be0i<){PIVjY70 z0lhV0Wx^irUj||=$973ZDj`7NjN;p&WuLnlvr>9%*zO%@aZ`txUL&>vwIO6FaMMLg zEh_L%q}cn>hpA?IetqUW54oMlvfey9;JiI%R1^}-M=CYdVAgXBtnfNpv&I}(CP&9F zVDkIDxQjRsNc%d}OuvXpkh_hic#`BWd@3@H9m9EggJ-5reD>j8xw3Qhs;pa}Mc76V z<@S^m-seb|;T^rii#PVmFY(C19PzIKAwW)KYR3(C`&m`tco=wieAht`_~oltL1U6_ zVw*_h5~-GfT~3TFkpe#3OP$CY37AIwEi}xYCv$HER#onsU_J|Pi7RMPw0vW}T#BrUQ zDT@A((>^*ejjpe^1jGj%q6-2g_9kut-r$yuH;cN!p_8LFy;$J&ZfsoPm5ORJSb@{r zobg<~$?%t90r`v7a&w>i2GnX*T9-~po6=e7c4k?9z4UKVq(%(S*>3e*#MZe-I2%*5X46ni1726!oJpJ_3TkO9_I-TR~_VHau<_GeO4NDEN zC5G3gLG@?2)j)f$6CMwvDEcHv8b%mm_McSFb6l0?q4uwn-omZ*%yYhpt1XwI|Mv&W zED5=WK1=JUY2$qaD4dqLZ&#OPhi?+@bYIdcB2agj6FJJa0fw3Xw`5(b&8dVCS#Krk zs{BS+m^m?~+l?JhBfn1#*&?!Hs!##TR;ocVi!zL;(>1j-qr=Her&mu@>ct2a5L7g$ zTHEHn6dq($c8CPQsnr9p?L-QK1=CF^AmaI#c8 zw7S@kJH8WPlfa=PHx^e9)!JH?AVS-zAFk7+TgL}N79mpaCKPTKF+jrh3h#HM!_YtP zKs#YM>m~sqBuilhA$n&C(rmR^_o`tDTP8W_XHHSGnad?(56>tH< z3{VJ#RXe=8I7#C}b)bs`Kps3^>n4w5qKl0G1PT>6ysi_$-l{;BlO zq<`UHS_~?E)U0mNd z>dU%D6dlxQg{p`!A5pbV^l9iKc?CN;SA`g5qk~@SLF#>UvaBp$JMV zj*KZfpc@+sCUc*heny0)^O|YtezhL`l5Z}IWpqUL;q+x*dEs>9@=`tV5)W+8*}A)*g*1z4vm zz*0o!MW!kk2Sru1Xi){<1ANrv@I)?y4}-pwGK5j|%|=6729AYMNXw)JGd_-Ov_EPO zsHS`~0!f?dCyLX#%G9LiSE@%+2gBShDprP5!A}0A?oCWh7`Aihh>)xJPE~433oI8( zs<*m>{$6kAqm5}5Iwn`(ZW(i(e|OVOpSbC!vGhD(J5Ex!11svRnk1ZVO$Whr3*^nk z3l}biy9xYZEt!Zby4jhv-r%>UL-@s1806SAIbj=R&7{-R31qK1c`9+P zlCP^lPyua7)pU5ut>Dfi47mx-Fe~n_Q_B6zJvv#bn6~9%Xq@cR$gSG?lB-Ts91Y!c zJz^-TVd>VVJH*r-(>5*Ja$()(!^|@&>n03SyVALKM+gJe)D0a03N%9=$eQBOSl1Oj zk4^eZwx2u@v#r=k7S=H_X>x5vTouzO6WV+DtrpjqnXP{@g5|`<(_9x(A`Ca;XPWYT zK6njgyDY=2WM0EpI-Sn8s<3&J!XQ&_Rv1#+io!6?;8R`U9?Hc5jgW;;G1PH|)$d`L zRo^$XYGO&m3%ZMVUhW~4ndsnKp;|CSv(JWRf49$FZ&%InUSp`1-`~ZBj;5HF>sn?+ zwHH_xm4Xpb)Gk;NZ9G3xbL0!~LslpTercFqK5{|#Xi_iqXtR;?WCf$CbKb0QpKFra zRMGZ?J3K&l4sZx{2Z7N0Hwt|{g@4NXvlFs3bjeO~ENCpNSs<*B6ga?Gqi*Zm=+Eir z*6+Dz9i8V!O8$d;-hIzd+0%QLeTL{Pl&QPB^hfT2V(uAJ{8_vYZ{T}C-y;iTL9)43 z1)&JnI$b@9bskpHTTNjJ=7I{kKIm$#7rnOYdv4czq`o*Yu~=^=?WsF&Uk$?5+wYue z*CwBssI{XbM~_rH^~pyjaPQUcq*iTk#~p*3opwCFZzp6O>VO!NBn`6sR4LbhRzZ1X zvG&;E5VRw!I*X-=6RkC*8trhy!eO4s=8~cYaU2lZk(Ey>a)-X#a0xfnr>k=dLT#4#x;3XghV{fI^CwAiOG7?qU}hXv z5m;no!h>iG~OhbSZAZWV@TmEw^K?hwa_uL;500bcK&*+t(uILp6 zbE_1mvx;n^NU~++r;F3KQx=~5I{ra7I>68uP1BE>r<#$Uoq%TK`V(stK5n=26H3|| zZL;kKmX=hU-H&*?Wejp2&z2zK#!x(47pUdXcsdu+aXEbLnc8$RQBRbL>sA`2K()D@ z{^a81-R`72D8&*x%znCvV?7%_FqG7x*JUfp)2YMr|CREr%*z4Yddq&|^M*Vg!} z=fxwfQ}ZP%fQJ5EjEGV_mtgiyS?>{V*p-JUr{R}b;Sc7Kg-?o?ejdyGLSaPQ!WR{G z3tVHGAYW#g9dlQWMj>lP@z&1|Rqe6D7rdOj>sns7A1y3>Sumtg(4vzz^If_Rb2JVx z3{Q)(yE60y4i#~RfW&1sRy+MjT3wldHB=n&~t{Zmn z!S{o@6nIo~H$iLHtV5Bd+uA$Oie-5=A(5xpha%IkwZl%uwN#l}zDJ>VyIxg+r}c+H zm-pMILf!|OzZQg!X<4v>_)igNVWwj^)%s}-w7uw%trAUTpxl6A|{Y1Foi=#Zts z?TTHkR0Gid@2OW5YST(R*5NDVVWOCAA65;Is4AgmSaAr|^r(ahicx+?rQ-}~mc=jj zbAV*@K3MA>>-1rSW8@w4Lq`9u%=p~R*4_D?f1g;sX^F155O_qELF=s;(Hk5Lee>_M zgCGrpe+&l#0?y=j-=|?H+ho>>JZ zY55`k@m@}##VcrEwM^eiBBP=j$OA9PDz~Gnn4hO&dS*qdL>T-ai&6Y6ua&4O+KAx# zqk;k3lNiXUX}}ZHH{+_|dD-GyCMwJ{=A@5Ff6!4LR)%gS9GDLxv;8iC#xyG(mX@Kt zS4(jpc|!SeuBS7Ib($#$X}_h@_&Cq(aSt`KEx_^HYDNX%n-gWn* z42Dj5>pc`6GUR)hC2=-U;Gy^M3QcTn5&zqnUMM|JT1;Y;<1EE_9#WZ~XMVxB$9O+X zrobi+LJS4N9F5itoUvbo89QR;@xn*o3Py`u!7undHZg~}ek#2P>((jenc3~Pa@!v3 z4B5;Icb@^p7L7B)clbQpbjF?KZ-1LvPnqHZWW1oLr9I1-p^RW=P?)J(#nuieCxzr) z7DmR*-T5kdc&;!r-&5SExsw40mcky%5{9K0K}g%eVZDjd z7QpygWpXsvM7dC0CPO^tnXn z=(nFO?Vmw4Px5u(@5;XQ$3S=DKWzo7SqbD-k?Qtop0hJs^BiI5w^FpsqWD{L=pmqU zZ8@&uPIfxQEH}N?P5Cr#?%;$8qEKGUqGZ-`5QDE9)daX3*j3+fbko!w!>_{S_}dz$ z1!|(5D_*6#MjD2JsmS;FMfvuRY#=7Cp~}fB)eNb$h6|)0!x?Q9f_DJ3ImWR!u|^10 z5m#NP1hZ1Fut@jQq`S;Ea{FtWP;ri^q@%wq8v-mz59?QH9x}y1esERs`#j50UL84f z56TCA+qI^wu;#^~WreX<3x_U$o9AK5>U%TH<_F~yyImPqXntAJi3dC%>C5R2I=Za$ z_@B;tnk_SLtV^si-ylQNp^x*`*bVlI72CKOWzEfoeSuiG5G&`(!M%_~`VgCQIDx`_ zC1!gB{a3e(T;>ZySurd_!CLlT(LS<`m@)8%52>aK{}>xCyuux2L~h*jGJ8sCuDh}R z@k3j3Pp2K&WDZqS#?a>9|`JA&@`>bC!Rn70M_551x-FZ{*c^@=xkxvk&uGTVBe zecl^u`vtzD7uzzRdl~8tc7pqdevHKp^@oP^ap9@A7s;<~|A1y3t>Vfn+E1PtVIRD0 z;}!2S<+hqUr8^H`Ifsxd5JmbyT$$ zxv@fts_InrOj{3OF=5_dfBGt$qKGx6Tbf%7(~7M*x)s2ej%UfBloa#MwDc3w&tmV| zw?eOO|I)Kb?+Yf`g9Wc_e|v!Q`$Nti{Q0R@w(~tHCO~NjC#)eYNYW^R&7d4R+ACia z=BE!>6-*+rVPPVP%GOSX1opX#br!xFJ{0kj9E%&#cBH-Eay^^a@VkF+yiM%cafC!U zU|GIEFotZN4AXen=D8=CW!vX(4v|zcetP@!qwuE(eq^u20N-*#u5KxMyc|hB-q7js zb7dtVdS&eC8{tMz$q*?A}bc)@or;39SCkn2LyGpxLc{mScI z95!gbPzF564q49R!@#pPt|r^-9R|I?VqH$c;7<4^I_o@q%evd?>f-8{fWhTI5FLvc zFw&#m!>Ud?M5SvAlyX!viKWPTw`Lm^YJ{5k^OQ~=o@kny;%Ry*sj$l}NiC@-osw>sUXQle9J6Lj zX4>9fuC9C$&GtC>NxxfC9fuM)Fua;`+eMDrNA72Kh0L6w{wp<4po>iLjv1!!o4`r6rrBC)Jqc=Y;e?9)pSiiF_Y7 zGg9Q%if-8|Q?^`m%WPx07K;dvosu&xr=wj&#&V;<`NFdCIAajACp4J(<~*t6uMsTM zHq4=V{bymO5m18l0J(sLZ!u0pY=4f|Rk|wby39QOhTFEK^JZhCfm@7+vuBoCGb);H zr5yZ9)c;&mLdlv+zFKM|UTc1|_-|`6w1*-~MIQ7cWjdiZB2H!=6-!qW?yT0!2ri+z zER!;w+j*YC^TIJn1nDjoWSV*JB1;*Ev1%`Uw@m5_qJFj9U{~PKRbU3W1y_u=%&pC*9x;sGFO3bt9NMBQgbH>i)xoeb^tsUxH}V)Db2%- zaE2i`{Ub>_0~OmdqE;FeO_#R~!s<%>vK@HZESkEik>u0t9 zdBdR8b?HxvAZ<-lTKOiGJx{Gr+oqL@tn1WODID9j5?8S@)mX7tfC(#9Gq+d;e?_0y z_E1y((NN2vufTUPA2W*;vLzoqHrmYTJ5IYXjN86Gg}NuG zuQAaZ?(FT04?R?0dFY{V<+V+`>dl;c-70+bQpA1r2hQm2cz-PL&LvBw^2+;!XH z|9jNX8RzA$RUhaiUylJm0P0mSYz~hI73)O=`zDDP1jeyPZh^8 zP^ufm_&r(P(sU9L@-?c_(~3=%O(QXlm^4xB8;%2yrN-|OctqE>Wch0{kv9=5b`yTB zXYs%M{YMW-0V?$}OW1xeS`@0&Z+IuZLFvJ$ie>p5C%kXS2E~~7mjq6dDa{~O4$CE< z@@QK=EBEpg1MHx$iKxT!p~W&)VjAg;MSDG##P2!jHsHI`T}Jvi*)C0pANcdSC30v?t0J@ zFhDHh@L$Qy2K;o+gWp)JEozIGIB(U{a`R3ZbJAeM8uAm((N}X0{{lRG@8Ts@aJDYr z*^~)JegRi=Kdr++qoA&YJ~H@4=xINv%4_iaSD@@QStVUrzNl!whWNa{#$4fYJIY~( zMJ`3DC}OZKQ13G*(810}RCx)?dd)A%>dy@qO{#BGFn0T&Xv)Rn4Ov_PqpvlNLUq?m zkme8Y_dEdwF9FTo?$>#;{3iB7N*_l!j-j`f*K}2>$@~gH!)akmKFcM66H<(Rc->W$ zVd$Wap=bl1zYw>e(!!hlvP@M&x1#h`Sg>MdjIG)XnO&KkJ*PxL7|w~iH&-!&Zn7gA zM#ZZ-p667(iebnXW>?tb7YwV~uBiEK?ph=jxkZrHIfjpk_=peVo_Kq;w@G+BWQnl3 zV{0sH1gk}N*t32UeIz>FxvU~5`DQqrwpi7B-CQ-#cDz6o!;;>BmH4e`Wa$XwLa1U? z@2lzx-Qod&ch0hqvrpQNuCWS7uT!deGuWVtUhUq*zMT~zbGtYYYPxNvq-NT>c9BPY zwbNO~mfF1vVULA|HB~pXiD?WDPS1(0H2$zu?Aal{QB~mFh@GNkhC!igxLt%fcXKy_ zIh^y#=se$pF{oA)^=ZZWHQe&|N#O8C`+~#v>jOK&Hkte$492HbrJ_DfZ(;XSKjO`G zQS9u8JYF)NAJKMz(SRqUbE6rn_c5b(vnI(Xn~1=?%ciO6mI)n# zSh}3Gr6jQVr2oYHH`Ypi8ydYQsA><%F2o*aF}oZqK5lS4Hbqn$lcpmuEfK z3l}H8G`PZ>WzECbbx&b7oq{f#MfR=bNI;B?JmzMXyH`fMAn#H^3xCU{Xp&Ldh`toq zpR@zrn0j=|&~aZ5X}QQLer&S(Ev(JAs*@`?_x+Koc%Gt`ah4wm2P zldfv5vY&KEgc5dmuBXB+oc&<7;5MJR8T7(fQJf8ihKRLfRl5XLWOF&whM!TiY>@&t z$&`{k25T1WZ%|GfcG7qNI=gAAsu&X(1Cjp**O}!X{T~0w-&cCs#;6>7N(_+PR*pWd z0mvfI4BNYQt<~}KP3FmzP4o@Q_nnQG{sR-kPSQBnNF1C|9>Mp`&ZhrUv4;##%1`Yz z!<6)Olt)}j-Zd(ZST-R+C87+zTp@I<4g%7{U2`jeg_pc}qY~);1x;36+!(jpR95sK zKcM_6?+M2&&s!cZHtbuB@mpe^#93arTa*KPIycRlDRBJt!12_az3FO=ar|^CO6t(9 zTT_wk63>pNwr)Knm2K3HG|Rk1hw|U;-|Wv8$mdV*)!t8XOUMTf*v>WPA$HqHJD2Tk zgO}OF_HmqN7$)P5Htv=P$2wq}mg_UmP~h&vnI&sWOdvDJbAq5VPM7C(N>*QP_pLRk zrc;cXad2EUWMk%Fb-c{#$4Yr`6C>uFHHPZ3=1>jYNS;1mm2-K^ef%+7#qBI||3)e_ z*mFA|pUs{wHD>y3 z&VvK#L{DMdqw2Y$t_M+pz5-RMc;T$WDmX$v%GHg7OV#~|-b04&N%3AHb6ulnK>w`R6sXM-szfCMlCd5{$3hKTrE1Hb8go7-@8USwFm^8)01AhhEc3WQHj@V>8Yu0x?PhQr0*SV{>Bjx>gg7LF1Yz)Kv?00f@rfch2O1yGhph%V1 zDe-2TcwW{=Z6lsZFj!*Cus005W0z}}ROc%~0NW8lW<|EaQ1iD5tj{CE;(hf8-$zJt zII}ZJ(C)Z$I?$6%8DXYbvZeim08!l88Z}>gQ)Mny-sH6A>ZVnno1HL>>9H;P4wKeq z-QG=>lFrRlOtU@*zkuWHyT%WxG4fzowx(#WSjnaaL_ERp!&g`y6hrO3%vlq}fr`=q zg>!>GvWGNKMr6S)`;Mt}xLP88n5dqpR~ILd@k8Ygidw0TgL%Uo6jpGQv-9!2|F)uX z53|SQT|dw5fV!}m?PV_$itNVdVr!ePF84Hl@xGYJAJli=&%Cy7NZWa}WYYDNqyOer z5>or>ROem=nN_S?4XFXEhLPSX4_O-rXi$R_xQ4mw3ODjyfrZM`YH8u}eIxN@%bBP< zwj3no4p{CAKWBJ#H-P`#x|h$P%Vd(-Kn{Vvk9!yE#q0C~)5U-g7!<+tYG9~Z6zQrF zEF6g1mSSs0#W8?yv8H%d#c?W@r`&UZN-Qd}<(Z~ujp*_wLn0cm?6k}_#@BsgmxV*< zXS))|r@dXV9v8(5@sZJ`W3j5VvM7^0P`rHD$&AsX!}Jft&V2zPLU4;*0C(s3a(wJA zN;jijVa(W#anqewv$vXRdUuZFC&ax2&41ZA^tV+mT^2pp)ZAv`+aS9y?l~Qbada`v zs)bN>1{+e^o|9v-j;}(SoxGmJ>+S1c8tt{1e_Y{S9Stq_-`rD1ZVWxf+(Cx)O;ZYC z?Xk|{d`ls5S(F@*yC@IUK<7}3ovao1twPqhI-HqXqeCa6ieU%w$vChLg}$)6URmc7 z`vAW_GI}aP#))>>8CO~1=S7Y%#3N~t<>*^yK$R%5`7!J9)^$rtH}W4k#Uaa!#6+Uba&CYBV`Uk%Q6#Y*h*+0*IPS0 zeEkA<@Zp#aPvNJgDkk3i<%(w9d#|e+zf7oAaaB7^&!(ZRx)qC(pX5M>UqHlGo0L)P zE#sP&`>=!(p$w7<4^fLZ&x`s4Lx-|H%r`rMae=L49N@Ssr6eP!O3y1HzaWU04qvEaI&ro)61`A>jK!j}r-WL*_3i z{XN@5IaQ8*?Q?|TZok)s)kC(Cf?Zs=6XshiO``K>#a;>xv7bjFO!*YFAInzdsyYQK z3WmVYStr zjb&o%KS{*&QRH8~q;OqA?eS=rUIuj54yFU#0yNdf_>58bpmOYxIgqP2p&w=e`<7`; zI!x6=S=xr+6Z`qd&eAoP8I#3>>)ZUb4_~KtpU=nqcUaOhTYnSb72e@>W!{!p$wgkn zMXpRKUn=En&M;9`mDhS$7q8(S(&+qAP~Tzjo_Ya7#O0KjCLYP@ON^*~cRex^6i19w zF&F$)iIV41w@M;6Epkg|{(VQ7e_vgik&a0lBKKBCQ*SIw<5nut(Ibs5BoYBunY&`Y z*N4BW5!+#phM3sd*t(+Inigx>&wA!cxbskI%6KF?3}xv~b9)us#@KWs-9FPjntcd=WH+4=EVw=SAz0XJ{9Y z__r$By9HliEGGUX?iz7P*D$#{3{%Iq9LMsVzhlg{Ou^tMbeO*3hOim^;3erLHWw|x zTy&F&FlQ96i8hqTrm>SWX-G^*XG4?onu<(tC9%;j1n`tRNHJH<`rsO;LsP94J=7Of*{G=PpcBr!)o^7__NoDgC;TCZjRaZbRy38T)C{va+0tJ>I7|3@Tg|USj33EobPj;yFt6pjoQtw zHwAz7;D)q)=i$zQ>}r|62d_W#L&;ZfIST3l7H#ABZ!bQBQC-`Fd z#uj6eRL%>D{`RB3GCZdOss$T~kMa-?7kQjm$?pY&0eqfEO%;A^OVT9hCvTQMB7F)o z(~Y{56iy^*?l#gHR?O#ELd0dlI|RqD(vcPpOW8sDUyCDMLC0|!%r(QmV#&{VzISA1 z$&&IctgSHRAl3rrYMX}!lh^b7a$CG;BPZF}-Nb;>5dN_O4Pvu# z)TRb)qvLOEsp!uiBkm+oRCp^j6`~o6YQhpd(zUl0*dfB7Q+kQF<6uN-=w^O@9kEDB z{E$cNpG`cZ5)T)6%DGJ5u(GD5L%VV1TO&zI)U208LIJ_`kC^x|3Qp%e=6U?;B62~z zF!2y)&chf$Eys`Z7{>mFbUV`l_v(*b^e{tgGY0wFS!?4Ongth3VYaw6eZ3>TUPmaj zk#DyWe+!Ab%TKmBZJ&~{t%HD};d;d2pB}&aw=!mq!n9Gc{!NTGAi7SduFFQD@J0s0 z+}j^hbcNE{yJistRB4=Ti_eC*4^xG#Ru5NI*;M`clv1iG{=Bbfa8^BB*5J*uLrIo`r2Iv&sWGf z)#knB0xh@#y!s9;cm{X>L_y97X6aw2I{Ostda+PFqmp8JmFEZeyjXVlFN}$|xHPjq_p>Z2W2F>nk-g6c9q2ac ze(4eP`$J3AoN&xWAT|-in5+&s63z8e_1y}u5s6NA+T3PB5jc`fO}{Q=8Z z;NnJp4(R>)$zv^;d2FJ}o~@V_7i4D#B&Zp7LtEB5u;%vwaX^m0{7?stP*r4j2oaTa zRc-a&0jf47RK9|6)Y0KcQJ~GkRtMBl_(!~GKB<_Kmg_ppib3gws!o8ETyfh~G-*(V zwnZ77m*T3l-c9a=JD?j|m{dm9P^8L;vW?}HbQhnk(H@X~Li%($uL@4oo7^9hp^E=Q zSf+2vB1yCk1+?%BbeToi1{N*a;V$zmy&PxmHm`IX%m<2wLtufiqw{ik`$?s_RBs-g z^gUH};8C4c7pjU*tk5By{_1uKqhOg**V}CBK%`!3PH~@IYHGG3Yym8!!I5_ zjL7pVD%}7!z4X_hGQB36Jv5h4f4YjO8SRG@mi7!3C1p#sEcH*Sb5%K<>CUI}+ffI5 zJ6&WkRXIH!X6@XMqCr$3husiqzr@w~NB5_YSYk;tj?!|zvIS`ovyU9S?XW|pF?@@9 za<9Ws72zwGs#;TIzlNPbOBe30DNiVtZfb;Bs{C$QJ5YnysP>3PRn3I|G?i-G8i+2L zoBe+9|Nh`VlVebqTiNWxGCANd>htJc78th5Avj!&GsQq9jV;#^f|*T(&^leHPO=G0 zsh#=F#Y(g?OO-&DeH)fJDs}DZWUEn~_B9ow*c3NNk4#S-u2<(1y9#=?d-&YRO8YLd zG`(^At!tHrw*?~3kDV}y?4Ua}ITua^W&{)m3eo4n+Cn`!w7OWgjCrqCsh$0y`;O+h zR6uX@*}Ofho$0M~Bv`)TaM2dH%g!C>=ay3=4uRtjLdH zKEbn!QXq0X0X<m!|&J|Nn@}sLJM&ej)%`MF&i5ELx|e3*cpFJ*=tuA z2~sZC|5Ex};HfmwHP+$qJ%9E=!}E*}8lS#RHO-$jP4zY<%xwVI;CWec;TPSQ2U&4c zhkyN^j~K=Wb>G)_&V2lCSm0(q#@x&BvK3~R!dz8STl3^TEGU>GC$7JzT35K zEQ7nvh78N4u!(B`)p8eJqg${T`TE(6|ksMbn+fV&{;Ok+Tn zRAq%lZm(#{28a*O2&{@jDwb25~ zc|+80tspe(is0!Fz6UbtDD!~BiIBQ7VlRX4E0Tu{*3l`eD?YGapx&!tUjS(hkF%}B zsJ?vS#7cwIjvPN(165@%Iu=e)T4|ycq&eACWLs&vptDYd)SEMj)i`^0ZBm|IKYO;{ zgjsWEs^4)d^Zk?SUC#=MPUk!&n1tsmQ`Dx)6qI07wOIkZG&okBHETxI370l+J-y)i zi>K!>sJ||9X7jaI2(n-b`t)JxDD>-7&?SNw2jm$6W`_3=>`TmTbZx)nMg4FTz&b1NJn4Us%yLTg#WP80`QMvK~Kji={Dkd5( zUE+zB*LQ+UzDXk?GLwJ#JvhUEGomP=HTSf0uCmA5qIeE0E^pQ zY1^Jv@;rdELMKC+VZqE9N{KW9ce~ONX-zsQodLOchqMKf;|(m^%$uaQO7D~|N*|Oy zCVdiQ$1g~qlfEGRvh<|%G|CVioyU73<<7|8Niyi9Oi;AB&{*s0Q0+EmoIZ`HjeWJ> ziq-OGuisL4-LIyD(*#bNBwa5_8IU9J?nRQqvJ{g6z;9Fd>%s3*alT)NUQrdQ8Lc3g z3xZY{&asmT!_cTQry7=`{6I2PPfs(KWXm;Rjn zn($x$jiN%4|CYV$%j^|%VZc6n`4vTE`an=qJxSW36XNr^&7{Y#V+`%9_auNo_P3ORxG{)F_4Ilfhq zi5=mEu;&gRW0uHp=*YH^#CePDMU6T3*{0H-#~$~TD({rspX0*s0F!Lr4l(tN?b!_k zLo~)68u0DNlg#mK=&xbRg?0VKV)@n{ek>}L6(aZ|yD?f=`KhRQsC^Z~*{>S5ElEWj z4Dz}uJudxMySXh~wNvi6&0MZP2C-1`p(8E}vhyBx{&B}XgZs*lu=XE1ws`5KBOTcR zD_DPa+I8gWglSGxWygKX-aH*;JXD|k?cG3)A_sEO2s_nk&f6i)b}qy-~V}>d;bgf^>nED&%S#7eS4@qK@7bbeg2E3MjY+`5zOYlG^YOpTmFkn z9OgoK2@mRp3!ixvg^rVVOe^TdsBZH1PGdUZ$?-wRb1Rv+}tT#2zNT|-0JjrE`Ba% zo{=+r_g=s!-jShGaD2DIClYOKn4|L+>E2y-#a3o^W}yJ+aK!^;WMTb7$few6lH)H8 zT@-4@1s?Np)<}F}IrRz0B0=&S9F0!RQ?FSM79$`a|aZY8ykne@tI^V}U}s(Ghxc1=f2M z?aUF({yL($gNT%I<5lMY36F>8CsJ#6Dm;Dn>3C|^jB1)cb9iaKO6r#{KT%(*_~9LQ zt&rur?udN5y>xim(I>l-RNzV-ft4C&0=KEE__p zpS9vlw}uu;b1BjVsdS#zPi^O}acbr=SGQdP3Ih+P*%C83L+~-IHe=S6t5>fI|Kvt{ z#KR7XsmVd&5yU>Y%p8jh`x!LeKLe7KEk>SUzOv<RAvYc-*OffK-;QVx;T3qh5 z+wkv^y{PQ8JDv94RAhbz+|L+MhIzln7_e46f`B?Se*2lhpE(z2-Wo8Fu7bqMd^Y}F z=Fr4EH$q={X2XIc@uJ8}b`W+J=8)sM-9ewD4d|Kp*-8Aih;+;Gaaml?5=h&7rMHwl z(1)N}bKVT$o#sQcC4gN!!y6_;fbgK z5*EVjGFArb#e?1wf5XEnve38A1`C7B(RbnYalsAT0TDR?rE4q`bdPy|3shh(BT%Ve zpCkDPSyIw0i@Qh45{5|=jJPxG3pO6HKHn0K_Nw~lA|CcH)Xe!_y~aq+G=aoB4peg4 z*<^97#CO7M*2w)cfM%0r>^g%{m+d^Eec9u0D4$cQuP2!!8~-fN6G`S4F39{=MtA9O zNpv}4=asa|GsBY^)y<(90K46AMYmYrgkqpM5cgEf13!ZMU>UU@!~9zvU>bq0=sN2O zW}?C!Qtr70y=@U5)4IIdogu=9)FW}4&lYE}3*%-f^ZJ6{o+Kwo;2cr3KqfLZCrk>T zfuZ{KNa1nxt~7v5Vn&pJe=63J8n>S zJKRA)xSirpdHEs?4aE- z)P*HQhtD)ikdF7@kA0%L!e&@RvhJ~f7}T-gS-1tWZj8$nv8%oUQsEju$CZHkJlkXA zHxTJAf9&5z(Z(Z>Y#l$|iJ~?;*@2Vo?Py~=iaKG`IUYvQ7JO`Vwm=PQWd#;K1gsSP z#?npp&`xxGdkYHMfO4;}^NsB`6pQa_hZ|8ChL1#&6z6tD%n@(1m2V0f+BD0Xy8_xf zTD$L)eyFrdCPj=Ttv<3!M|R;kW=2PLF;+1}gefE#2&wl4+qjA%{(5l=2mF1XF&RUU zke_%11Cn@IEoi)0ysy^>jb-cN_SP2Ep>r|Xx(qtXg=lMonQJ$ITiaX5!!0;{5zWKx zXbWnK72b$8;37I6ZEauKXcN7&bpd{M8Onk}wyy9?D73Tj2o%hI!~Vn5P8)c|?agqu zf%i5T8;5dwFzleA-6E7AEICY!a!W5OL?QtViw7vOqzzG@^cNdzvn(B;vO^vDQ#ub^$P1C|U zka>8#_*FpV#5Uu&V(EcpqU*D)IF{}!m|(#%izX2{;xpU+9n2<><5M#v$}?oNHaFTb zKPd>~AD^cNy(G(*_{YCENc)s)2Osare~lllgEo`!i}+t)?#Go2#xx8zWnP7%O*-o= zf!Q4Mj>yMH?|zucl=fzK*0)u~qZ;u7*QriL6ehhz!*K$~G5=6i>QiKHvK5=YLr@|r zLCrG#$=1|cpt!& zb!o9USQT14CQlsnSg6@txAR|HM#a}P!>GB5@7PXjtJP{dNf6AP4y)Dh^sVqQnd*Mk zCRM6B-ci4DwrW&lUpFixs2}e4`|n(f)w$;M)^u|YJ~}gNp###%astbB3OV>9{GT!e z^vvq8wkh}eb0WE3YwTUtXcN?^SV7I#ZDUJk*QR6nb#`qV%erk<1FPxQr-GaC@sS(S zknS=8n)ZmN3o2`Aue-^uATjd^XbmYS^_j`$wBt8wvrX6c%h|~0c21nwR1!a~SNoL- zw~$Xf_gRVYxvG|b8@C$=VXjkK<4VP zpD3FrPW&VzsE{Q(aKDY{H2f{QfVzih`2>5zhYGn-y!?-`+&7gr$g>w_witL<1$1p5 zGdi}0*ULwDezdAz9Pc1|ZK$p%3LNuHP8h`jYp`O~RK;>EMMZ?1+4WgvVwI$-+g@+t3_jJHCXHjK*5>3$ZZ57ar1HdJ=0#Pw z(noZDsVUDUc-M<**sRkkbug;Np&!GWmOQt9^NB+xY;^34m>-Pc6GdF%nkHZ`?2jb{^!_4aHH&*HgibuPxU z+HA)*@B{}KexeL>#Mqh_KG|sLyjyys^fu{&^ik=n(w~kXdhfk|!Y-!B_??xphR30E zmy9<~vUEbizX}twakDZ9HDr#nV-9jEb}9Baz%qCPQ`~4bbof#p$9&Mke@`tLQxF2L z32PvWn6iZt@fZ+K^<8JaC9`Wot~k5TEPCyEZtWf3C7Kf%+{ERt4rS33Ce}8GzRE8D zloBAO54EQ4Jbb4W7v8u2Q10bnrZ(8*Nq^%RuveG0?_YUX>EG}ldEMt6QWLttLrr=cCz zGp^Gc@`pe{zD~!W`S(s`_t}BF_|8H5HffFTEe`Kj*XZ6Iia$cHVV|q3f3EJ?zxMp< z(0+s91N(iM`=@|zo5{NjCu&Sf?|o6gNN!#4RBUA_<30*{wgq<8`fl8+-YZVh{n&~O zXJIT+8BJecYc9kn*^Q-jU>aW*S$X2gQFi6DJtyM5PFHD9p+sgk9Ow9 z=^MR%#YlV>zkQZ_(v)M?YGY#7GJ{c}APdBmB3`Y#Ypl17($DqTxqagXvS|15izHFxcss11AdfGG{~hF2 zsrVhx{_0Dsc-Ro1a475q{5SReDBP*Gs!Vr;&!V&~aSIO7P{A}W7cu6hSUf-1$A{~k znS8Etox4*MT^EcMO7(k-;zi1d(mM{qU$Gh(Ta7dP?c-~+ovHP_Jr9u49RajTR6Xzt^h>H?ggR437+y9vAaMb)Oqk(Vn`Su|dAt_4A)^JEfhu;tLMwiS z&d9Q6$TQTUM{BA<)n%#^n4v9M`}N|QD7sFxqf}EjaU5>y6+`(RwN*L;x8C7kTvtOR zH*(&AUy>@q5)Bkxk?Dr2zClB11}H{3f@Rja8qwJ`h2mv}*6wEsVU3EXZ>W}X99D#i zEz_oqaEb`Ygx{2W1sG=86wBN2Cg$P5?Mf-j%guls(8@EXF`S`1;qy?U6@5(SC zS<5j^TbJ8}+O4`4fO@2-hmIbq!IHVM!+&%u0i8)9D1?cu5S@}W%{1Y6RxvaqEg&np zW)gT_RdgcDYb4Mt&!xKG2!e*MQ%g51Y)vTk)>SEFR=J0OGq^lq7+YQJp9r(f_qo~b zH8X>)p*c+F`Iq5a?ts=s0H$f8bNn|E9l~HTRxmXR_NL=#4nz3NI89^4qW_ZeQ>tr} zef1dOm@3=QursV9%*|oG6J-_``qap77Ts@TE)A62x_i_w?SZYcqr7ey`EYPOd(#(|w+|Z`nOF5*F zD>Kg?F<6*S(5BpFH*!w&pVj0g8UAS(>W3#}o51Tp+pW%3|DZU%F!anP9c2~=NdUaK zHc2UT3zf8GN+)Xz#}WpL6Le>z+5BwunMqBB5@1LKcd&_2F4YaOXZx%+93*H{W*ggi zBr?JQVZB(EW(JtbcEzDyo%LrgpdrO1z)WJJZ6&AsPC9xgd-M+{quFl2pnZ~K3$+rd zMBa6aiiagh_O=}ypUr2&h@PkQS)ZF8+-X_s$R!Sa5sm#!i_4F1p3By#c@ zDk-iDt9klF94!1gVfhQz5YX};6U14tBY)1T&j%53A7mpXP>n}rnfP83Bo!I@z83kl z$$8CkRE}w?I+k`fNJU;x#gbL5IVI16V2EM0AS+hVt0Cls1#%^p$p)cEh@v@Oor0jJ z$7Uz}fH)efylGoldCk%uqlAiUMYSpXXoGThUhZ$m+HBtzd*1_^_JCfghtqMxbVEP# za7(VTXFKFJ`$+H{Ij+Zu^ftfPP#!{4$4i;2-Z@+Dds$=J;x#RZk&m$SF&`Sy66QujLN7$-Jz! z76mlHVoTr?tWc?}%Vw75^)as*Tu-t6lxmgUef!=x47 z6z7pa`BMLK4*l?hy+9ydKY|I7`OzMcD$!8EVIh!yQ9T;h=F9H|k; zDq1dCx)-Kwv^1SrJDC>2buC1KX^LLh%bjt>J`4`;MN)FK-9$H5P~R>REsxCDXhzG+ zQPa@d_qTQ9oGb@nfNZi3Z}yC za4IBO(yljzHS~n5g$ZV_#jLe$A_oMMSEH|^J0lZ0L|`VoLA)9HN3uvvS{DCD_Ca z-L#=*-Fw0{d5Jv(i?5;8T zL0YrS@ElgShgd07grySaIfvmN=r5acqUlMB{vT{te~|puhNHry2;{127!OV#37jRk z)M(4Fe65{;-V9%9@)1YY>_(uZ4PW^MFEne>0{jB8Q9pcUJq}^Qq%xvBtCe+Cc9vk} z0#&41+ExQgpQjp>dBhHW%u#|y3V(0+&@mC4FRGc5#4s&I-3+MPO`uV}S$Ypt~Jx_7TSKdEE-s zcB*lH(ZzpwFuiQmcEl4{-5`hNnA8I%2p{xBH zd%6nk1FHo`XQp^9@B4Oz5o^cy)EL$18ym#M9XrWs!>d1Dua&ODobBHM<1&!HMXDwqQ zNQq}yv#P28uLPPenOPX54*Zv{ADT%$>pxN)dXi)cIXwYuzd7k%=|SM%yQKF^ACrC> zxX7IyV5Nfw1r`jGBI@BPdN$9oYxo8M3o}(fr~_H7Kpq$|SZ7#?+yfHon6Fu6H8Uvigp2wf|`jp z7H1KLwDsdl++KNa7Hh|3b8TqL=p2u8`i=$vDb!Z%O2wvzS~CoU!FFNctQ}UVslLs3 zI(8szph{qO9RF>qN!535u!tr@HHGzE9k~|y8z0S#^VSgW7nwgOW`X^f^tiNhAnq6Z zSCH<$v)hI24|)%*+MW%HALRb$0mqkjV+{TsR-ky|RdjRjTJRc4M?G4i%@4hwGckD?{ z!G>+@Ri`~1#{~BO=M1}4zgrEvRKI*JiMsh3<9-|<{e6*RV(70I@BTwqAS`WrYpc`Y zf9RXd|7?RSVF*3wSW$L&YpdPne~+-h%%Tt2&;uUAc+3IMU4Tv6EyJOVewG=HgIA!} zCpgV80DGpJF${ZLWpy^0#+pU){-z#PUC>1A>Ev^c&-T@=^3ivYfzDG^Z{B70v#MoP znQ6_P_o`@A#T$xj|0*ATAAw2Qtwx5GO#PbgU;?hQD*Mwi7{dEm2{5dn$fAV&hGNmf zneMEW`dgRfpm`7T^B-O*76=|ApJTB{vZ{AcIXwWo)>4cGU1x!rk>JL)ahzh|mDlhP zaUuLgnN?{Yw$a0!Te=MjfuF-Pmbumz5(*BF6pM-mrTcS{f*#Ks)|o=599!^lg5}-{ zV4c^5HRuA%D$6y+7OESA?)o6s2K^+}JLw=vTb;BAI^envI&Xhnk2~E#0%}XQmlRXz zo_%xBi$_FQzOemBlLE1RwGyZ`-;I^9YRL^5{#jMok6mA_1(m7_cWILZ94dZ$pWb;9 z7A$FZxs#@yo#Kb&dN1*Gh6w*lzGDK%F|9QI5lb}jM%q~xO9G()B@K8^j2dl)@UL*GXIG*QJAo9k1(s1Z3(CI^7ls(Xty@w!Lt` zuKCp_fsT?^RW+DbmDruE%A6-M+>I60Z>egvGEt?#yriiA{hU+Z7jM8h6&NO%7HPcf zYl?QU_%*%WnGH|vsk3#=~xr)Q#W@^A6 zjE7YmS(&$?mpJ|t$ME)9Sw4%;9n0UzG6RpyyxamMWCRa-K)KN$M;U{aDFQRk!HhFZ zNaCH#sa(#IH(bkq@abW?K3(`odI_dpD0nl!H*Xj^IO7b^KEjudrYb8y%?erfAjZ5B zcMf^_r3l`pR1SYS*t(?ZpzQKTnwq`zO zVtladQP@qoDNCEemJ-o%Lw#4ETFMz!ozgt@3@kR)cd`Uf{|xh;Y{&+#$fE_#ly&W$ zXy87hdfJoBPp@W-Wm2L`qLXMM= z!YsTZ-OMtsmXSyfaE>17dd#ECp}y$Iw^jrT@fFtxIME#>**4olS0DUHj>Aldam4tn zrT~|ZPzEIR!mjF!Kb#jT%QtOf*??(AUZ(V$+#Lq@)I@)Y(Y`)d9UK!V7g>TlhDuz{ zwS4K&%w4K)t6R0%jk6oGvm3JyknLa4Odq*Vh+oml`XL#>&Rg$;qS7 zm)^aS5gu6X{OVwJ)~U3PT^0{+tTdRv$q&BA_;FOKBAz2!nbCIxGD4qP%z3PoG$*gi9w+9Ziggk@-YHS-#gGU1O26%^{B|6gM1ekzrn- zqkplPa&c?xDO*2&T(_^XTr6yVC)(QR==PSK?c<}JF_I=h#=(q+0Hy4AQv0 zuAf113_@XOM}^H7m>^xi4YNsACkrYagmaUgOwFl(q!5+VwJVRC$>Ta9KU&I$2{T8m zC>-8L$N7;gDB90byEYp-RC8BuqKfHxy~}dxDj#V#`~F(k*}((%B;++ z>ZQ+A`S#p=&w4S!w!Y|1WLAMQ-E${f%8ZfMz@i0t#mt~O60Co?|;t{*} z>>%I_UK^HS+Q2SrA7D5upPk*ooEc_zb@rTLkhK4QZ$xBdR#sI@Z5X8Lc;~(U|KI<< z|Nr~1l#MGYAs-qA&T1-3MKxuW&Y@bibVNkS=3B@|ELEfqM=mV$*zTtYs0h%SvNB}J z4RW!8D-H`+Y6`WK#sx-n5@^42WpUz0%VHl+Zm=+R zGjdRA?7_sSJVFWQ2-|Q6T@ZCK)FOJAox~W&xJrDABon~zUOu4Z##3ZjF|=3zZz|Jw z&l-yC)mveVl4MuPwGka1mC0oj(Rn=Ts8v}eP0dg)%C>TP)zuU`oUd5QlUR7_7323t zY`e0obS%^%m&)1_8b3_Re^{Vh1P31C5gl<^cY4;1etod*dvqmoX@vd?ScUeZ*?s$yY86=$n`@jhZ*9A#e@3rFI(pI~48 z_ah!Jh_LR^BHjWQ46d_r;Yh}7IDgqo%E^tAKULhnyC3;e<^ARTX_xc;I~zs^1*vml zxxfq3#3uHhRFWf!y&GQrf2pjd)s5S3xJ}vZ?ug%n3V(T(_XwBRIjFS0(I=QSI}%MEt4brw^%SKgaP77x!XR8 zk#0AWAxv%eDFNp2xc9Yr3}F9Od)_@`C?y`(en08|jFbJO+M2f&Th&q+h zE9AbiU(2;0xl^V5pZ6zss(?@LN$eZfckIEYU4zQIzQcT5nM6b!AFySG>L% z-9MPE19g9Yz7DDZdvm4aJUNn&u?$I>DK5!IddaZI5*)|z9MbXIwT(xeKfNCZX@YJs zJo}CN|I~SOL(1*UO6lIzDvuL_a+pcyRfCz-m-Yk^{`84B^)id@C9Yxj zdbu@YTeI`l$5i!W*21hFw&p$hF=M741oau?WAZCOO$+Ac0?j$@y2o7_x92Q(J~(DE zvoc#TnRP51@1^29`EjE{B@87#NP&n{jO3wOs4qVIX}-EXG*rq$Fi>0qjF6JI`= z?Vx6Q+5|mqNXMkRfCFJ#!wozJXkZD-J}7BTd8R)2M|fd*QH@L`p$Zd z66RRduxjXx=>}X_4kNTtU1%)z=6aP`9Rn)c^-|p^*(C$cw#SI2*FP=G+rq1XDdjaq zCoY33y}8<(s|E~h$5>FE>#c6W6p7(ZIWuKPKi*$%*GigcYNc9xxqn=DWaA!~TWzI2 z7xB8Bw_zF2w@UZl9M>a54&fcncbEq^!TKo?npakJQ&*V=72%EY{vx7ULt-DM28F*f zsuuwxS7l7?;;znQzj61?wV@%l-tjrN;ghzR_A6oPErG-tqzOL0W^pln>Qy8oi;Vksin0)^yYpe z3^QspL$_acUjBc!)|OhLx;y^zZ%}Fp0*ii{H?zVcBw(1%HgZ(DND7gib8{)FiF0XJJ{ZT2O7YmX7p%s+l?I^X}|? zZ&^t6FE|?$y8YnI>9!c%PU(;~ZbGxs9${K{rM&TxuPjgN$rQcN{|b5Bj5Kb7(eR%oa61Z_qUs)a!;8l_HHFjCws_ z4|rt{T3UY8yx5c1KEEcz8CuH|s`e7R;znJs{$Jd*iyp!_FuKOQ+B5xJW$J(i6+`1gLf4tg7;{W3sBI&$c!7qCl<@<6O8lsd^S2jnuQ~5p-6>Khwr! z`a$U#>4&BN`mal_V&i&G31jrYNxYAC+<(I&4tex~OOt}`Z*5)R?os@()#-d!gna=~ z5+9!s`Lq0~h$OL{wxfqg41K|!()nyJpSK*m&FII7D!{O{fJ@#^@U|sG5?{wg$q@@W`ea+U>l|tmZ~$AIG8of*&wdWR7;^{8g@{sHH0}~5{LLMj1#zjnaYO= zIV{uc{2djlVaf44r(}7NZMLGQW!ll`8L*i>rE_l{xnuu);Tl=aaMV^LD(RBTBR?OK zHl>r&ZPInhadcbKqI3lMkK3ekAcZHSivlNd zqb->4=cej$f5Ho!TKY96K)3*_c(z3dI^yq;lo`597lZ~J_h_Sltmxd4l5N? z5v+p_RI*q11VRFVriHW(PoaUf;xXBcqdmXa?P_(Knp)R1K^D~a6MVA8CE}wz>YYw! zu3rE7F#(PPK1+VO=8EzPxQ#PLRX)q{_nwg6FMUY*nDnF4=cF&9#WV7n3`QnZ!@_mU zPSEAw zGFrAhx4rDE&;P&-EI-ozt|scrXtGOe(_ww7WIJ zJd=V#c?oN{!_u~NJIrn$mEIw}5BinopuBz(%IkkXB#DuZ7H#-gu?(jc$>bNjcnbBP z_$%=?DZcF&%12bCU68Ef$UX%uo?D@KQ1{bPVWJ3Y#ga;&RiMEB+n`WlRVXk$^2csff>yn7cjR zmhuL4ct9KYgOFx*pXThPtB}F1`!!WJzzdhqI4@tnc&Kq`f|rHHlTYr!3+Lvb_WS}Q zxv&o}*CGAJLpRJzWeP6|Hij@89cSik(MDq?%$xEe44AXwx6bO-F_XqvN%P)Z4Cdz zv(^}D4XzO2*l?n9C5kLB$SVAkm84--iPJEdIwAj%3Q!$NF5co)iCcF~eY`BH(h^59 zk2&@*WW$FKo2d&lnzSDz6_uF{hg8kR7)7o9#s`sZ0x6{G+;S-=@ICtptthjlDKd+3 z0L^g!w>=n>-?-2|F`d>)p-m%is?7Gv^&px3>~uQzQ?1u8Gv&4a{MvseYh(>Z+Z|rt zj*ycwx`XxFIrbFHG)~GG8B&evKt;feWoW)wbMDJ%}QYt{4*DIcXic_v|DOtP9F{3wm6kf z$vN3`K&G0@32B@|{Yw2c6OK_Yz}c2b3>UMq)`P(~4j<9F>^})fRL@rCo_fG`s^zVX znVmOp#laV>TBqT-W+uxsPY>>XfF@qK?rp%MtvB!7XOV@_bu72w7m4{FlKO~pI*wp7 zK>{m~m(v2H(IW4+adLX&oNrX-D5vYNWff$4J5Bt!?)Ao{y7Ba&EJzgbMtA8`2d&=G zv8{jumZYR1)C!dADUu8btL~vt)i>*UWEB)jzA=4TDeBX>Ek;k{dYp#++#F6Ju?Hlr z6gA2Yzsnkx#b(7a)nK-ZJ`;z4+HL7gY1@?y6H#pKAvU^D?}~u^gBUu-^7;@|ZJkF) zKsTdOGUUr8={MN0_3yaDG*oJkJMQS~dS5qTLT?#{iMJK~2Mt|S75=JS(oId_@35_d z-#y|}MZZma$Z*t3N@2MEA^!Cjd|jcBiFd1p&0hgKMjk^5;|#Qbqhrz;=}zfh5la~u zC>ICTNO-SEarSUHE$|QsgbSj_Qq~2_|655n2&JZ_8>XonRQ;zTPD}&tH+Kac>K{8+ zI(Dot%Xh#L?jPhg|19J25HhEyT=AQaPDUL{Q^wr<)bukVz%P6ji+KNA=;2#XNdf8Vrh+ropVJFM}! z$rw5hD8FVKR0G*5it3xTWx#ZS>as$8(>Z(kv}Kh|KMZ|51a9os&W&QCu1JOy@=@0D z0>Vl^&aqZ9>)c(vWp{i9@T#ye(8Z}P%sa?fU-`?#(z%ObS2the;<2{Gceu#so93^N z&ln2OVR_7K99vX5vW7r$oSf6 z9JJUQ(rM|O^nmnU=>t42*6Y{8vB`I?kq0XLu%E=N-8+5*n&}ATE~g4w-$TiNO$2xP z{u|cLTCV8>2lRAd4|RWnhnyN4Z}xVLH+yUx;u53x4iGRey%DXhS_Qv15o-%Q)X|%87g{Lh+uJ{aTkm?k)W}J&{phZJ0<>L;8d(?C zfuU$4uvWjmPc*j4b%ALz8gT5G_F!Xk3@3D4Mju7O3Up422nksoqivde#&b9!P-~`l zGzAJTOvq>9Z&p4?6(X#l19p;*zq_jwI`ofajg(}0TTzH(n|7#clR*IMva%_wrmB>g zR<>7GbX#RpWVBay2gvBN-Yx>F`-tgUZ8tTaI!I21*o3`ZaS4Zl6cIX!Lj{ZNqv3eC z!JpVo=R`O`GKI7$a!RJ>c2HgWsonW|-(@+m6pI&eKM;$&#XSy=Wvkyjz!=bSgtX^d z=&sGzpOYa%cnpe5pyE2=3$S0)G;;^zddZ(u6-$5hRozn5cQVIdhOVG5x!iHiR-~E763iQ$i ze*EXQ=2EL9yQ=ES|GOTPl=3~|#)Rj#{oztcE|(v+eGuHDZ`*G8b$T?u=lR?F zW|+%lOP^VAs7YOFoGd9`5GhgkrunV;$X;)p-fk%~^;xpW)71F!WT^}kyva0`q%4~s z;^}?HG+|<|m`6BmcL5oydTSw9L4n1|6mMVs4{S!6(Jh&6sHG6{3=UIAF@Os5FXp#y zn_ag9GCMrI9Y!O2298M^2|ppRs2{hpiVD~L5pEe=rGriETaOU!N3_RrjP>|=Lknd& z)Qt08+`45K&YKvsC8XwgW?H1F=_Vh{g?dHNehOj%|}xeQ3U*Ui&DzMDPFEEmM(?gfKJ$ej5&@bb8c zHxV@-f3ZNe{#43RzK@P+FYpzc+@c_Druj^%oi^5+(6qFn${;?+Wk`OMS2xe;;ziH9 zc*%7yU3&_%GIgFWd+`FR%1FRgCkh{rqO4y>na!ZbM6qQ1)64MkF1Y~>Pc@rgBf+HP z;KQ9xcV{%$L~IESX50a^q)llJX53=D6Spxl;FyW#6G!5`n1`(A8(OnOfMJtz1;m2D!?#r0=}@&1b;B8zcDq!a`PCFE z;`eO$bSto)vjTod@gZwGwt6I$p`C0{kt*a>Ox`hnDt0y^&$lHg} zNd9F!kcD851lGH{U$y;r)!x!p+OxF?$nfp2cHd%8Kg@aQO)#^buy%}pXyAmKB={$=J9aV0k#`0HZg?=xoD(SObE+01caEZj zwb^#$+s{ToYsmS2UQryuW~ix`Rl0g+l1V3!sruyzxZEQA_rTn7o&a!vhB(M@^ktP^ zhf?ia#6taVMl7duMg}~GP`8$)b!n6HeLh1f;^?xa6s%+%0!u7!aOP4hy+mw__fZPa zv%~ax5*)mXoPr*u_$4#xeyFmbsBZ)ALMTJy;>A_aP%O@dP)a-?>=CN!?{VlBBSlyH zJyltdw~(_=L#11w+VJ}>FnJ|a(!j#86ps5=Nkb|@E$&LI(0^Z$E{Rx`Y>hh`Z61-) zFmaRR?nh+=lXgj&Wf#M>G`OpVCT=)RJSn4@U%8K15^!edLW$5I!y_Wf1tgDgR)(A1 z-;Eb%3`Pt?B~*(W9?VqlD^KMJ2?HBUL%>S1q+PJ6E-7 zY4*L0$%KL4D9kjNqN-+TH1`qllUAq1PhtaskDf0kq^RjBbovOxE@-rXRi8$h8V7+dtZJnA@CTvR{{bSkkJ0n|-pKVA zIBC=9+n$PGKkj3=G8rxR0D%=3v>)3gvcd|sdt)*av7V0Y8;eNLvo}%GV?cdBrIYkc zj{s3XuD=KMuarIHCuq&_<)nYdZMmn*WkjODcKt!!`;hK=`iDII2et2{fxk}NMh#Ygl(i!$fJ!>7KXXD?4eD#jLi~5>JMk>%y+c(Nmc()_{LnV85vQ`|~e!{^-6sznOyt6=c($ zuIbPrjYLBBQSwQdNU3g1e-3&V=V)T%d=I`ubt-fjE?&y@_(yYf%G;DQoyuM*^%BMt z^5D3D0nZ=_*Y3VHB${lI*n zX(sWokXzoizxwji&8H8@GX5Ag><72&Vt<9jg`TW98v2z!R8Imj-Zc=~)voRpt7q5H z=b+m0D_rdaEY9VF>cxnR>9t|sc6}=I#TxLTBKzZmntk}ck#;>B#*Ak^UDLmZ(gGbf z)vk}mo_Vnhc7%S3QNs(f$#amZL=SN3VwIiBGmD3>|uQH)ESY@*9jTw*Z2apiWa zr=e}mU;{B)PZIQJQey7AB{o9K!!ky#-xR?!dKl9laXL9v33@BEd2IMcs&Vsp62-)F zs&hdlZk{NYV&dwtJy)ZKRdWrmWSG>}87;-WhhUbLVcQBkGYIib<}t-!x}%wfR}aaG zqr~N?-!RNl63kT{TaA;bU$@Na@si_QHZ*22Lo-a3D$LR`R! z6A;@cM6A%%k^NLyiz27#ti{M)x*kUJuECo6l>qZh#hkY4~42{pljSEJWSNL?*8>H%>Wn6rq{Bklr*zT%JeGs zhlBnvE2G$-3;FXi4%cj0S7?+6`--0TQn9SA@r8Zwv zyImDd%0D@81wjIDj)~iUB3{DBK76}9_9UAyJ;>r|0p-^V-}f^vJWSc=&l9MP>B-g~IoQ7JiV*p*AUp zNN6eg_KjT4$NcPB(J9?cwV4&a;QPuvlE7e(G`=<>>+^I98_$zzd{DCc7o^H%N@(VV zzM96gFL<}_D49^_37sa@(Hvi_Ss#l+PK-k@Q@1GxHOQ@llpIkt48ROCpwM~53H>szN2o@6Yh(-P0S`jH#UsIef~htCIlrbdXv-bE zIm;P0(?{LHy1V?^D||iku=F13e}?v4ghA_d2RtBH4`Z<~^hd_Nm^&DvyE633+-tc> z*2^N+RSuD{KC2|<{u(+a;u0suJ6=QYM07tq1>E;H`IENBT%|3bHCh5pqjf~a?w>m| z4*DBBJQ@6u=h7SS(SryL41X-v`sjHN*+AZMoJQR&lVxbIV_T7l?CPpU;Ygv6mNhl7 z{5sJcdFJpzM(tHKgouAAgM-o4}A%V9=0_s_3+J`cxYvt*Svx4H{FTo3e4bhT9!B)NThmH29%x>XW}a-AaF_Vg%^? zmlznzh6-49(80fYuG3aju3kJ!xvfGWlfDk6FDI>~Hv7n|G z*hIliFTaUmoK~DXz5y>)J~xxprl>Th$6VAPtd?;%ghI^=5GF7=^P^a>wHnEZZU>kVxqPIY`b0>7MI3IEo^afq_F$O$E%!Z=dXBeQFI!n0;e7L{-v4`U zZS{_|^-aChO6Fr-wTb;SFj>Z6R~?u#bvP8=HRpB`IBz1)R^RcCs<*iKOE^^dN{scR z3*B9pgQQ4BdKmWuMtWFILsB4ZFM58hK*+kF?fKpG{ATr?@2q-DOTS>hiTLpEw+^I7 z$mhsj^6~NoK-6&&2?d+6y~KmzPWBd06N~sO95iN(oL%xcvZs95bb9s@&p17k;$eHy zBRZm*^l}=()NpM2 zl8yK`xD`VQrmmyw^!XHa&Wz|aM_i0^#u>$!J?hVKc%qJinye}19~V>~5)0?s>B3^l zTdFIs67(vb6R{yuyL~jMfJr8wX02m?+snNY(C~>3hI`enKlB0;5uI8VG%JQ1mRhET zQT|NNG;0w_Dxcb2*S_eQDlK`M9yTM(8Pxk`V8Y-1@3_wogCCe)@iN*`&zpkwC?$;@ z#KT^+{~6Lp_F>?oyJ;uRJMRZ7|7^rUXpUI;`KiQD%Kg;qkoz9B_Qu3MUWfM;`(t}l z=t;SsdL44#gZ3K}`#A0Ui+yoA@zdL)jHq-8E2HXfxGlmZgUQ9KtEC|wiUBV5->vUeb_y?^t3x~?NuZ0=P> zY~H8E)1MTluZWT1ze!($Y}Mm0cO}2St3cayo&!OJPcY%|)QhP<0mTz^qDNplTM)#FaJq9#xT zEj{0uWd7~i1CN}IU2WbU+&1v%HT~+`c1Jgr&>Ef_TA^aWS6queuDixx5vSC}1WqrVORG7GTV5lHFx={(ju&kNr;QxG3>BeOv zu-FnM(9k;Ss;2r{`>bNWwNi3QiNV$`d%96_EZcHjM|Yf(uGwb--*ZgH48QJ&%w{Gt zEW2ixDkWFb9rzN2YO5D0p{q1dwT1gB$?+y|53(*D=3`E=wEtSY~A&=i#T9EZFm6g!62sL2ZZ^ep1mw_pw%a#urG2K@zQz^uX z^&}~nu+}ITWUxHIYH@E9_wuA+koKtUxETAjRPJBBgxihzFC(JyhAbMTJGM{SJa{*A z>IUW>?PIFP0mnJAcznYI_hN?w;TtyW4>&+Vj|UME|NgB0AM3Rr`k@cU_r*W{WbkDF zS?eP+m+9sDeeZkUef8R(`0w*q9*Q5lZ>zHPaJ|+T+4_(pk}nYZJ0jA8=!ZGjK;}Bi z9S-T_YhuhP%8ya{V~R5OPUf=`zZ4IMHvaBupD_6j8UBF#HC6o!ae0TL+yO88{^;6Y zS5=9mzH)7D#i1btaCh^R3~ih&@Nt2R+cblCXJL5omLRFE%+5@J{*dwQ? zO`Q8R?S6;Y^wcAa$q2S2r%a4Q%b?%l@=%PZTG~*I7B@CE^U(2m-h|$F>ymQ6<#bxB z^M+rx2E+{G$dMa%#WX5*WHLQ8LVAB02TSFy9Rx63dT;Y+oj0AG)4h2{Het}#O6=G- zI#y^ax^Kp+S*e(+u7)8~bn7F~vNVmo~E*!?iHE$A;R1u^t>++io(utl3MK1vjD z1zpxo_p8y9d|>HR{c}tImhGQKYb4+PfMvW@_wDN!E&Ty#?!Q;oi2p6!BHvM|ZuxOw zU$=ezt%mghJ0Q>NmIhxaN)ZPM>DUl4CV0D<5rY%ENlIAO*b9Gl4E4&tZrFZG*bC!S znS9!F-u9nVwdbgMA6fD3oVv~!aeP4Yq;H?6D!otDGMh4P7ZC9140*er(vy+H1+$7i zHy^Nd%=Ut%e-F${P!?5RYys@^}I zUx6j0JIJzfl*bFx z?JBR2GK{7h7Z>fg8k2ThlO1zmAo4<>~eMl=pBFOL{^iXGg!~%EPgnuV*RS&!$f<^7^6X z^UgIM_vkLJ#c>-=7RHWQ251A(9u$t*Y#Fy^^VpP3+?TXVez^lJm^V7W#M3K#macS0 zhq7;oX=FN?OoLdhz;n}~9Wy&b9uDWIW15}(;FZs&mR1k*v;RSU1MTD}4m-~MYrxxE z3z$6#UO+*okUci&-o|? zwVNOALiOK4^NQ=Dq2EE1Fh2=aQ~th)wdr7igckb-B6EL(Sy^401sN=*?K8Lg!Z3)~ z2?7h)*FndQXauZ_xNCetF3t=;kBhy|XSrq1{GdS>j_jPV=R$O_gSTNw2+v7#=XD zJzm(~DA+9J%b{@@M$KX`mT#vr=&BW592gF8nXxcC!d;|o4iB%=PPPOF)Zijv9rr*P zD|tq%e{5^9#AerEM%!riXJ`8-`^{$mtN8UMF2<=>`J$XfYw%O1DK(WdUf$kbo1yWc z;qmo3)uQvw{)vs**^LwZW>#-sO|gTei1mj_e~tCp$?#*3Y%DBn)M~vmXUWPh+;-c> z#wR~HHYeHMZM(@@aVa%j;{KWKR&RjI-h+)a;t#s$t|##kGP3M^f552Y>n<}E=V$6p z(=O?BR(CX`J6Eq*jiR~dyDXTv1E0*a!+O(RV}{Kr7M5Xqjiz~2W25#nl3wO>n+}e` z`$@moW{7bvT&zkkT#PyNC|XNl9h)I1!dt`2>EzT-ZL|IZn#m}gzjdJmL*K9&o*fKc zc;R#R-uuIZGJMr?LlWyM(`}CgHYx7oD;#}8>deRUG#(}=2wafrtA9zfSO4dSHfLeT{w=R&I)Os9a~f3w$2+_f z*_}jlTZdY%7B(XiHqY8tqed-If<|bR53MvvX|YmSERmquZiZrR@K=0pfGE*Vh+&D^A?D!tNo5N6Ccdfsp$M30)bcIf`C&@S|YHcNE2MRCK1wmVS?pf#g{E z$h_q(B&58svQQ@Rd?=R}Vh@HNjew~dq*Gh!mGnSH{Vo9GGoGOUx|CFy;=g%*s}|6UUvhM&(Lpsa?v-LMC(A@12?e=sEJJ7HW^GsyKb& z8OENWHWjCQJRsIa+f#5-ah*1s$F%q)W%!R|Q+|k$hs5cFs%_iqgPQhWc0poQ{fMF| z9}%a&ix|_->Y@H@c9Hkh+_n~RBvA6{KtW554O_zakPjesO6^jqz1S{!o^jMkN{X(O z66dJld8Ia~mgYiPJH3 zI&U#P598qz*196sLXZVPn8w!7KQO>>2+6!3#jB0RY8?6V2@jnhsDinL3uG;Zu8q*z zwi_bdF3dTcY5bl z+zQ8L#af0AJ))GHQ2!UIhP(5 zXDO?oSiG_5;nUg)JxMP$KSdc|1%eW{Mk|IFG#5e_Diu4πR(XEyYV3az{Ot$Y*f93mYq^Lnu{qbYp!X!TA9&! zE-IItGEKZ{gMP4Nd#xGUa1=;JG3Pv}=~igMHBlVHo@se@2@*-F)x;^M`yc7LKu=nh zhA_grH$yzgP~Jdm()hD&SH=^MgaTh61QR<#GK=rQaO4x6U2~|tOMDBiVFfUVF-$`{ zM<|?NloMDpTixy!w|>^OBf`pPm2YOj_yE1m)YZVcW_SuUG!acvGpOPj*Q}t^SxvY6 zMw@@dD@iJ>i?)HcRjHqjUAt+&$qDU?<9a&##C}v@AjXWNIrQVpFoMK^u?a-Ih|y&6 z=4{#968MJCMOP#2CpnTs0ELJ9iK@U9fx#`V3x4B8_-}*}d01MIR-{eoG)8!ivO(o$ zI%4N8Hf?cCy{r4fzL-U^tjot~B7zSB-3Tyoq3m^2DlydUix~QaQyJ}W_{9hLb_FiV zBRa%Yv1%%yC)6>536NXkNE9!=fCo(j!nIUK4)ZxtPr6&WU;5sO9g6)()bis7tAirkm@kH)(n*}lhV+HnJ;M8R_7%gBj^6CN-l#Q*Co`X z5m#ya<-R7)lZ>Gz!2p@$Re;__w5$p=INcYnLKWXz+c`xSqe!e*aXLCMV(+K%gI}k7 z`@Iytabxq@8<6JJ%XqLjfd@+L68t6%Ie4-$HkTgln?EUi5Vfc18dX%7q-*)=uW4GkCT3cDubQN#OR zQkYUl8^)UQOVC~N2}@nxNz;YHOH&iOFqYxFClW#9k-B_nJVP`sf%|OSFMUHAV2d#< z%z4sjcNT_9%mw#BwMTz9EML17-HIKcWd9??}rG#6vLb&&H3?O}N$|=*M5^lwJ^cA=P>aYVnbJ!tJ*?!H zs{4qfr2C6{o(}>QV&IY?8aWQRaa}%?O5*V1j$Nm0joSqXTM=I~87EN$?E`=T+CI9Vj2(a|=eUl1b5h`w-Aby?L z=j)~`VlYY)MqH!xXCpM2mC%gX$YS44jR~T3m5v)ah=iva zY6&XRJV!QS2U>?I*;@BLsqSIK@akU*$nw#CQ^@zZa-Z@7uzefnk9^rbhWQe`toigI z3Mbv<>)6~*;vrqTOyRK)r!$$ubUud*xqo(;qF&~ywKJLZ`o;AkfnhT2wJ(YELt)vu z^Q7kdZ=rFaISnee&R&wX(84(Z zE~gM9Hd$Q4a;h-uO)i}N)^iVDerl4k)QnUW6y8ZcLx8^LKvIM~1d)(A|!u(Me?xuPj>HcX<)2BWg4C9Z1e z@BL9t31v-lwpv?`rpcj#ErV~pC@SBzbpPd?&Z|Y_J1vU1luZgVxstZP{hJ8keohNo z3FcC?sXK~7TaF(wYl|*WgUB*5-~wl<9;8LGGvnvcxCdp2u^BJ|DkhuIB} zQw6-SgLog_ytu{ESd%-r3vcHW@{k7(KS|z#lIm^sxSX_iYSCV@ie6V4eD8;KS9Phy zppCZ9+<)5g;L4(&;{GonK2=5GJw9D{Uw#8+V(4v4Q`j6@G7v=}Xk;+Q6wPYu#>8Ip z>SWv<6e~&y9mLDrlN?QEhU?rB94EJ0ar^o2m(N%P#!kLxoKR&lZ!y{EX}XGrbec?5 zJuYlZ%SMATActy8L{^)oX3!dppuFmA$5((gPS$I$y!HxTPr~(Q?DhHH0T3h%?1cp* z-~8DewyhZhBqN(LJwn+M^R#7KwjyiB-MLhw%pxsIwwE;zUcm?O8A!;Ofe#q1UD|PH zaIdhC-`0US78mhxUY=qj^tu}dk@Bwd}P31uP0{8|0Axx#4&@?q= zj!ROY`4nIA6*jUwH2G%QLE*4$mHT)?)q0~`-L6_RVyaSo?;U!`B9$&f+3A6HL_=!T zTi+1V5mh4=>UX@is;DfYmeNu&1xPf|mo$3p4awy7mE*93+=`e+ZCv_2NmAF=168W3 zD0golD;%;yr}rrOfyG#pbp^x3k_@|I<8EcF94kQcBPrg^G^*Im74VQO?WX$MH&?b~ zX$n)-n=9Ihay)!+IgUY+3=S&1UrZ@QAskd@9pR6nj+K)GG~Jz#d(&KdH(59@j;Q+3 z&6UY_Qks`;x)@$}yEvK&6g;A!Avvf>eqCVX=-S=rhIP-z4U|kN6_%!M+=KJ>yS2ZT zHgPYGZn90B!thNth*RZJEWcZBp!|x6Ksk00PU;66n+KKQAE{cSfXKsvd=4x{bNqV_ z{IjbZ-}+rB$Nf0F$+Dcv_)V7P9&&konZ)JIZgTVl;m(*XG)kBu!XdNV2i|Z4 z5WY;x{q-UKLug72qneb5>xhH}GQm{=t-Z#9s|F`Ye{H?oO@!YJ zFc~ypC!{b0g1-;8b$X6PWDD@**ph+lz!Ow#!l;tCqoBe31Dnj!Zktokn6xf#k9@Ox8M>uFNNpCNuV2^_?%104QQ>{9aOdmh%V?nbA|4(T zD@qzZ77q1L-{3u%Hym`BYYacZz3$1NPFYuQWEJ1-+g!o zDd+K7Ydl`dDo3zwaZsgR(*zY_Xwl+(6Jh!6z{iJn!E^oAoN!O1Tp_n{X z^>B1%+e#N`<6SWj^$hOY*nAhqhc7t)czAiF5<;lqQ@Ggu9~H%;mg@7pC0o|lQ)7=! zl!VQ9ntW)cX9TqTYOXZju=E#o^QD(eI9Y#lx+0{;m7Sygu4b`%pi#alU3rUwg5*4> zLQMto#x+J)cBjU#bNi?o%++S4Bhtw{{_AMAR^SxboG>{~CN>x@5mCqSu*mCoGp+4+ zj=UmsPsz*a6zna$rZ=;S|3q50a0q$vW`&#jB1kXi_9Wx8%if;*mSb;rMu-RIu8>VNx>g_>LcC|ya?7g-h zN$NOFj#QHtIV%2mJ>Qd#RWi1jQpok(RAMMOw@X$Wgk?k-Zy>m|l!C0*c+P|T5Dt)c`B{zIq!n-KrR$|SKX5-k?t29z>Md0EEoiP4#XwTv@Ga!x zxu{M^J^K6z`u1U{5nI@@Zp&+MY2c;F#Ys~iXtWg{N~fhaOYbP`J@c`B?yYnL?d$sK zvy^WBEVUeqS+?Wd&n|jx);}o^F+LqyK;sHQe^yTVjlg=*3XqTdBEkbzUxXGcyD-Fd z%^!)=)+c0LX1>RmbJAhV^O>x_g5Tb%lxijA*3qT7$8t+w@zN9fOyX~=V_PbDMyEvA zVVdv^Q7v0icgf)bMzz(d8ioyOs94Ob%vMZhDgIf@SDZLf9zseUQrs6% zTdz2+dHA+E-*T?`_Ep(zGKG(xvpEJysv@u_OxJnaijC^)mQtvx6+SqwErc9A)VF1s<=~-VXvn(70brRd z+djt*4Hs&BxLZkkPi!L%E^9xR^%?0NXeBR7e@FV!H!k(udU?z&ncKpnD;|c(;PWaN zP>qfH#*lrA3B8^|KyjW|6bE}bSJoe*YGr<&vy5{EmBOG=%sf@C4E=?JLUiT6_~GlW zO;8SELW}rEd1`Hy&L5eFjy|3%(`8}iyf&gKqS=o|zMQ;18XU7m8fK;{{QxD5C`K6E zd4NDwya2e$wm1ZD=0+P8s$c_Aw+fZ8OVXGLY>b&JX`fr*sNnN$!uSa1%^UsogvYn+ zvi>-B%orzEGJ&vj1$*&ol0DviCa!&R)R)%@la=`r>X`~b*C280ypw? zx58k=_3@Hi(lz}Vkq{n!%`$5hMb#6hG#3%ePU`p7Dz;?>%XH2)R*x5&yc zuBJhBUs1Fi3taPUNhFtxjY{>?7sJY2ZsqWgcWm>ADlO;nd zYg9Mus+5jHrC%m~>IXi;e;e$&c%kTrF8;QJTloV*DIX94JftjLNcETVbTc%z{;rFu zi9EYIvyr{s3XGd0^miO)=4M4)i3#L@NVh1|&9Cd)9JTaseklz%iwjXdqSHAFe{f-K zjcRsIKjz~J{EA&z4^wic^D%4p&Sn{?-yF*sU2x~VK6h<|KDjeaLG&YYbE7%SVaU6e zw$R1#wy;*7SbSLDJi-w)hQhKk9l4E`Rb4VDuCelH&fMC~R%v#F!JuJ6GYvg)}Wj&!&5p0WAP5yGc3vm=a-X)AI2 z^DV49r;TCTQ#p!Kek}d^KEi0ggE;nipkZ_kDCe{R=aOM|_nAB{KbMFQvp5xTG!h|rD3D&aS4p4rz@b7DTm(D8%ElMwb zKY;&Qc$m+xKD~D#HpVn4yUf}|QMR|fj*{G`&b+QVv3JSst^6ZjXha_BLqFS(v5SrK zwdN#7;-PQ7)}di}HYo*Ob-BM>tuEJKfVVnNR+37iW9t4VYWT3fTq7NPJXaa@KZnzG zpJnt%;3ziBqTE;!*``ebEDT!(UHfId*sa9@LCk@B=hsh)e&2z>T;FTglI2RPgY?h8;!DwMwyTE z6G*d&t1lYsZZ9ieFvk z8xnjI;UauT8t_kp-x0VmD)ov952De|#b_-VBxCX@TYZk)p4yW@v9QeDpq~I$C*@T0 zMsh<*&XWF6h>w5p&yL~@=BQ!_ai1 zszlcevJxF*+WI;)O^NF_Tv~4WYaz@f)svLYLh5LJtc7a|^(zizi)?;T)#Dj&eVyvW z)Sg!$Wtg)KVJ<(Jw1F84Uue+J!_uA7=cHf2nZkyEm`G;|BC1v*79P?lTN<~P<`4;k zu7HW^im+OF^vqs&n8w25YZh&-$8D^|#9jm^s1Dt1JvCHio)mrk)ahihGY z#*Nj7-PB6L<8UeK_#&1Km{Tk~wGdjGuF4pXhA5g0a@TAa;yHHRDVegaDjuUU8ZJ1i+_wL=fBRQ=F3EK5;zeU?D#x{h9A=~>GB!m#`?Vj`kOoRn^d8uPI91deJW zZjLiUhIuE9Ur`?w4<{V8hi9f#osB_KjSM;)=OJk83g?M4uP_VzN#KF#9qWNilvWFi;?T) z)YWN4nN=PADQg=Wm2K-O-BD+i|FLI!!hW3f~O(JSr~!myChw&&MrpM%Ua>LY3w`~V7>IEQe9`NZ}0d@X9vbO z=N11cLT{0k^NM_n7I6VbXHkA$4HjK&OE__rE|8gbL}xClM3`Sx7pT6uKC zI9oAsdQ5sJ=-wx|&pB_cXL46jY)6OFCAUjDsS?GR z10Kw*ds7TV*k~A@8Ij~F`kq?17S5Qaz)c~hIdgGBm>(+&F4Zc2ZT(%8*LKLoR@fFh zn=2;qL6$x(*-|T2|WSNT<+b=i#MuW*RYrsX>w=0XL70KG=u-tCPk<6HUfvAu?{HZ@S z2A?r;lB8Yb@uYM~dJaY>|M-T>11ka(FnKVv>xz(}O~kCk0mKpB><%}f&a^j&I3PKW z;9AEC+DA^7LBcCUT17U~*glix*zV=!$l^VVsCCS+h;5L(G}iMnBZf^ZH7UD+pw%HSuI;8 z`X-CDTA$awBhqmmmn18YA}Ed6N6B{7#cI+Nz^Ek7g5a!|SFtRNvVYMp<5s$UhQnE9 z%dCB&Rkvh_Vd#^qTi0-&ea+G%W^u&SY2Z&r{z%IFZT%GAsv}|K`-f9}tLYRLz|DrK zvqY|p!nQEQ5QCq^-be_m1QhYf>C~ScWAv;57dxX{UzPbHt^DQd*T1GImyint#>%gZ z{N~y&-YwQ8UqS=AFOew9@e*oM1SN$LefShR=D>*DOipzFY3$=}7lvpEb4upq*nP;2 z<)55=WY*R+Tb%xbEQ_#Kvi$29toe5=m>*FUN(WlxiM%>_9;+nH7SYp_K28Bq#_(yD z%Uqi6zibeTJ;W^1@K-liUruxR^)%P{FEO1Eoxw?$QXD(p{x_vV*^WUJr$auL306qN{&hf~5(ipO{qhF%HiBd$(yo3A01Jq+!j z`P|rS7xnvDU}c9s!a1A9^NerlKcHLw5d}EZH3RoMfNN7*Nx4PeM&Pa?_)IzXehWGO zIx|i7^^o&Q;HYw^NFfB3j`1zlM|Fu{Kj%?gUp8roYN%YFxHz@l6UNU|lE8;C4{t%!2I3A$gXX^cUCFLOF zmUblvL!tkJ$mEaBVzPyFISzWXfopDM4^nIQx~FjY7uTU?Nq>I*BCMk%-8jzfmyD8P3)3TT{gSEFK!`ElTU~)bwUzY9>CB{eady^PhV)8u*HU z%k*3&nwd>Zr2}p zkeigweXcWT&$t#<*ECaR#4rexO>IrpOn0U|aNI(?Je~U;WH|B|iVESQ(>+AV%kk2DIKOpv3yo`PM>Z?P`})zX(Hi!%&5e1b8}l9jIF-fkl|Uq3(w}^kNaUBZOo+0=u53qzTf_BzM{8*8a)(4ZKy)KfJr%s zB=EA^EHZ6^_;OV|OTMMj$kiK~Z{u?N1t3nhu4_LfCf;8VQ~HXhQn?}1$P8Y>;X_+D z7op#XWBw1uG8p%wXbwr$MOAJq=ZIO{E5ZGSTcq2i`}5If5@%RP{c)g^v4sf{9Zg{7 z;8J65lF{p@yYZmqXG?XAn~mNY7twJ;)6IJ61->rk>PI$?=x!vK`7v>NH=jv#aY8^= z>ZNNIbhEtYoZ)b1TFJUrs&C;pZ-)6DV=$3>0%57d0v8;+WVF_m#h(;$3TB|iA432C zp4?6a#!>lVl}oY(mdsg0gnLV^LSkTcyBN7*WCPnSSi=@=nR|oHZu^3ee7bsdNiYY8 z3pxKFi>pV6t6O~jYU)}pDi|58+JRW)A%T5?3y7HMN=wEvxmpm#n{_LCGh+|nJakfY zEV91l+t;`yx9#Wl&gk#6nXW?P?r*~Jba!j7OOD7xU@$>PNBC%%51mTGS-#?$Y42{` zhHP!WsLoap2PTa7Dl{ww^eGtnsMl0_-3(}^($~f`{X0Sgje?4sp-IfpQd~m^WdW(s zkMo&{=EF^@=#Nj@0_Xkz63kS72K0c#o1VhB^rIt3n-i|E*%2m{H~i(0dzH4jn*#1< zGqw7{FbX|afQX6JR9rHFnJDAG;<55D*&*MR;h^O3KOsz=H?1fLBh!q+AhOJPYRGgR zAHZXL0FUQYMZV!L`#Li$g;63Kj4>VBiAH z0G@p$v^)c&+v~RJmuB2fsZuh^Ny%1JquxO8J=cl-c?bFu*^n7ia6tsR6{gyHV7am1 za_R+pFCKq(QJV01>Zhx?eA#xHaK!l&xRQI4h(1-=p}$0#rdxz4s&Buf{r|;%3y>vO zd0wA$y8HC&cK7YR-F@HlxO4B_-I<-)o!Pnf&aQT}TCIe%gQNv52us>UDiaDWM>ximPmEsR~KqGImP1pb}KBkg8QBPMHwOHXBz=#UlTI zPQUIvRx5)l(rkC%ex3K}|3Clte}8_wA_eyUB7RgJDK4bPrFcIM%&;eSq&{Bj(oSw? zK8cp*H8kSliWy9~C@H{*!v3=^*4s)s`X1`MAW*(2cE;7K6<>w#v~9q{SDpMg&EU5P z+|}2 z;f{Nk-+AfHx7^fxszti*`@);w{41Zm?+bsHW1HYJh4@w>>7e0L=lE|KEu_n2sK*H+ zKH>!9b%1P&IGka8adc=9)q+YjsPVAo9qd=N{;i2)*StzQG7MeQXKMa|n!y*tR^#A- zLq;Vus1w_&$7_Qco$Ev^E~wP;Jk&{0uehX@;~f7?`D+Cud<%X`Oq4Nns`y;_y4JrRPGtMO*ikS=+9$=)~}3H z0!WE8>T!5|^r^;$M&rV#8;2LkD|5}+FJ;dj5YG;$pUuLr@jduDKiPPo z(Rko|&<(k2-S+-_SAET#U7wl!-raZq-ud(Yh`3?Zb!=|mcnWZbsaS+l) z2FhcK((k1x;k6Vt9Lai4F~Tv=7Rt+cAPaTMO*gC))vg4wAM{#&%dCXe*?RZQ@mvIw z@mOT#PYjI@7Hn>MeycNAapS>itKN8P5Z8va`0g}QGN#tIq2EUUd_aT0$ODT@PCd|P zWLU$s@iN`+5YwZtp_WNVhZ=YYO5p20YHAd1<{JN~p%cr3qYNXh{BIaTeU!kG-az!v zM6ePjGSI8osIqfm3UC^Z8%-pJLqNxay_;={>1ABrv7DB^jO>Ce0(wk39YKUp>|x47!iK zKW??+w}(o$KHF9PT&%12a5kEX%2UL~-OOUqA!2TrN5?%B+!7?4$>!PSdh;tJYArWt zM7*ZgOB#)^71@5JG9QkQ9sAnX{_)*+U#?!L)sw(-+=?45#DN3XWo$KF$Z9L89E%q5 zRpe*MBW~pf9OuO$@_DQchPl0ZEEGx}!{2a}NNc6OSZy?VjmCcn8jXc|{pO@^L%ogW zJl`Rk^3q*_XZeO-p`QO@&3BiY#5s7!2OA6UK;t6b&})22gGp7LJuFPG&ejnJ9sK&bV{wR9HlL>+r=hpUX<{wE^K0&*;mPopE)f?om}TI5ouJf2u_nj`t{22~`nV zrs6`Y%5?e&wQH_hbBG8TXmL=iD#jyJXBw{4N*Ed;ps)3gFHlR>a^LJFfo^$^^1)ZJ z29OPDw2HvPWF#D%a7|Re7UAbI`MFh4GMsRK5TKG290+tXNlg6~A0Dg@s(kYEtiA($ zb>1}NxP7N()oSxWFkibPY)6S{&aY;&$2H|e&=?j(#6>i5AnH{{SVIgf8biup|JzMs_M^5s2EhxK@15w$voH(YWEZ#DM~5sd!xiKzsuks``ccO6Q%!I zKkjF7;QQhyOrEijHwt|HQIJE|hfz7k`8to*g=&$m5FM4V)Mf8e}f2*W}BYs7u9HyEnH zNkk0z#|_mazI1@Q&q%>5#5nz!s#8sUhYEih)z!z+cIByE5PROv={g zre4C$#krMPe0NM5DEj!~yMED+B}yNM%$66IV+-`sxM44w%1$|C&s2X$#7IJc>3Zp3 zwhg4X#*I>rqZC4YpHyBi@MiBmPJd~+N!3bbGAU@J+7-0^u^W%@y9n+xtAwNSIuslz%&0NMLVW| zh<^4ncO0G|%G40%<@_CnZcV-98*-PYUrPM(T^?{Rw@K{_V*ayX2E@K_vydHrrV5(e zU_oDaIvF!7L&E19YoRgy&$w= z2bC+V*u&xIDM~kl-1`)sed+){QChzQ4IJxGDT6@EnA{1DfGfCpHuq0`UdlNu5>==a z{yzAwy7(fM-?oGOKEF`7qy8XG0ydMJMeIrWdQ%ErCu5{7jMKSVc~SVNS3qN(E5#V; z<(_prM*SthP<#Ph^xl9@qcDUuRhl2SZb6s5ElqtEtL|BW(Utw{YAKDS8%c$)<<^=~ zf?Ect+FOnfsa}xG&E<4$<4J^Le39G17X@&3x@~0a@YEl0E>CB=%a{VFETSF#?F%5| z&=)AB&uc11H^WVv(Ev}wMoHtAqD?XNQ%*w=q;D6IL3TRk8QL61oY0}xW_9DKyk}p< zpXadN&Y>sqq;Me4;&Wg+`}!&Gm2wizt)I_F&QsGV|KT6bzVwrloAP8j{c!f&xx9SW zpjT(!t9&}0^->-36dVRxdXW-xuQXlXSHqN{w-3xxI05(9rowW&1uH&@v*pn&lNaYkx_xJ-D9Na zz9(#kp0Dp3FAv&QQWu_|og}gB2i25&Z7S`JSC%@~2|}=YD58v~2ayq47Eic|kt<** zskKT-oSH^<45!z-PR9#%%hE%yBE;oeyDPlDqR9=f#2mvAzthBfo zBs6CcjRVmXNk%9FiiUJ)+QB<gzR!%I87o<+d9BvPKu_)I5yyMsIgt?89JArHkGie*fmy=MEwNtC%)kdMOW@_UEb= zVtnpr7!C1yNLf3bO+d-n%5`{@nUSY(MLDIsPI)UxK#B-z%n{a$ak^6-1TFj$_O_O@ zdFEFCWs>JoXfitk$oEC{qx4_SI*gocvst5#J2T@twATDZe94|Xh}=UYY5jPqfB#y8cIX>A~JKj zhUCKK`tYa-f)OWW*#<`1bOoI(a(%ui9Q~NsiW;havRu~Zh{c~V9E|6Jg$k}bYmsWV z8r5nM?8qd2NYrytv0s&Ysre@94bTMNH{fZ4@Yiej!fV&ArTw)>dSXRvkjGr~D2}T! z+5{3*_R&_!Q;jV0$RAOIfl{>KQOo$oacc8TdXq+uen}(VzkOI3_3t5M7IY_O(1lHI z)8qf1Tht3ZqJ8No(QbP0J!rKz9;Suv*Cc+yAvfOXhqQA>-B*@Q#- zj?D|PFPCEdIJEP%+S8I?_4`?L!7Oh}`TA>$FWn<=*=X8%ecHXEw^t6Y>~Ri*Cui%% zVQFc3J6$%0(?MyKSy9|vA97L;#5LuFa;sR^y8ylZ-O8iFyKY}~xrmpP9gKBJea+MT zSQoe&s2jP@nOl0qM5 zf9bXN9QlPKZZK>Tb!}2vKHQG98ng)Lup-LZ6?wK=r^HoAq+Lhnz} zSw%}+Ejffsfqz2+Y{H`c4oBm zQtVY&G;vrIBhCAu6xnzu=M2={CzQ`B|4jLp%D>5C0>(nf5Kd@<`&q2mxTIJe(1lon zS%zj6_9Z+P(o3=4Fwo`F4!l6D2x3);7Y~XB1@Q=00K8(82*Zqc^(c3wz|XS?BadI9 z!rCXz6RV?b!`4k&Q9V~xD@--in0toG6P0LM6X%4crV%y4u5M{DTxUr7X_>Gyb*PCQ z55ph;;r4n@s|XMh4=>A_-%2rRDa7xsDNv6rWlwX}@c7P$Wy;L7ka_evNtYhpmGAP? zQ>D&ObRC(cTcuy*Byajs+h^X!AIa8=#H!pfh=v7@SBgKP6G*P-P3e>@#ez*4(8Y0#LcR6c|j*kXrXi(GhHI!L7h*6%#xMM_EA(7#5rg@s} zX>i>$p)lf3&9k-Z-PV=uv>|ID%<80Qrt}Gr4Y*~oSM=_^Zo6nm*y7>5LmFU96U{pq0K-)N`w8)y>yq+2)r zm7yCPT<&Ic{gTonlxDabGw`DF!<3`s*uX2i1d>?zE%Bk?ff;wnGq!qo5tY8h!>T=T zoQi2#mg_iIK^N=kY)jQa^U=4eGmdN4n|0H5W-=WhO`|1|X**LHj-^xo+G?_IdTX<@ zRP7JgyZ1}?9nJSN=%hWBdWJRnA;@#f$R3E3(n{ffHI_t-JENVXR^bn8mbQe>D(cdb z_Hia@%2{^?4XkiXZFQ#0jK84zw#bOO#ULYxSVl;Vx8pGy$KhB}3NB;JPg{H!cIOBN zm*78uEZk_`43I7Rea2>g>jpE~ZPE#C{Nlb@&9E?-&%N^at#ax+-kq-(rO&rtrj*~> zvm|?FIQ`BWgs1DQBY|o~mLkDwGu-cZcls|R^?FjNMR8cE20^vr`o8Nrm5S(GX1$!J zescWO@x%>}ZLGn~hmRbtR=ob9zE^Q(=CjWBYrE?}o673~|;`6@(|F&==>wO$pn za}`+&jg=L_ytA@m*pIKEp0OephPR}hdJBmoMBwGnwu49>AZmV6*8lT$NW^j1MTA|< z20BmHgfF7Z8%R<;ttY5m2E$$?Rgv|!Gf)@ z6~b24ehj*&arLTUUlY+E`eNy|Rr~a(Awf-ja$wj4J72dXhm@Mq6r~2WI@+OCjYYw| zosk#*TO}fbl>iFp+jo6}YyUA<`pAG)D~Z6zBU0WcAl{HQflU{iV!o0bxacjZ>{<%p z(iLE{#5aOa5ZMb{q;Ek(Qzqetq9mht$pzI9QFWkF&EzZc-)X#^H>tW|mI|clj{2sQ@Zc&U124%8A4cVKHo7cLl2=m1o~G(r zRyI&ZwAkCiwHTy3*x+_MmAic`UhJt^Y!1CNr_U=(%2^n(50*7%j3S`VkQ%xzED}U~ zigj_lmgGl6^dj&?S;r&vbr>KL=LA9eMi-Uo6n&c&_dAV4_4=Wshw4>VrO=ho7M6Db-}HiM3Sa?yo#g| zKaIwn1GgQhMfc1NV4r+=zN0NWES#UrHxBngGPlu-42HDq8ub&CBDn~zqGHfJLsvDX zaaA+zC^nOd?rVgqM2V6EXU_HRih=`Y4s^$VT4j}Gt$W+XT-ZC@nA@0p(56&3ahi!d z=w~`*&{Nt_$+~7FF7%s<9h)krwqr4x$&uexo=CX}GQySQD1Pq+0|76Qu&j>1&4}7O z-c$*roJB_>#%UjtFl#1kE6iYTXP_{H?hJDhXlI1=;SNoMn=6PgmAcCRRj$DIZb2aa z@$I@Gau*(QtNdlN@P8nsrC(ZNMB{9Dame`a&S} z-&d3k!9}5r2g0WY*OahVBz!*2_c$5HiCl%`;t09}2uC;L#385^xmekxc(4CJTC$2L=L3l2{bStx zNKayFLNRL*o9~DMhZ^^|B@XRFRVcbB_XDnBiyNIsWx*?03BQY~%^%|?UngIHdA+9e zMI9*p5weRHm4Kw=qr7!)ya{owzWbW3tl+nuYB4@|#m)NrP?$K$3mnxbh+GEibZ)Gn ziI8ECvlO}JSJ#rL2JP$78G)?p4MFgt;-o7Y4}@K@u8j2RAd-#o5{!IF9{iWEt9~=`n{7kWZI#?g7&ocWYS6CU zM*PKU^ak%%qj^YsjyI`iVe7jK4@MZ1tpw&e*WX&x-mR|rg5=H49~ys_}D9gXMu4j+V7ZhVhSBR-me9V zj*ImL-EXwU*VmA!GFeBMST8O4!RZz~S&qmEeUJxR6T`mvw9T)|Vwuy;Iu(@>Bcgu$ ziEYc;e!?hm6#W0q|Ko2n>`y%Yv*dqCaMFZI8^+FQ<+UOTO5R6HN12rarh@VUQ8pn6 z9j+8JCS#vq*}3y+D7=m|zpH(j$1NWb!~Sz}7x~ZF#&ghnnznHTRkSOHePxOkHRC}$ z2lpc&KHWWk*^jZ)Z5#I1MKrTt3`HmG@B2-9HOAugVx;~|V{zXYsej)QxqpPzLWeE) z>&;iztE0J$ZVYR0?nZiai2eCRZvR+*7hbMI_eFr>|7;mgh~8ZI!(=fbgbzGV)_XJb zBq(TWzaswo82R#-zf1!Et?#QoMjlH(^@Zevd3l$VBg#my>Yh_B2(Gw+QM`Zz|Q-6qwht>7gi{r>_jk$}SJm^3(CpFJL! zl?YTw=B>1A74)Q;ck#FCF4x!#2j({I3xk8hcN1&anI|v(MPUo)gVT4P9*E5sEK4`3 zrGf(P`oT<#fb{+G^J9tvFdY8o8LNM@|8!&fk$>oZlk0KgQuX+m*^(80n7(IlS}E6O zB35cn2<_1$$rv8JnTXAh%TrUXa>#HVCwvB7h=zP1OabHChpDQznP{H-vnLoW$?+0(~gqyEhC>O)0y^}Nh6ut1LIRa&C2?ijgFUl74Rp^#uL9>7=B8F~@ zG3OW(FX8$C3xk^>oXU|TWU1=a$K-tAH^Mt=C)aBB`)ot6HJj!`u4#L!N^Os|4Li7|7${gByg)^x*upZ@x)23nD?nHF?&aa`3*lW5Nt96uR% z*@`HI66#$FW2Z|oveq)?!x3x}Xoj^J=4mTzeK=mf8I(UNnEO9aruu)B@wnq2;B()# zG|AhK9R7Kr07BhP%-N$w*ntmtoybrR%<*5_i|t=4_(u*){*nIFG(Qz0dU~QKOGW4S zBb-uKS8>{2T`e7N7mXk9x+srJ@!1e}GrAt;W|({V?zXQU+Z%BcvprK?WqSi|{uA4) z7;r55V#>>-D;1>%Eh%{fVHU(G@z{_LIW9>I(a)@w{41kwjLx2|oIN`>j5BA?j^Ot@ z#SgMz7-MmzIG5g#+8@(&e3+5CN*{d&*75+kX~b!U{%nJJu^g~MusWcDusWc*wjJYf z1ODoA7miMz95ExfX~fv*EFQAamiSTJgF6zBZi3U7%Xg%=izZ5KiX2NmE_qzm_1b zW4wsN%I#<&7~`rR5|0bIvMv(Y!rxHX0gz&Ali(ttJR1*j`EW&YKZ&S~aSd6a==yM( z>M}q}mmuFf*Lxpbm~o7D)1A}TDz&PrF8J>3hb#w;0IcR}8uuHvUK^MyW8^PsWf&P| zwW3vYM-LFR#hIl(VKqFLTGhbmB~1gSo1Q}mL(1#Qa?9(GRlhzkd911GZT>ubgT30p z3P^ccV)4eQ*ojQ4+6Qj|<;FLd<`}J6YrzTvt*Vnh(M(3DW`JC1YLrxU5!d>sKUMw; zzK@Br0y62ll#dA(lTEA)>0}C;R8&j4^k$S(;S_=sDVoo22I+Hs#L=%7=Lop!QMegv zF8v#?jmBI+7zGM)Mi|~!$7`GLGI$^nvaeW!7nnJ`9a*jDvB5nR%5{x$^|%J2DkbQw zW1HX7(blG0+M@8fw)9QYV&uKZb<50_Wi_FA_`lxQkp!2hOl6h^GErYeKs=>k!r(tB zJ0s+ss*-Rc%2m z;ld~UvX1d}bhA=|oUSF@pZUCTYvYSC8P9>lIRpTRk2V7HpByWuNHh)TV% zYJ>p|Lp7|q3>Uwt?$+Q}NCV%lh91;2At&!YoXQSMDF^w2uw+kxiKis>9FM6FQ}_6k zg*^3-7jT)u=<)VSyS*}jY#!MbgrQ=yO2{3WZ);ojeX6#Sf-v-DaX|E~^nuAr`)zaS z6LXWxgxsmwzIN98ZCzak?X&!xqA0uafAmK4U-oHux%~dNj5vdvm&@jTQvLsbQoMRf z0C=2ZU}Rum0OE?8jfdm;ZN4&aGwJ|E7;02EG{ETpKmR{w^kg&!ayb~7K&k;!1`J04 z0C=2ZU}Rum)L~!%k^g`Gf6VB~z{r3CI2ZwDk_3tX0C=43S=$bSAPjZ?v;Y6MiNc(V zQIOIW4vGm6jfsO^PHS%)hGBTUpGwXyz%Vj!@oM88@XJcTxl zxmYX3n)Bl(zlsi1J~p}bQnsP(tI505HProfJvRM&iC`kklSk~r+(YFf?!EL}D&L`V zVGfTN9#WpI#v^5mipPxC$%_w$KU}`O-(S=>fzE9dFHL{W#Zd2II!TDi`>}IUep>l= z*j!!4e3%8Ne3{PNA0u#V%>>9*-gxJ8y?X+hyGDgH#D;p%BEDm+5+Zb z{Xy7Pir2PB2z&n2lltu{ogutT{F#au3JcG-iky$ydn9Xxa-R;Ly^Wxj+5L%>O<|Bb zM|gQt_#a7#Z5Ea6auRyfz*>qWtFt|m#I{;Gm0*8IZ>!k@hW$X6JZ0WH%lQH#J$Z!y z0C=1|*L%2EWAg^^`L4qjLJ>kQAtWIxIv0vi*$7cO5Q<7~Qqe(_3hAtNN{S>2QAk3O zN-9MNQFM^R8;THqAOHOJbCt`oG`%jKIpfVd3abQIzwscdrGU6aU2bW?CBMyOICS(6z z=SP%vU$$q&q3{mf8*$joh;joX4lm949|7ZteGx~>UEcjsgCmYc`DnS1fn8xs#D6-n zf%_BZ#~-7$EUs=4fLj= zJPpM*DrWMX*OK9NzIx7|9&v%|1+ya>$do`)35gG>0ll@z`cR*jWBQ2*N)C_vc8FSH`DGG2|B5#6D>N|WBA@` zhHiC!n_9cz+tmzqb>B^G-Eh90KDXo9-F|oL|I(?4Ts`>QVMgwtVNbog(|#}9d*jnv zUwW(QE_L6HLtnW4aO~&4zu5j}Xn@#z)G*K--P*s--QSPj{qrJ*z!-x2 zP%%Tz^Dwy{AkG8sAENbebNev8MyP$HT1V4uw6ig48f#7-f%yoW@%T-^VS<n8F!ruG( zxso=ka9J&8HGXSgtQGSi+>cy8!uw;IeB%5QHGQhS^?JHNuQvF7e5vlQCb$2)B9Jmvsa!!aN1}8Z}!i=C?x%&khO|JQMD+P zst|<(%17bA^-(CjJqia`jlv<7qfn-M6v|p3+9?W$m1e`EP_9N44!1sHWfaQKj>6Fk zqfi0PvEq-N6NTeiMxmnE<4dvSQ8-~-6i%$j_*HVP#OI`DY+V#ihI7iWC{%WKs{1O= ztH3gj;v z4bE=l+fgrWf_F2YTUe(yQRuAKo$t{4bmy zxb_s+6URH%)=PXZ+>YJ4 zQQNz;e;2={@+?#1axu%*{T{#f-LHhblD4bxTBVlNus=}y8qbflc&_F55v+CUS?4+M zvHefkXEfR%-&eS9a{jg7`8T+IV|F*|$!6CrW@@Xmt>U)9-=+uO>dST-Z5Q{Q{T=3e z2jB1I-Kpjurhm}! z&n;2#tStN`=AY@2#IQ&TrP!`W68GLcldK%;$JRxXmuJP16qR9ZA}Q5{EsDfDXR?2% zNDl1C=0{T6y0rB{OCmXhZ<(f%l!fn|GAUO%lEbZ!Xc@_ogCp^5O^$|h%FWI%AZQ7obSA`*d~qHs7Nl9_d@zyBu`WIUQDw~;9jD(OJO#H z-E31N&7HTvsRcc}%O#iLU5r<;JjHx37k35RE9Gu!|0-Bl^SP!O+Ym{sl1Q$#z7BS4 z*EZrjN0YWaBWcIK9gZFFzhPV?H{#Y&u8xx(;;NQ&OdtB1Vey1&wbf(>{G{1Fs zB>tTzU8^#)&`ob{7uTKc-r15KINgCmPkHW?x0m={bnLD6KCL3T%N*P#=iRXT>SJGX z)KAX-6`1-5;4(mtdvF-2ANQ*NK3WWtZ;+l0R@?n%V2JvM&~d05hT3~T&Ie&UB!0NO z4_iO%e1x1M_>YulBp##W9i{fs`ZUH&je$QF_E_^V7S1^L@W-3e@nR>azeGwZfM;k*I!&410@zNMFM zxh~S5#eCm31MldoSFU8qzgIQ9OTVS&X(_*DG+U-`%k6m&OjgLZ0`B{8-j{zRpH=o& zsdY83AHe+p#u_}=%DLA4hxmPj^Ex%GQ{%_#_(V;gT7N3`Q+lk&bG@_Ae7wC}tC%Z)p1s?9KRWHji8McMF}jdj4$H^KJNSGc%sG$#%2! zojSi$=MH{5aQxnk>@>4Gar!|Yew6=5zk&a$ahKljQrAy@3qSMw8NXlf`~{cY_V@7p z)%^S>@9%v7(1Sna+^6QhJmdZr^ADeY_D1S^KP_yDG}#nsRxi@LC9_|&F4Fx5Mp~*k z(*3JOdO)j453CVs>5OfN^q~2X9=s^hL&il~hF@9hL)%1p7~gW`B0U`Dk-H-;&-dsG zksc%d80!k`KRqKowhR-0-0Vmzvg5^{(4Os!^u&3QR%#mQNphXU_as;+%W+C$#;*#_ zr*)6iH+Xt_u<4PW(TBl4Q|#GrtFMo==E6wN>Bn|PdTvRiwK_#wyJDnu#ME(K7e+nn zdgAM;xqdY!wt+eu(xK6)NY8_NKD)r$vo&puM`L(R*hMfd=HpqKHltlLd(Gu*fp-ho zmknd~iYG^UxjL@s80nSe8J;c0UB&0Bm62Y}TB+AFG`)@nt<`vaBQ`bCwzO-T=R2C8qA1X@3jfPW0@I@2%>(ZBC?J@asyeuDEwy6KOZG-PC!z ze7DQhU5|YKrak!etjy@$OMI{Gk@lV$sb^{0$KG8yd+$v9>T^GQ`imdXEYf@Q@*eAf zrI_oz^t~7N`^?UL;s?=n(DFzJ%XxnnMzm^#vrN>;H=338FulLCGWxQU|k5}P%k4#^4zCiu22l^ zR-}vkzTS3yhn7q5TPo)=G2Rc;_vpC-*84D5(rG14J@e94;#bq^1A9Kn(+~CFW14-8 z_b1LirT2O{*W3FHzt3s&x!5n{{6dZmt{ddt;5YH5^DpK3$}DY^XOp_VHX~oF^&2z2 znZ}!GvPJ*4>ho4Ho^9ziv-B;l->PvtO}>NkowFTk{9f!2&i_ZVU9|m4?LXu83)^ju z_u#fi+^@L*hRa@fznkqp%-^4$OZ(*Cr>4Ke{q6Vhw;0c}^q=*SMKRkMSz$?JNqe?1 zvUGN2S!FgevV34Tsi6k{nx&Z>=cw!4Mr?XywfNTB9a(MhwfWbZ6d4Bw}HG3@N0lyL+eK3 z8maxf$&sDU_X4<$heg(8U1S%EyJ%5lP2pY)^HRB+(a5teYtE-RPAzb4AbR{E)2l9UyTa@W zr(4U&Zr79U=H|b6_7K-&OJsMLiJoe_Q_P+Gdg)bfK7E|`(Z9RoyW4qR`TDB0AMX9l z*8sc*=+!-DVW9rp`>%<=Pwxkr%fV_MtS9%=#rtJ8)SL~a|493g z)AnK5Bh0`^{q+r=jgn)O^(eTbX*F6+qxEqN{$ptFT{9c!ew^3|t`o$U$X^0`qV**D zOcFC0{$w1cRE_L$+@`rcp)SwFY&tEUf-^&(W~k?B`ps0|OqkEeI}7Hsc+WN)&(mWL zPA}5>CHlO?f38`Xr*|)_0dm0%r^8;QcUr9o9nEH^jf8hBw(_ zeS3%QOT;Xp$Gdnf#c?Sv%j8=o_cAlLTs__iv*lvmGso}Yvx1Lz!fcgU^*)%b#^nRC zYv`~>jce7m7LO0beW;#~V1EQ_o%4^ye?s3+;jTBYpYi*mQ)FNIoqcKMzJj$8&rN3N zYdU?ye~VhSz}TvvTlHvLEoQF1^?cZ_Z@#Ou@940DhCAf@-Yk6&Yp1$@!1+hmKYB*| z55_J%-G%#4>igMz{vy{e=4`j#?bhc#wExxqZ|d2rKHu5dUf93uyR7A}`t<`F`^vFBPmy4jp%*eoXF3Y=K|+VoL^Kg@{7e@IxzBPe49;;yg3b<^YMJmFKZKdvD%91 za=G;t%_6^&o>$`6QZKH8do`Zd!0~RGUyI9i!y|9qp2^#qPa9`#;9l=~y*ye%H> z#I{#!2R-iK{svdi*8B$A-`J0>kGvx-JHqRzS2y8#GrwEp=+v0GcE+u<^Ult0H5a$h z={D;wX2UZ#?`p5BI=hLxosQkjV0YaAt4}@j;0`%^^7G8idpYZEZu-FWtj+J%v%B%Q zTd(`lt1k`u=|?{`^w;11W}!c<0qVcU{y z1A67XGk-|E!^J%;&j{L%gf|L?Z~1(TI>zepIJG^3(|9$FSH}diUjnPdyicUVM72E1 zZ<6{Z%k`K(K1SauwD640rUv6_X6X0RdiS*1nF;$DeVzq( z7QAQ8*R%GX-52?6JfEY(HP`ISOUmv155H|X<* zvp3cC7LDKXyI6$7Vlj)&#bTPi?fz}pOYmRf{9SpM@?YkUS9wd-oV^G=$7K%WoH(i(AV+^^N&wbmc;Sx5Je_2(0uKBe<|c)q>!&(!fb z?w_me3pu|qzZ=B+{?5OWcOyMEnwyQZ+eEWX`tda$U&HuDf4r;an_V~4WQ+Z+YT7D( zn>^p@$#xvJtL;13-#h!>41I4_cFOxB-n;xZcDeop<0lwD)8c3I`!n9Z;O*Tt->uF) z?)T94SAF```Zt_@H&1_9|0(Z2dH&M(zvTQ|KmKVGMNuz`3XP&DsT4)&zcw$5vQbf# zSB;{g;waj$3|kXLrRGP`{@bJIfXQrq6dkxTib~IpqJxG-(ZT!`9s(eAR$pk+klWzoF7r8p-Vc7 z6zOee?KrZ%)_M~u4JY6voPZN>1Wv*Mm@HelAp7L?_h#PgS~7qee8IzMdAPRwX?1YH z?vJ~qJI6ipz2iOtJUbpxe{t;N39pU=+~UX+yxt|1A>JK#aD@-YUFx5Xd*pA&ect-x zcz~hjJNB{m9vugG@ZMsjOk;FZkMcxS%}QqbBGN6j)vl#(a#e|GIB7XcSxFrkxe@VE zG>2?vOe#{XO0iItkwu|It<_E@CfpiR&&T7`>0zQu#851QhL1*s8YARLs8!TfkjSt{ zK}VmN{oh^lB+Ykjdx0rJOwMGM%v3fP(U;gT7xVuJdIx^jjH*G(KIM!;Nm|(KX}Vx3 zDz)`?R1)eTwl-B`jxj53&4>2(@)y9?b&vo60C=2rT?KUGMgr~d*p4BzP-afsO}5O; z+$)o8D~TK1axFWsWoBk(zA`g2Gcz+Y-H@b_o!j?f{r?9wjM~}YZ2BLXZPI@n00m>bLk<^}VC`N0BU zL9h^57%T!71&e{j!4hCe&VWf~~;TU>oosur1gQY!7w-JA$3S z&R`d?E7%R}4jhmN1yBSo7z9IL7?i*sU<8yw1yq3tYG6-L2R>+kCKv@{U>r<}?I0PID4g-gSBfyd1C~!151{@2H1IL3Cz=_}_a56XroC;0@ zr-L)VncysNHaG{I3(f=QgA2fg;39A_xCC4ZE(4c?E5McDD)3)$HMj;`3$6p#gB!q& z;3jZ0xCPt_ZUeW2JHVabE^s%v2iyzp1NVamz=Pl+@Gy7;JPIBIkAo+`li(@vG%ev4dT@QX0o)L71UH78z)j(1aC5i?+!AgDw}#um|G;hGc5r*R1Kbhr1b2qJz+K^P zaChjyJS@N>bm1Tzg2S)`_kbg?3@fk-Jy?T#!aDR}12*9(9E0O<0?vYa!M))=a9_9| z+#enQ4}=H7gW)0YPFFN7Dti{T~kQg|7>99{vhgjd1;!mHsm@LG5sydK^FZ-h6&o8c|+ zR(Kn{9o_-&gm=Na;XUwPcptnUJ^&wt55b4wBk)o97+04 zUxY8gm*Fe$Rrnfw9linIgm1yO;XCkM_#S*8egHp&AHk2|C-77F8T=f60l$P_!LQ*r z@LTvD{2u-Qe}q55pW!d?SNI$J9sU9Tgnz-m;Xm+SG#dg4B7`s^h$4nKN}wc4p$?Qr z8I(mi)QP%KH|jyXXbPH&rlIL*b~Fc?6U~L@M)RO~(R^rrv;bNVErb?Ei=ai(VrX%+ z1X>dHp{3B$Xc;sE^`ika6D^CDL(8KT(28g!v@%)+t%_DdtD`m0nrJPwHd+U*i`GNy zqYco8Xd|>S+5~NiHba}EEzp)|E3`G*2K@(Zi?&1CqaDzWXeYEY+6C>3c0;=(2jx)# z6_JYu(GVI&CA0?`L1k1yRpg->+7s20j~b|nM$s4=M-ylk+6(QC_Cfoi{m}mC0CXTa z2px(KS+26Q933EhltLARpY(Cz3B zbSJtC-Hq-+_oDmI{pbPoAbJQrj2=OcqQ}tV=n3>BdI~*_oy^Y>M@1pn6`{)DoA^He?j6Ol1qR-Ih=nM2E`U-uGzCquj@6h+? z2lONQ3H^+ILBFEk(C_FE^e6fY{f+)X|Kiy&zz`#hF~Jlw%y9xIaSC_fG|u2G&f!kn zg}ZSN?!{B^R6Gq&$Ft)(@SJ!qJU5;P&x_~7^Wz2Zf_NdkFkS>NiWkF+<0bHtxDPLd zm&VKB8Mq%0;F)+?yc}L0uYgy?E8&&#DtJ}A8eSc*f!D-q;kEHPcwM|6ULS9OH^dv^ zjqxUUQ@k189B+ZQ#9QI5@izEBcw4+3-X8COcf>p4o$)SsSG*hE9XmLW3%H0~Jcx(z zFfQRe@CYvB3a(-g*YKXWj(yy~O+1Rn@Hn2pv+!PcZ@drQ7w?Dn#|Pj8@j>`td*zlLAO zZ{RoaTlj7K4t^KEhu_B^;1BUf_+$JD{uFBuP@FgQQ7@WJ!*6k}lFsdPpys zLZ*^wWICCh%t7WPbCJ2pJY-%nADN#lKo%qmk%h@3WKpshS)43EmLz>-DY7(KhRh)S zWPr>h%aY~D@?-_FB3X&7OjaSQlGVuSWDT+=S&OVq)*_J9I znN&!Xc%(-5Bz5AG25FK}GDgP91erzlB72j4$i8GhvOhV197ql#2a`j{q2w@fI5~nG zNsb~%lVixSRBHiXxJGq10N$w(dlY7X$r{B2SZN$g|`*@;rHgyhvUmFOyfutK>EEI(dVIf0KX6zjQVVD5QvDN+_j_a+;t?nxY*vO*1r0bF`Co(Qev9d+8K9 zl}@A6>Fjh4Iwzfr&Q0f`^V0d~{B!}jAYF(qOc$Yx(#7cFbP2j7?W0T4rRg$s2JNQ< zbS7PvE=QNAE6^3`N_1tq3SE`1Mpvh6&^75=bZxp0U6-y$*QXoM4e3U7W4a05lx{{h zr(4i1=~i@Wx()pg-Ii`gx2HSM9qCSVXSxgBmF`A&rw+~20xeRP4$>hyOiOeRIzr2| zLaWrHHM%FQQ=c|ylaA6cI!-6(EV>uno9;vRrTfwS=>haWdJsLB9zqYLhtb375%frU z6g`?ALyx7$(c|d}^hA0RJ(-?DPo<~P)9D%XOnMeQo1R0@rRUM}=>_ycdJ(;tUP3RW zm(k1V74%Aa75y*0nqEV%rPtBx=?(NodK0~w-a>Dsx6#|_9rR9m7rmR_L+_>c(fjEG z^g;R%eV9H%AEl4c$LSOFN%|Chnm$9HrO(ml=?nBl`VxJazCvH6uhG}(8}v>37JZw( zL*J$E(f8>G^h5d){g{42Kc%11&*>NROZpZ4ntnsSrQgx-=@0Zr`V;+`{z8AHztP|6 zAM{W97yX<5L;q#7F~A^03^T$gV~n!|OR^N}U}=_NS(am+tc!KC9@fjIu&Hbso6cru zbFewtTx@PO51W_G$L41Xum#ydY+<$tTa+!v7H3PaC0QR^iY?8SVKZ1i8(=fpvTQlF zJX?XS$W~%2vsKutY&EtzTZ661)?#b3b=bOWJ+?mEfNjV&VjHtf*rseVwmI8^ZOOJ` zTeEH0f7rHcJGMRBf$hk4Vmq^4*sg3hwmWlJo)uV;xonUPv0+wXd$18!W))Ut9;>lE zS)KW;!J2H8jj?ey!Dg|&*xqa(wlCX{?avNi2eO0M!R!!rC_9WD&W>P5vZL71>=>hS6yN}(^9$*i$huFjH z5%ws1j6KetU{A8A*wgG8_AGmjJ>c(ldyl=( zK42fRkJ!iT6ZR?ljD60&U|+JY*w^eE_AUF4eb0ViKeC_L&+HfWEBlT8&i-J3vcK5h z>>u_o7xO<3IpUZTPC4V8CwP*lcn44O4A1f$@8n&)oA>ZuK7~)^)A)2gJD-Ek$>-v8 z^LhBZd_F!uUw|*j7vc-^Mfjq8F}^rof-lMY_)>gnz6_ti`}qK$$(QBJ@#Xmnd_}$z zUzxAMSLLhm)%hBHO}-Xio3F#y@4|QGyYbz*!}Gkri`?ade25S865oT5@G`IPD))Ge@5$@j=MCQE zqkN2y^9eqS@5T4#`|y4Fetds^06&l)#1H0&@I(1w{BV8*KawBCkLJhlWBGCXczyyu zk)Om*=BMye`Dy%geg;32pT*DS=kRm+dHj5S0l$!6#4qNT@Jsn+{BnK;zmi|Y|I4rD z*YIokb^LmM1HX~q#Bb)e@LTz9{C0i^zmwm^@8+)1OJi##DC_$@L&0F{CEBb|C9g4|K|Vje-pDM zKmyK&X7mrFm+32%>V>k~H&`l{dBBA1@7Z+fp{!YYM$C4=glyXmSh_!EJ77Y#Z3iqp z5VIXHA=|bCmYx~29WWu=wgZ-4HfB3uLbh!OEWKRJcEE&e+YVTI`Izm13E8$Cu=ENs z+W`}@Z98D;6=SvoCS==oz_?RrltxR9iC(8vua%vu+viq?N>$fa_HwOiIuw*Q0ZTe% zr(RJSQBeH4<4%WDE)7-t@?N9iRSYS()rMP7XyR6jMy`~K#j=~y#BVtDhOyG{YE+<_ zGtuRgYr{_7ZS*y3HMd@Hd=Y&kA*bA+PQ{t!RgqIEGN)Rsd!-^b&;GPitM!$t#Ztj( zcy%Ng5r1X3!>JdBOQZUAm?1f*UiZfOR$Qj&4)qniv1&{xyMv8RTd0?Yh8r1MY1RzQ zJ9XuOMWyp>M3v)?h&OA-uu%32BV#4sonpAxlnK`=OW*Ab?`)IjuoM}%ZF|b(W^GQa zqSNL?n`K+%IW4Z<(GGU%|1oTLWCh&rNE_x_bzAUp<3nrm zb+*YlOR*!PQ_6}=YqEB>$;n7D<)iM_Tqh`db+^&1>$L8QDJoc#SZyia)vkBil8R!? zu@%Rzc0FZD(==`j*S+S@aNn>iDzS3cJ&8e&)|xdtcG(tjddOQ-zGpI%7VB2bdnPkU z$Hdt~)|P0!lNz-;u!3uKpp7zdHKHofqbOP)Wm`lZa2sC`nsd%Gq;AP;J zYToJiHMbxtgwrT_>b*K_g*(1z*h>BgbQ(!#%&8YmM}7tl0v5v{x8ZG2Nn+vG&3h&UF9+`fTg5J%07JafdBXO0+o zg_yiTAUiQnoWK*&J=k*H$c2I}7Yarmj(IX1c;d%oKad+0TW(a0JnGreatRPZ#sIM^Wnv6??G%Zol@rMKZnkgU^6pX}6MkwJ!i%c#qFQuHI?0$JqDWRpi2RWStuEduZ0I6dE}1b> zCaz^8DoTCLPlP;`cl;4odqg$v(2xEgctwmjV2cB}ywebsXhL}cM%y^ys|9uu`?^ z)>DSatP8B^(RyIbYg%sffYuPdF;RAdK*dNt(8o%}#xT{SCoe{}MNx$MrF~`Yusa=#vr05)$#_is~zd7Ggda^wLyw z@hFL|FC!lApqz`DG8@ooc@;e|XB1A$jlN;QOm%BFnA)P1#oOpsyG`%0q|nc7i)e=t z_?3xkNkPlyl57Ff`MT#6MWh>jwNf<^GT}muUSzEhBiD*3?uNRecgqH3uvB*kWgRr! zcLtq$N%-D0O%G8pm2VcJ)?HzqZw{HBrYYL%W~r-R|MyT31MmPD2Nij!B&s zo6tjUTZw`Y!&vjCnYb4Drz&m8tUfZXMOG@Ms_7&%am}(K5_GuLiqxVvi+b9a6!}pX z(;Tyu`q3{+V9l4!r)jhd>yV%+TDY1V zT^b@@qHZ^cA(aM2T@T77ztN$nD0#9yO)65VI76}}6j0jGNRIABLe)iQsK#DuzHM=P zQLIf)MvC!6E$CQ&v@NW)$;n8`X{c9er0uD;U@v{O>nTf0Yuu~_1rGfR{iI8T*+*D>=BZz81HPVSBku@TXc(;No8$&NL zam}JS8$xO~l5x?pq-UfpmXv6PElY1}*lNBSQtdeMEE#bfm@Y)&OJrL_o9pTx@#sBr zt*UJ;3Ov`U+EEDKCEFquqJ*w9DOdYhh3YuTm4C==npdsAjLNqVle*Rc+RC zkz`h&1EJ_O^JP~B(WsJ# zEH`d6%gsfw-+n74^k`gG%QL~Ge|oD}cS_ZuI<=c*TSOCJRE|=XU@TXH&4FaZjZs*z zk`XsXVLW;*E(-AIgq`P+nv4Wv7Ok+SEFm;>%`#ES5=_{B)huQuBW^O$Z&vM06tq*L zW-Tl#9kxOg(Si78n5eLpCM-$3gI9FT3X6uS*~AiKIdaU(T|~DamxW9oMZ8uv^WJQW zn2fmawcM;!{k|cm#tatEN<}sFvcK_l9GM|Ptcqwf>ZO`n#F8XcA0&OO(}L%Xlw{0m z6TDDsDwjxrsfD^*EQ!&zZ2kKC^1+s3SGztfE=3cd?nw-Cwx;tg5^$mJ)e_>z_eCwK zCqvZF3#JX|kYLzrm{-&!A)j*Dehd|4yU?uH-D+W?FJEftBoBn5+`+Aqq-tR_Vsc;;GJ9b(6lGXyVKlDj)wQ^$ z7DihnxiA`+?1j;|iCP$qOKM>>F6lNPu8GNETo_Nsc*NAgXvoyUXvlQ64QaEM4DmP* zV7BOvmI`v8SQp@A!~-MWj~fY|DVCg}x>M;hJMbY54F=){104cYysBxB0;2XM4M`QH z=QDKkqp_CyEva8i1C}(PrJ0sAQ%lQQ(z04w&XSfBvGeuLHI|6UAFo~%vGc>Wiy4wL z&zfh3F)2&v6`3SKl=ah9zVa_G+$a(L;(v zrQtzGpD5N$vyLU=qI=Kh^Rl*y<|glrcgSbi^d%wDDXmGW*c==*^_6POU9;ee1YqJX zFFJ&zD+-A2?TLaZ^=tA&V=WC>(g1gd%(y~5O~Ra8@%AXmLo0Qi z)+tNqHCT+bswIEeq*ks~H9}F0aAJNaVY6nxanHgI|+`Nk(0=pBz8Ov7H_%Kp3kxWLsTf?%`92yP=N}0H3B3N~s zqUR{v5j2ts&##nB*3W4R&6-~-y3r7J>i;oJS-N>IG2|F3%O#@Ndqrw@Ak=I1l4-#* zam~DXBPfN*h#RA^Qgy^Ol6;z59d*m1g0zmmyC*T2(xRCjxU)^pMT)8EmJs=D?a{=w zu8>Bj5Mt8wkXe0)DVCF%M2_RHW^KsCwI~8%Q!*_sSx59HF-XU>$VSbnxjK8Mw`h@n zJ(HPa;$jrPXsahCML|X*=1g46hScojM4SgO<<=eF#F%PKUB4irz}?2MTd%s}RY$E6 z9uHVn0KXCCOETh9?L4y&ShnlaY{~Bax+gKn*jjlg=GH4ToFT8;?$#K@;$$ygx9ihw zNpw#7#GuZ(Nla3f$RutS-Lz;m%cVjoNHfDE@I-wUi8~S0@d-Nz6Cp(cCB>iYjzoEo z&@>f%P_(4-&6{9QDyt4CwY>Gz|6@4&B)Un3-bsz-h^g^ZnKHTAw749l zQuibV@rXvL*43`ZtwyQX)vm{57N%-vn;f?orgCSS91lDiYjw5jEmp@1lUtQ~Je>A4 z9SmB#&New7irU1RBow8`{S24LI@{!_ZA$+neky%>Oscr@(uRJ`p2}RuTyKp>u|kP7!Eg2dM7oCr)a%dHUspoc0Ha{ep!qp{YjEa8_X5g#PHlHigCV~ z%}o1$rt$O$uwi>J)2Qf-p76>5hqWDN=GdNSh1D6HGb zi0c+Qib7b26Cu^EqdJ?6xONlP(L_kIA?ml>D6SL4u7e%6qFqLHE*WuS6xOk1#C4|_ z)F~b?onlrUN?C%Ad{}1^Aq@OjmEzs5SoK^f!$!xAWm>Kr9eNabW>Le6KL zLMkGq$RJ;-MFs`SMZu4e(TEg1oxcGYkBr=LHzGr&!N}gQTe4gYH!9_b?ct0%k+VH& zLs5+O@GWbikXY7yE8G!xA|jQU)+<$tmO;^SQt_-;s?-K-GBYAxV=yA32wP;hW|8WU zMQV+-O{`FBeldz$&5Cs08H)_+`N+L5hRYTc*%I0Fha(UCJk=3pt&)7x-_H;~28Ky468LaoC z4Y6iA>6k<{6CPBDT)DtdZD4s^H!)Z?_e`)vsX;MIteO1|jXU(iT)Z$uKF8ep4D$@Q zC>vf`ot>A%!;~Sqsnl4thk=2b*c$AMLf>A?tKk5t5xG6)i^N}tlM-e zG$t2|3Z5`3G~8k$)UZTo$gSjt+^V{cP|25unqJdS8)49`I3ni_lQ=Mui&!Ex3~SV# zsxOGAPKT@aH-rzF({dslFCiKmZHy&CL!|~4f5XkZe3YGhW~l7tMblStMPu*yJ%;)v zr_X81Etqo2nWjZ~LqaaB`ChXztgLiv1G(!Wo6kY%1yLGRzx}Bp&l@t`71fvz)tYK^ zD5vK6O8Tt@PMUbn>##Ubl9ngw9XF8n}#KkmAVt_wYbQgN?sS& zRy7$3+J#bmYu~+9?Y4zr-#xB%NE+NfV}{^ic`Gg06Uj+XbsM7ZHCywRke0X}-cbx# zMgn!BPFJmvB7p>}lynM9l$3`jYr|gE^%eBRP+_#r3{2_OHC;%oBXSzbb^V-%(RqiI zB@l(P>epI9h&WZyPY=7bXqhQuG5{X1j$wB^v=b7ww_r$0Uc*qk@oqgCV&S{z*GdgD zmgE7;4SUVHTKh5gk+PBC*UF_vI^qqlmIzr!AiXtck~g3^jjUr7mXOsrT$fEoJTUTt zbNLYujZ7&^Mtq8ft?Rg*ZL)DA4UKnUo0*KbiF}mFDN8W!!f|{u;>MkIzQ7XF8k^G3 z1Jc z+)W}1cBo(DJ2NCvsusMVYN_E-S-qHbz!G<_Yj4xDoU(V&NnMvAqyA2a&f6y>kWk1HN#x1 z8hWhCWJk!nqMHqfnP-Jo)led|D#sF`x4|?eG*!n^12WDG;^yfKFyV`~TZAmSxYFQ+ zK1df3HN;|urAC};a4(i>%*Ci$cd!Da#b0#ZjR%aDMNM?;2~qlWslyVb%1%vGV(pp6 z8PPM!yNIG)l!KSFre-LUQq0V&43N2w87*Xi8laHpk*x)lB>-RwATWUSUqEG3(4_ zi>~4$T>gl1T20DB{^p#ZhUQR@dGiiiOerF|Ix#e43VUVkfxIs3ClqWr{)jegin1fG z5QNPhRu>k^&7q;7y19W=Tu~m?3HN>{lue zm;k!SA_3B}{)Qa^4_HzHIV=@3?uv-IFz_2*(W_EfkDHZD#T5fA*}>~{4XH4%c=d^N z#jQ5`>UT{$zt6}RE=idm>h zOHgSBhyDYG1jvfNy61c9%)3+Z6CoESVwA5gxqD90E%JaTE223wUj|Z;S3HrAO)(1# zkKbh#QrWJ1w1{H~b0Td7i5i%cB?v>gLlZL$1>sZB-4X>;>erlH&{#_YmNd|*m#wPu zFnV6Rs9VfhiY$l8h#Si_(`Ly5k*y@E?wGIkJF`{Ur-=IA=Z}>dh2d;fZXQ^RXA#dR z7%ggrRJf5_=XJN(ROjY+wW&)q5`b1mOU06tsE$_5)kBFo>}|u4sIi(M89Ap6&f<-_ zU0zKM>BZEiXuj8xj!9H9QK&`hBqsCe*e6_gz|yhXFFar!HAkdEpS}SrNIAS-!VKZ& z*`H9UCXe6>RCmwD1Th?Q$|E9x zz}vB5*DV+1QQqK{Wlhqb12V$6X_*Y88YH7ZKmbKE*P~%syoEZRqC3YHu}kyOQobHu z{fIjnmNqYAwe(@Vum33(S(|s zFNxMo*frxM0n(~P3Ys|{u$%(+WX=*2;U*83NEw+!H^Rt#G673OcjB9F|BQsNG|r4;Uv2gLfyP)uTmDK#vV-669MbHz0t zP*RhN&K+_xP^gzwN1V1ve}`J=HbW6+NTyczUDtwrn&xqZwj*Q%yMp*$2hv4<(SRy7LVzEayF@_>^)n_k@^>e^sBwza?m zmX7Tk@PLuJQ*`Pn@muoLr!ie7FK*<$u}s}9xFU)B3eAR?Q!ztR@~INOZy5{EuyDVH z2P`}@E3juBX-Y=C%RqZqBqpT{Q~9QGhklq%3q#~nexym*DHcl&Qg?^kajw54*f)b} zAl|K3o{%>db?FFcQX|#*D=4BYr>u6A1Kwp|Jj#}oGR#C-Vp8|=o=8J4{5DFr!3}4` z4Q8{MxJESjO7qdkTtMy@ zO1|&aedZTDPi`m4{g1I?U6hS_hhL2Dd@w^geOG=+)T+xJwn8;Y`|eOher-vNz?{(@ zF%xUMK9+3}yDT1@FN;aqfprKh;u!^_tK=c=Rj73|oNHCJ1C<*JMRSvo>d>vvhebT4 zpxLR`7|RFM3mVKHcEk(%N%1r_k|@~W50~7sd4(=R?E4%>ipEt_ZRP*jRIPo^R%HCs zwlJQuSYS0=d`MYB5J$bsXNc{ed^xumL?B9^4qM@dj8hFnQUrTeL_y)RS2OEHSYnZA z>d1bVFF%u8be&>fkVWa3G(|H{&Q|-}uxsdSleNWg;WH=;bF|BTu;ws{6KOWBT{hKw z5`#%BPy9d26P;~Zk5VeGT+Isa{%2dnUW-Rp>vOHDex0gk?)A&hsYXd<%RPZ2W~L*- zI$5?woEmU*vp(>yt6kTU=xWOK;IdviCS`p6VPvyz+8a^5v0}ZCr6xi_r)BubSW}Z@ zT2DlyB+9mkvq#)lVMN~bPHHqqn;LmOWpXne=0sTik`bp8IyzSBXitA+L-TY9!y=@Z zTE>lDJJNVS1*ilTD)xcpkRpLZP*taI%q``;DgKBU>jsO~VV~I9CQpwm_IGS2GwF(p zx-i(14#Bnh;SO8r35h*cYZ22SR|BAc^(xSI*t%7n78C5l){_`?#Cf9w6oHf;5reqUWKYnb-*Ds?`%`MV~P$T+oGiu*JjM%gjzHj69Xn;+N>8`k+(yl`xc|i zkzgufNJ>22qE~U{ISvbpM5?*vvg*Z!T~F;h*)y-;t08jh$9&&IZ>)PFz2#XPqG%%g z0;fjm%b^kxwW2J3U8j;(J6|QUc)Rm3_! z5OHnf*BsNiCnKJgF#O76E@b5)^YW3v1Dpv!e-uMSd2m-f8C?z&ajb^7!k8h#TeX>| zvqNDa$t4t(7Tx|tMHHR7z2?~&YC$C=4JR)qAL`e1R0hWvT5_!_)dFvrLm^0jg!nV- z&k|)D&UneXIh2ezZ@6Vw?j&at8EsI+!HC*mqS{_sSy`b zrO3OkcD*~2qK}NkwOmBaM@1|l5#nUSt;$8*zCHI$iyAH>;^@WBh^fvkWa`{*$W-^7 z4Cy!zU`p+s>TlKN6xOE&^mlMDIf$>KjZ!*-l29 z2%ss?#N|D65-w#4J+dj2-%WEHVmxWiFK1iCl;OIRYAouSD2`6U4GLeYOtm5&BMomP z+3<$s@}b;x4xo55h5DtM3~`ld=yUVzCk@Xl`$Dc)#cXg|Lw{(a?&{%U^!>8^Ex2`^05?bq>)F`2j6_&;8btojti~KS|Qjp-At_r5quh~r0SW5$zG$4F) z%>si&LKVH7myTV!iRxSlBJfS(jC`oAIQjLNig4JJb5ar6yj#o}W+y`^ z5QSMolr^VPVvSK{12#r!Lv2SUS8Pa-#nWh>Vg{>6AMNSW?=|H>-_irdiSxd0$?cE+#@M4b-w+WT0uf zS;@;J)!!oG0prc8ZUcw_URC}!CZ>vCc@#nJWEKkY7P#5#Y1LEBYB<@a8uMnYpq50D z091cNCE4`zeR|uRD43DIYHdjOc_HNzsg_g%wQnBTP&BPkwPfDIFeQiU-aKF`WYO1& z+(7~+M&+j^8}f8Ui29SGdd0WqRuiKocTDYEcPONW5N?r=mgG5zhD%0E71v9SmZ}rx zqQ8RTx8C%r`t47QdZmIZ&qL%!khKLCO-c1_w)f$%tnRG%H()kiyY= zYRoAIy*JgE=|?|N!zKAEhL&S)zF@w2O*Iw|IoRf7;>UMtH9A%rEcMOMkAAKmB5*80 zVyrYGKPOXiuv}+JnR7d`!^#BM^+h{Z3ytJ%o59x6Xrrj!%;4ZqQ9xza7802m+>mjq z0n-mZA#Zx9&lAiwCYzz*KBp*8Wy!ILJ^q~b|4cjE45(Jp z2~&HaJ`qyko4ueOFffkC^WHd~aLYA5A==sr(Xuglu&J4M*(}eih_0Her_g4b?SHsI F?~0aZ)an2L literal 0 HcmV?d00001 diff --git a/docs/site_libs/bootstrap/bootstrap.min.css b/docs/site_libs/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..a708750 --- /dev/null +++ b/docs/site_libs/bootstrap/bootstrap.min.css @@ -0,0 +1,12 @@ +ďťż@import"https://fonts.googleapis.com/css2?family=Miriam+Libre&family=Roboto&display=swap";/*! + * Bootstrap v5.3.1 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root,[data-bs-theme=light]{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #ffffff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-default: #dee2e6;--bs-primary: #1E4287;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-default-rgb: 222, 226, 230;--bs-primary-rgb: 30, 66, 135;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-primary-text-emphasis: #0c1a36;--bs-secondary-text-emphasis: #2b2f32;--bs-success-text-emphasis: #0a3622;--bs-info-text-emphasis: #055160;--bs-warning-text-emphasis: #664d03;--bs-danger-text-emphasis: #58151c;--bs-light-text-emphasis: #495057;--bs-dark-text-emphasis: #495057;--bs-primary-bg-subtle: #d2d9e7;--bs-secondary-bg-subtle: #e2e3e5;--bs-success-bg-subtle: #d1e7dd;--bs-info-bg-subtle: #cff4fc;--bs-warning-bg-subtle: #fff3cd;--bs-danger-bg-subtle: #f8d7da;--bs-light-bg-subtle: #fcfcfd;--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: #a5b3cf;--bs-secondary-border-subtle: #c4c8cb;--bs-success-border-subtle: #a3cfbb;--bs-info-border-subtle: #9eeaf9;--bs-warning-border-subtle: #ffe69c;--bs-danger-border-subtle: #f1aeb5;--bs-light-border-subtle: #e9ecef;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-font-sans-serif: "Roboto", "Helvetica Neue", sans-serif;--bs-font-monospace: "Fira Mono", Menlo, Consolas, monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 17px;--bs-body-font-family: Roboto;--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg: #ffffff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #000;--bs-emphasis-color-rgb: 0, 0, 0;--bs-secondary-color: rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb: 33, 37, 41;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb: 33, 37, 41;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: inherit;--bs-link-color: #1E4287;--bs-link-color-rgb: 30, 66, 135;--bs-link-decoration: underline;--bs-link-hover-color: #18356c;--bs-link-hover-color-rgb: 24, 53, 108;--bs-code-color: #1E4287;--bs-highlight-bg: #fff3cd;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.25rem;--bs-border-radius-sm: 0.2em;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(30, 66, 135, 0.25);--bs-form-valid-color: #198754;--bs-form-valid-border-color: #198754;--bs-form-invalid-color: #dc3545;--bs-form-invalid-border-color: #dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color: #dee2e6;--bs-body-color-rgb: 222, 226, 230;--bs-body-bg: #212529;--bs-body-bg-rgb: 33, 37, 41;--bs-emphasis-color: #ffffff;--bs-emphasis-color-rgb: 255, 255, 255;--bs-secondary-color: rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb: 222, 226, 230;--bs-secondary-bg: #343a40;--bs-secondary-bg-rgb: 52, 58, 64;--bs-tertiary-color: rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb: 222, 226, 230;--bs-tertiary-bg: #2b3035;--bs-tertiary-bg-rgb: 43, 48, 53;--bs-primary-text-emphasis: #788eb7;--bs-secondary-text-emphasis: #a7acb1;--bs-success-text-emphasis: #75b798;--bs-info-text-emphasis: #6edff6;--bs-warning-text-emphasis: #ffda6a;--bs-danger-text-emphasis: #ea868f;--bs-light-text-emphasis: #f8f9fa;--bs-dark-text-emphasis: #dee2e6;--bs-primary-bg-subtle: #060d1b;--bs-secondary-bg-subtle: #161719;--bs-success-bg-subtle: #051b11;--bs-info-bg-subtle: #032830;--bs-warning-bg-subtle: #332701;--bs-danger-bg-subtle: #2c0b0e;--bs-light-bg-subtle: #343a40;--bs-dark-bg-subtle: #1a1d20;--bs-primary-border-subtle: #122851;--bs-secondary-border-subtle: #41464b;--bs-success-border-subtle: #0f5132;--bs-info-border-subtle: #087990;--bs-warning-border-subtle: #997404;--bs-danger-border-subtle: #842029;--bs-light-border-subtle: #495057;--bs-dark-border-subtle: #343a40;--bs-heading-color: inherit;--bs-link-color: #788eb7;--bs-link-hover-color: #93a5c5;--bs-link-color-rgb: 120, 142, 183;--bs-link-hover-color-rgb: 147, 165, 197;--bs-code-color: white;--bs-border-color: #495057;--bs-border-color-translucent: rgba(255, 255, 255, 0.15);--bs-form-valid-color: #75b798;--bs-form-valid-border-color: #75b798;--bs-form-invalid-color: #ea868f;--bs-form-invalid-border-color: #ea868f}*,*::before,*::after{box-sizing:border-box}:root{font-size:var(--bs-root-font-size)}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1,.h1{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h1,.h1{font-size:2rem}}h2,.h2{font-size:calc(1.29rem + 0.48vw)}@media(min-width: 1200px){h2,.h2{font-size:1.65rem}}h3,.h3{font-size:calc(1.27rem + 0.24vw)}@media(min-width: 1200px){h3,.h3{font-size:1.45rem}}h4,.h4{font-size:1.25rem}h5,.h5{font-size:1.1rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{text-decoration:underline dotted;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;-ms-text-decoration:underline dotted;-o-text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}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;padding:.625rem 1.25rem;border-left:.25rem solid #e9ecef}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:"Fira Mono",Menlo,Consolas,monospace;font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em;color:#000;background-color:#f8f9fa;padding:.5rem;border:1px solid var(--bs-border-color, #dee2e6);border-radius:.25rem}pre code{background-color:rgba(0,0,0,0);font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:var(--bs-code-color);background-color:#f8f9fa;border-radius:.25rem;padding:.125rem .25rem;word-wrap:break-word}a>code{color:inherit}kbd{padding:.4rem .4rem;font-size:0.875em;color:#fff;background-color:#212529;border-radius:.2em}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(33,37,41,.75);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.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:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:rgba(33,37,41,.75)}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}:root{--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px}.grid{display:grid;grid-template-rows:repeat(var(--bs-rows, 1), 1fr);grid-template-columns:repeat(var(--bs-columns, 12), 1fr);gap:var(--bs-gap, 1.5rem)}.grid .g-col-1{grid-column:auto/span 1}.grid .g-col-2{grid-column:auto/span 2}.grid .g-col-3{grid-column:auto/span 3}.grid .g-col-4{grid-column:auto/span 4}.grid .g-col-5{grid-column:auto/span 5}.grid .g-col-6{grid-column:auto/span 6}.grid .g-col-7{grid-column:auto/span 7}.grid .g-col-8{grid-column:auto/span 8}.grid .g-col-9{grid-column:auto/span 9}.grid .g-col-10{grid-column:auto/span 10}.grid .g-col-11{grid-column:auto/span 11}.grid .g-col-12{grid-column:auto/span 12}.grid .g-start-1{grid-column-start:1}.grid .g-start-2{grid-column-start:2}.grid .g-start-3{grid-column-start:3}.grid .g-start-4{grid-column-start:4}.grid .g-start-5{grid-column-start:5}.grid .g-start-6{grid-column-start:6}.grid .g-start-7{grid-column-start:7}.grid .g-start-8{grid-column-start:8}.grid .g-start-9{grid-column-start:9}.grid .g-start-10{grid-column-start:10}.grid .g-start-11{grid-column-start:11}@media(min-width: 576px){.grid .g-col-sm-1{grid-column:auto/span 1}.grid .g-col-sm-2{grid-column:auto/span 2}.grid .g-col-sm-3{grid-column:auto/span 3}.grid .g-col-sm-4{grid-column:auto/span 4}.grid .g-col-sm-5{grid-column:auto/span 5}.grid .g-col-sm-6{grid-column:auto/span 6}.grid .g-col-sm-7{grid-column:auto/span 7}.grid .g-col-sm-8{grid-column:auto/span 8}.grid .g-col-sm-9{grid-column:auto/span 9}.grid .g-col-sm-10{grid-column:auto/span 10}.grid .g-col-sm-11{grid-column:auto/span 11}.grid .g-col-sm-12{grid-column:auto/span 12}.grid .g-start-sm-1{grid-column-start:1}.grid .g-start-sm-2{grid-column-start:2}.grid .g-start-sm-3{grid-column-start:3}.grid .g-start-sm-4{grid-column-start:4}.grid .g-start-sm-5{grid-column-start:5}.grid .g-start-sm-6{grid-column-start:6}.grid .g-start-sm-7{grid-column-start:7}.grid .g-start-sm-8{grid-column-start:8}.grid .g-start-sm-9{grid-column-start:9}.grid .g-start-sm-10{grid-column-start:10}.grid .g-start-sm-11{grid-column-start:11}}@media(min-width: 768px){.grid .g-col-md-1{grid-column:auto/span 1}.grid .g-col-md-2{grid-column:auto/span 2}.grid .g-col-md-3{grid-column:auto/span 3}.grid .g-col-md-4{grid-column:auto/span 4}.grid .g-col-md-5{grid-column:auto/span 5}.grid .g-col-md-6{grid-column:auto/span 6}.grid .g-col-md-7{grid-column:auto/span 7}.grid .g-col-md-8{grid-column:auto/span 8}.grid .g-col-md-9{grid-column:auto/span 9}.grid .g-col-md-10{grid-column:auto/span 10}.grid .g-col-md-11{grid-column:auto/span 11}.grid .g-col-md-12{grid-column:auto/span 12}.grid .g-start-md-1{grid-column-start:1}.grid .g-start-md-2{grid-column-start:2}.grid .g-start-md-3{grid-column-start:3}.grid .g-start-md-4{grid-column-start:4}.grid .g-start-md-5{grid-column-start:5}.grid .g-start-md-6{grid-column-start:6}.grid .g-start-md-7{grid-column-start:7}.grid .g-start-md-8{grid-column-start:8}.grid .g-start-md-9{grid-column-start:9}.grid .g-start-md-10{grid-column-start:10}.grid .g-start-md-11{grid-column-start:11}}@media(min-width: 992px){.grid .g-col-lg-1{grid-column:auto/span 1}.grid .g-col-lg-2{grid-column:auto/span 2}.grid .g-col-lg-3{grid-column:auto/span 3}.grid .g-col-lg-4{grid-column:auto/span 4}.grid .g-col-lg-5{grid-column:auto/span 5}.grid .g-col-lg-6{grid-column:auto/span 6}.grid .g-col-lg-7{grid-column:auto/span 7}.grid .g-col-lg-8{grid-column:auto/span 8}.grid .g-col-lg-9{grid-column:auto/span 9}.grid .g-col-lg-10{grid-column:auto/span 10}.grid .g-col-lg-11{grid-column:auto/span 11}.grid .g-col-lg-12{grid-column:auto/span 12}.grid .g-start-lg-1{grid-column-start:1}.grid .g-start-lg-2{grid-column-start:2}.grid .g-start-lg-3{grid-column-start:3}.grid .g-start-lg-4{grid-column-start:4}.grid .g-start-lg-5{grid-column-start:5}.grid .g-start-lg-6{grid-column-start:6}.grid .g-start-lg-7{grid-column-start:7}.grid .g-start-lg-8{grid-column-start:8}.grid .g-start-lg-9{grid-column-start:9}.grid .g-start-lg-10{grid-column-start:10}.grid .g-start-lg-11{grid-column-start:11}}@media(min-width: 1200px){.grid .g-col-xl-1{grid-column:auto/span 1}.grid .g-col-xl-2{grid-column:auto/span 2}.grid .g-col-xl-3{grid-column:auto/span 3}.grid .g-col-xl-4{grid-column:auto/span 4}.grid .g-col-xl-5{grid-column:auto/span 5}.grid .g-col-xl-6{grid-column:auto/span 6}.grid .g-col-xl-7{grid-column:auto/span 7}.grid .g-col-xl-8{grid-column:auto/span 8}.grid .g-col-xl-9{grid-column:auto/span 9}.grid .g-col-xl-10{grid-column:auto/span 10}.grid .g-col-xl-11{grid-column:auto/span 11}.grid .g-col-xl-12{grid-column:auto/span 12}.grid .g-start-xl-1{grid-column-start:1}.grid .g-start-xl-2{grid-column-start:2}.grid .g-start-xl-3{grid-column-start:3}.grid .g-start-xl-4{grid-column-start:4}.grid .g-start-xl-5{grid-column-start:5}.grid .g-start-xl-6{grid-column-start:6}.grid .g-start-xl-7{grid-column-start:7}.grid .g-start-xl-8{grid-column-start:8}.grid .g-start-xl-9{grid-column-start:9}.grid .g-start-xl-10{grid-column-start:10}.grid .g-start-xl-11{grid-column-start:11}}@media(min-width: 1400px){.grid .g-col-xxl-1{grid-column:auto/span 1}.grid .g-col-xxl-2{grid-column:auto/span 2}.grid .g-col-xxl-3{grid-column:auto/span 3}.grid .g-col-xxl-4{grid-column:auto/span 4}.grid .g-col-xxl-5{grid-column:auto/span 5}.grid .g-col-xxl-6{grid-column:auto/span 6}.grid .g-col-xxl-7{grid-column:auto/span 7}.grid .g-col-xxl-8{grid-column:auto/span 8}.grid .g-col-xxl-9{grid-column:auto/span 9}.grid .g-col-xxl-10{grid-column:auto/span 10}.grid .g-col-xxl-11{grid-column:auto/span 11}.grid .g-col-xxl-12{grid-column:auto/span 12}.grid .g-start-xxl-1{grid-column-start:1}.grid .g-start-xxl-2{grid-column-start:2}.grid .g-start-xxl-3{grid-column-start:3}.grid .g-start-xxl-4{grid-column-start:4}.grid .g-start-xxl-5{grid-column-start:5}.grid .g-start-xxl-6{grid-column-start:6}.grid .g-start-xxl-7{grid-column-start:7}.grid .g-start-xxl-8{grid-column-start:8}.grid .g-start-xxl-9{grid-column-start:9}.grid .g-start-xxl-10{grid-column-start:10}.grid .g-start-xxl-11{grid-column-start:11}}.table{--bs-table-color-type: initial;--bs-table-bg-type: initial;--bs-table-color-state: initial;--bs-table-bg-state: initial;--bs-table-color: #212529;--bs-table-bg: #ffffff;--bs-table-border-color: #dee2e6;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, 0.05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, 0.1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(1px*2) solid #9ba5ae}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-active{--bs-table-color-state: var(--bs-table-active-color);--bs-table-bg-state: var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state: var(--bs-table-hover-color);--bs-table-bg-state: var(--bs-table-hover-bg)}.table-primary{--bs-table-color: #000;--bs-table-bg: #d2d9e7;--bs-table-border-color: #bdc3d0;--bs-table-striped-bg: #c8cedb;--bs-table-striped-color: #000;--bs-table-active-bg: #bdc3d0;--bs-table-active-color: #000;--bs-table-hover-bg: #c2c9d6;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color: #000;--bs-table-bg: #e2e3e5;--bs-table-border-color: #cbccce;--bs-table-striped-bg: #d7d8da;--bs-table-striped-color: #000;--bs-table-active-bg: #cbccce;--bs-table-active-color: #000;--bs-table-hover-bg: #d1d2d4;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color: #000;--bs-table-bg: #d1e7dd;--bs-table-border-color: #bcd0c7;--bs-table-striped-bg: #c7dbd2;--bs-table-striped-color: #000;--bs-table-active-bg: #bcd0c7;--bs-table-active-color: #000;--bs-table-hover-bg: #c1d6cc;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color: #000;--bs-table-bg: #cff4fc;--bs-table-border-color: #badce3;--bs-table-striped-bg: #c5e8ef;--bs-table-striped-color: #000;--bs-table-active-bg: #badce3;--bs-table-active-color: #000;--bs-table-hover-bg: #bfe2e9;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color: #000;--bs-table-bg: #fff3cd;--bs-table-border-color: #e6dbb9;--bs-table-striped-bg: #f2e7c3;--bs-table-striped-color: #000;--bs-table-active-bg: #e6dbb9;--bs-table-active-color: #000;--bs-table-hover-bg: #ece1be;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color: #000;--bs-table-bg: #f8d7da;--bs-table-border-color: #dfc2c4;--bs-table-striped-bg: #eccccf;--bs-table-striped-color: #000;--bs-table-active-bg: #dfc2c4;--bs-table-active-color: #000;--bs-table-hover-bg: #e5c7ca;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color: #000;--bs-table-bg: #f8f9fa;--bs-table-border-color: #dfe0e1;--bs-table-striped-bg: #ecedee;--bs-table-striped-color: #000;--bs-table-active-bg: #dfe0e1;--bs-table-active-color: #000;--bs-table-hover-bg: #e5e6e7;--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color: #ffffff;--bs-table-bg: #212529;--bs-table-border-color: #373b3e;--bs-table-striped-bg: #2c3034;--bs-table-striped-color: #ffffff;--bs-table-active-bg: #373b3e;--bs-table-active-color: #ffffff;--bs-table-hover-bg: #323539;--bs-table-hover-color: #ffffff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.shiny-input-container .control-label{margin-bottom:.5rem}.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}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem}.form-text{margin-top:.25rem;font-size:0.875em;color:rgba(33,37,41,.75)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#fff;background-clip:padding-box;border:1px solid #dee2e6;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#8fa1c3;outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::placeholder{color:rgba(33,37,41,.75);opacity:1}.form-control:disabled{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#212529;background-color:#f8f9fa;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#e9ecef}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2));padding:.25rem .5rem;font-size:0.875rem;border-radius:.2em}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 0.75rem + calc(1px * 2))}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2))}.form-control-color{width:3rem;height:calc(1.5em + 0.75rem + calc(1px * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0 !important;border-radius:.25rem}.form-control-color::-webkit-color-swatch{border:0 !important;border-radius:.25rem}.form-control-color.form-control-sm{height:calc(1.5em + 0.5rem + calc(1px * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(1px * 2))}.form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#fff;background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon, none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #dee2e6;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:#8fa1c3;outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem;border-radius:.2em}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check,.shiny-input-container .checkbox,.shiny-input-container .radio{display:block;min-height:1.5rem;padding-left:0;margin-bottom:.125rem}.form-check .form-check-input,.form-check .shiny-input-container .checkbox input,.form-check .shiny-input-container .radio input,.shiny-input-container .checkbox .form-check-input,.shiny-input-container .checkbox .shiny-input-container .checkbox input,.shiny-input-container .checkbox .shiny-input-container .radio input,.shiny-input-container .radio .form-check-input,.shiny-input-container .radio .shiny-input-container .checkbox input,.shiny-input-container .radio .shiny-input-container .radio input{float:left;margin-left:0}.form-check-reverse{padding-right:0;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:0;margin-left:0}.form-check-input,.shiny-input-container .checkbox input,.shiny-input-container .checkbox-inline input,.shiny-input-container .radio input,.shiny-input-container .radio-inline input{--bs-form-check-bg: #ffffff;width:1em;height:1em;margin-top:.25em;vertical-align:top;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid #dee2e6;print-color-adjust:exact}.form-check-input[type=checkbox],.shiny-input-container .checkbox input[type=checkbox],.shiny-input-container .checkbox-inline input[type=checkbox],.shiny-input-container .radio input[type=checkbox],.shiny-input-container .radio-inline input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio],.shiny-input-container .checkbox input[type=radio],.shiny-input-container .checkbox-inline input[type=radio],.shiny-input-container .radio input[type=radio],.shiny-input-container .radio-inline input[type=radio]{border-radius:50%}.form-check-input:active,.shiny-input-container .checkbox input:active,.shiny-input-container .checkbox-inline input:active,.shiny-input-container .radio input:active,.shiny-input-container .radio-inline input:active{filter:brightness(90%)}.form-check-input:focus,.shiny-input-container .checkbox input:focus,.shiny-input-container .checkbox-inline input:focus,.shiny-input-container .radio input:focus,.shiny-input-container .radio-inline input:focus{border-color:#8fa1c3;outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.form-check-input:checked,.shiny-input-container .checkbox input:checked,.shiny-input-container .checkbox-inline input:checked,.shiny-input-container .radio input:checked,.shiny-input-container .radio-inline input:checked{background-color:#1e4287;border-color:#1e4287}.form-check-input:checked[type=checkbox],.shiny-input-container .checkbox input:checked[type=checkbox],.shiny-input-container .checkbox-inline input:checked[type=checkbox],.shiny-input-container .radio input:checked[type=checkbox],.shiny-input-container .radio-inline input:checked[type=checkbox]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.shiny-input-container .checkbox input:checked[type=radio],.shiny-input-container .checkbox-inline input:checked[type=radio],.shiny-input-container .radio input:checked[type=radio],.shiny-input-container .radio-inline input:checked[type=radio]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.shiny-input-container .checkbox input[type=checkbox]:indeterminate,.shiny-input-container .checkbox-inline input[type=checkbox]:indeterminate,.shiny-input-container .radio input[type=checkbox]:indeterminate,.shiny-input-container .radio-inline input[type=checkbox]:indeterminate{background-color:#1e4287;border-color:#1e4287;--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled,.shiny-input-container .checkbox input:disabled,.shiny-input-container .checkbox-inline input:disabled,.shiny-input-container .radio input:disabled,.shiny-input-container .radio-inline input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input[disabled]~span,.form-check-input:disabled~.form-check-label,.form-check-input:disabled~span,.shiny-input-container .checkbox input[disabled]~.form-check-label,.shiny-input-container .checkbox input[disabled]~span,.shiny-input-container .checkbox input:disabled~.form-check-label,.shiny-input-container .checkbox input:disabled~span,.shiny-input-container .checkbox-inline input[disabled]~.form-check-label,.shiny-input-container .checkbox-inline input[disabled]~span,.shiny-input-container .checkbox-inline input:disabled~.form-check-label,.shiny-input-container .checkbox-inline input:disabled~span,.shiny-input-container .radio input[disabled]~.form-check-label,.shiny-input-container .radio input[disabled]~span,.shiny-input-container .radio input:disabled~.form-check-label,.shiny-input-container .radio input:disabled~span,.shiny-input-container .radio-inline input[disabled]~.form-check-label,.shiny-input-container .radio-inline input[disabled]~span,.shiny-input-container .radio-inline input:disabled~.form-check-label,.shiny-input-container .radio-inline input:disabled~span{cursor:default;opacity:.5}.form-check-label,.shiny-input-container .checkbox label,.shiny-input-container .checkbox-inline label,.shiny-input-container .radio label,.shiny-input-container .radio-inline label{cursor:pointer}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238fa1c3'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:rgba(0,0,0,0)}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(30,66,135,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(30,66,135,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#1e4287;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#bcc6db}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#1e4287;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:#bcc6db}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:rgba(33,37,41,.75)}.form-range:disabled::-moz-range-thumb{background-color:rgba(33,37,41,.75)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(1px * 2));min-height:calc(3.5rem + calc(1px * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control::placeholder,.form-floating>.form-control-plaintext::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown),.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill,.form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-control-plaintext~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-control-plaintext~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem .375rem;z-index:-1;height:1.5em;content:"";background-color:#fff;border-radius:.25rem}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.form-floating>:disabled~label,.form-floating>.form-control:disabled~label{color:#6c757d}.form-floating>:disabled~label::after,.form-floating>.form-control:disabled~label::after{background-color:#e9ecef}.input-group{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:stretch;-webkit-align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select,.input-group>.form-floating{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus,.input-group>.form-floating:focus-within{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#f8f9fa;border:1px solid #dee2e6;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;border-radius:.2em}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(1px*-1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#198754;border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#198754}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-control-color:valid,.form-control-color.is-valid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#198754}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#198754}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):valid,.input-group>.form-control:not(:focus).is-valid,.was-validated .input-group>.form-select:not(:focus):valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.input-group>.form-floating:not(:focus-within).is-valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#dc3545;border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#dc3545}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-control-color:invalid,.form-control-color.is-invalid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#dc3545}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):invalid,.input-group>.form-control:not(:focus).is-invalid,.was-validated .input-group>.form-select:not(:focus):invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.input-group>.form-floating:not(:focus-within).is-invalid{z-index:4}.btn{--bs-btn-padding-x: 0.75rem;--bs-btn-padding-y: 0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight: 400;--bs-btn-line-height: 1.5;--bs-btn-color: #212529;--bs-btn-bg: transparent;--bs-btn-border-width: 1px;--bs-btn-border-color: transparent;--bs-btn-border-radius: 0.25rem;--bs-btn-hover-border-color: transparent;--bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity: 0.65;--bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,:not(.btn-check)+.btn:active,.btn:first-child:active,.btn.active,.btn.show{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,:not(.btn-check)+.btn:active:focus-visible,.btn:first-child:active:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-default{--bs-btn-color: #000;--bs-btn-bg: #dee2e6;--bs-btn-border-color: #dee2e6;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #e3e6ea;--bs-btn-hover-border-color: #e1e5e9;--bs-btn-focus-shadow-rgb: 189, 192, 196;--bs-btn-active-color: #000;--bs-btn-active-bg: #e5e8eb;--bs-btn-active-border-color: #e1e5e9;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #dee2e6;--bs-btn-disabled-border-color: #dee2e6}.btn-primary{--bs-btn-color: #ffffff;--bs-btn-bg: #1E4287;--bs-btn-border-color: #1E4287;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #1a3873;--bs-btn-hover-border-color: #18356c;--bs-btn-focus-shadow-rgb: 64, 94, 153;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #18356c;--bs-btn-active-border-color: #173265;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #1E4287;--bs-btn-disabled-border-color: #1E4287}.btn-secondary{--bs-btn-color: #ffffff;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #5c636a;--bs-btn-hover-border-color: #565e64;--bs-btn-focus-shadow-rgb: 130, 138, 145;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #565e64;--bs-btn-active-border-color: #51585e;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}.btn-success{--bs-btn-color: #ffffff;--bs-btn-bg: #198754;--bs-btn-border-color: #198754;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #157347;--bs-btn-hover-border-color: #146c43;--bs-btn-focus-shadow-rgb: 60, 153, 110;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #146c43;--bs-btn-active-border-color: #13653f;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #198754;--bs-btn-disabled-border-color: #198754}.btn-info{--bs-btn-color: #000;--bs-btn-bg: #0dcaf0;--bs-btn-border-color: #0dcaf0;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #31d2f2;--bs-btn-hover-border-color: #25cff2;--bs-btn-focus-shadow-rgb: 11, 172, 204;--bs-btn-active-color: #000;--bs-btn-active-bg: #3dd5f3;--bs-btn-active-border-color: #25cff2;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #0dcaf0;--bs-btn-disabled-border-color: #0dcaf0}.btn-warning{--bs-btn-color: #000;--bs-btn-bg: #ffc107;--bs-btn-border-color: #ffc107;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ffca2c;--bs-btn-hover-border-color: #ffc720;--bs-btn-focus-shadow-rgb: 217, 164, 6;--bs-btn-active-color: #000;--bs-btn-active-bg: #ffcd39;--bs-btn-active-border-color: #ffc720;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #ffc107;--bs-btn-disabled-border-color: #ffc107}.btn-danger{--bs-btn-color: #ffffff;--bs-btn-bg: #dc3545;--bs-btn-border-color: #dc3545;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #bb2d3b;--bs-btn-hover-border-color: #b02a37;--bs-btn-focus-shadow-rgb: 225, 83, 97;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #b02a37;--bs-btn-active-border-color: #a52834;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #dc3545;--bs-btn-disabled-border-color: #dc3545}.btn-light{--bs-btn-color: #000;--bs-btn-bg: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #d3d4d5;--bs-btn-hover-border-color: #c6c7c8;--bs-btn-focus-shadow-rgb: 211, 212, 213;--bs-btn-active-color: #000;--bs-btn-active-bg: #c6c7c8;--bs-btn-active-border-color: #babbbc;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #f8f9fa;--bs-btn-disabled-border-color: #f8f9fa}.btn-dark{--bs-btn-color: #ffffff;--bs-btn-bg: #212529;--bs-btn-border-color: #212529;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #424649;--bs-btn-hover-border-color: #373b3e;--bs-btn-focus-shadow-rgb: 66, 70, 73;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #4d5154;--bs-btn-active-border-color: #373b3e;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #212529;--bs-btn-disabled-border-color: #212529}.btn-outline-default{--bs-btn-color: #dee2e6;--bs-btn-border-color: #dee2e6;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #dee2e6;--bs-btn-hover-border-color: #dee2e6;--bs-btn-focus-shadow-rgb: 222, 226, 230;--bs-btn-active-color: #000;--bs-btn-active-bg: #dee2e6;--bs-btn-active-border-color: #dee2e6;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #dee2e6;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #dee2e6;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-primary{--bs-btn-color: #1E4287;--bs-btn-border-color: #1E4287;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #1E4287;--bs-btn-hover-border-color: #1E4287;--bs-btn-focus-shadow-rgb: 30, 66, 135;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #1E4287;--bs-btn-active-border-color: #1E4287;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #1E4287;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #1E4287;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-secondary{--bs-btn-color: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #6c757d;--bs-btn-hover-border-color: #6c757d;--bs-btn-focus-shadow-rgb: 108, 117, 125;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #6c757d;--bs-btn-active-border-color: #6c757d;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #6c757d;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-success{--bs-btn-color: #198754;--bs-btn-border-color: #198754;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #198754;--bs-btn-hover-border-color: #198754;--bs-btn-focus-shadow-rgb: 25, 135, 84;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #198754;--bs-btn-active-border-color: #198754;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #198754;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #198754;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-info{--bs-btn-color: #0dcaf0;--bs-btn-border-color: #0dcaf0;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #0dcaf0;--bs-btn-hover-border-color: #0dcaf0;--bs-btn-focus-shadow-rgb: 13, 202, 240;--bs-btn-active-color: #000;--bs-btn-active-bg: #0dcaf0;--bs-btn-active-border-color: #0dcaf0;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #0dcaf0;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #0dcaf0;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-warning{--bs-btn-color: #ffc107;--bs-btn-border-color: #ffc107;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ffc107;--bs-btn-hover-border-color: #ffc107;--bs-btn-focus-shadow-rgb: 255, 193, 7;--bs-btn-active-color: #000;--bs-btn-active-bg: #ffc107;--bs-btn-active-border-color: #ffc107;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffc107;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ffc107;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-danger{--bs-btn-color: #dc3545;--bs-btn-border-color: #dc3545;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #dc3545;--bs-btn-hover-border-color: #dc3545;--bs-btn-focus-shadow-rgb: 220, 53, 69;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #dc3545;--bs-btn-active-border-color: #dc3545;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #dc3545;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #dc3545;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-light{--bs-btn-color: #f8f9fa;--bs-btn-border-color: #f8f9fa;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #f8f9fa;--bs-btn-hover-border-color: #f8f9fa;--bs-btn-focus-shadow-rgb: 248, 249, 250;--bs-btn-active-color: #000;--bs-btn-active-bg: #f8f9fa;--bs-btn-active-border-color: #f8f9fa;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #f8f9fa;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #f8f9fa;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-dark{--bs-btn-color: #212529;--bs-btn-border-color: #212529;--bs-btn-hover-color: #ffffff;--bs-btn-hover-bg: #212529;--bs-btn-hover-border-color: #212529;--bs-btn-focus-shadow-rgb: 33, 37, 41;--bs-btn-active-color: #ffffff;--bs-btn-active-bg: #212529;--bs-btn-active-border-color: #212529;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #212529;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #212529;--bs-btn-bg: transparent;--bs-gradient: none}.btn-link{--bs-btn-font-weight: 400;--bs-btn-color: #1E4287;--bs-btn-bg: transparent;--bs-btn-border-color: transparent;--bs-btn-hover-color: #18356c;--bs-btn-hover-border-color: transparent;--bs-btn-active-color: #18356c;--bs-btn-active-border-color: transparent;--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-border-color: transparent;--bs-btn-box-shadow: 0 0 0 #000;--bs-btn-focus-shadow-rgb: 64, 94, 153;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.btn-group-lg>.btn{--bs-btn-padding-y: 0.5rem;--bs-btn-padding-x: 1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius: 0.5rem}.btn-sm,.btn-group-sm>.btn{--bs-btn-padding-y: 0.25rem;--bs-btn-padding-x: 0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius: 0.2em}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .2s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart,.dropup-center,.dropdown-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex: 1000;--bs-dropdown-min-width: 10rem;--bs-dropdown-padding-x: 0;--bs-dropdown-padding-y: 0.5rem;--bs-dropdown-spacer: 0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color: #212529;--bs-dropdown-bg: #ffffff;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-border-radius: 0.25rem;--bs-dropdown-border-width: 1px;--bs-dropdown-inner-border-radius: calc(0.25rem - 1px);--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-divider-margin-y: 0.5rem;--bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color: #212529;--bs-dropdown-link-hover-color: #212529;--bs-dropdown-link-hover-bg: #f8f9fa;--bs-dropdown-link-active-color: #ffffff;--bs-dropdown-link-active-bg: #1E4287;--bs-dropdown-link-disabled-color: rgba(33, 37, 41, 0.5);--bs-dropdown-item-padding-x: 1rem;--bs-dropdown-item-padding-y: 0.25rem;--bs-dropdown-header-color: #6c757d;--bs-dropdown-header-padding-x: 1rem;--bs-dropdown-header-padding-y: 0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0;border-radius:var(--bs-dropdown-item-border-radius, 0)}.dropdown-item:hover,.dropdown-item:focus{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:0.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color: #dee2e6;--bs-dropdown-bg: #343a40;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color: #dee2e6;--bs-dropdown-link-hover-color: #ffffff;--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color: #ffffff;--bs-dropdown-link-active-bg: #1E4287;--bs-dropdown-link-disabled-color: #adb5bd;--bs-dropdown-header-color: #adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:flex-start;-webkit-justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.25rem}.btn-group>:not(.btn-check:first-child)+.btn,.btn-group>.btn-group:not(:first-child){margin-left:calc(1px*-1)}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;-webkit-flex-direction:column;align-items:flex-start;-webkit-align-items:flex-start;justify-content:center;-webkit-justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:calc(1px*-1)}.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~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x: 1rem;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: #1E4287;--bs-nav-link-hover-color: #18356c;--bs-nav-link-disabled-color: rgba(33, 37, 41, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background:none;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(30,66,135,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width: 1px;--bs-nav-tabs-border-color: #dee2e6;--bs-nav-tabs-border-radius: 0.25rem;--bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;--bs-nav-tabs-link-active-color: #000;--bs-nav-tabs-link-active-bg: #ffffff;--bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #ffffff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1*var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid rgba(0,0,0,0);border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1*var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius: 0.25rem;--bs-nav-pills-link-active-color: #ffffff;--bs-nav-pills-link-active-bg: #1E4287}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap: 1rem;--bs-nav-underline-border-width: 0.125rem;--bs-nav-underline-link-active-color: #000;gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid rgba(0,0,0,0)}.nav-underline .nav-link:hover,.nav-underline .nav-link:focus{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;-webkit-flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;-webkit-flex-basis:0;flex-grow:1;-webkit-flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x: 0;--bs-navbar-padding-y: 0.5rem;--bs-navbar-color: #545555;--bs-navbar-hover-color: rgba(30, 66, 135, 0.8);--bs-navbar-disabled-color: rgba(84, 85, 85, 0.75);--bs-navbar-active-color: #1e4287;--bs-navbar-brand-padding-y: 0.3125rem;--bs-navbar-brand-margin-end: 1rem;--bs-navbar-brand-font-size: 1.25rem;--bs-navbar-brand-color: #545555;--bs-navbar-brand-hover-color: #1e4287;--bs-navbar-nav-link-padding-x: 0.5rem;--bs-navbar-toggler-padding-y: 0.25;--bs-navbar-toggler-padding-x: 0;--bs-navbar-toggler-font-size: 1.25rem;--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23545555' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color: rgba(84, 85, 85, 0);--bs-navbar-toggler-border-radius: 0.25rem;--bs-navbar-toggler-focus-width: 0.25rem;--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;display:-webkit-flex;flex-wrap:inherit;-webkit-flex-wrap:inherit;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x: 0;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: var(--bs-navbar-color);--bs-nav-link-hover-color: var(--bs-navbar-hover-color);--bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:hover,.navbar-text a:focus{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;-webkit-flex-basis:100%;flex-grow:1;-webkit-flex-grow:1;align-items:center;-webkit-align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:rgba(0,0,0,0);border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}.navbar-dark,.navbar[data-bs-theme=dark]{--bs-navbar-color: #545555;--bs-navbar-hover-color: rgba(30, 66, 135, 0.8);--bs-navbar-disabled-color: rgba(84, 85, 85, 0.75);--bs-navbar-active-color: #1e4287;--bs-navbar-brand-color: #545555;--bs-navbar-brand-hover-color: #1e4287;--bs-navbar-toggler-border-color: rgba(84, 85, 85, 0);--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23545555' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23545555' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: 0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width: 1px;--bs-card-border-color: rgba(0, 0, 0, 0.175);--bs-card-border-radius: 0.25rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius: calc(0.25rem - 1px);--bs-card-cap-padding-y: 0.5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(52, 58, 64, 0.25);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: #ffffff;--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: 0.75rem;position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-0.5*var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-bottom:calc(-1*var(--bs-card-cap-padding-y));margin-left:calc(-0.5*var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-left:calc(-0.5*var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media(min-width: 576px){.card-group{display:flex;display:-webkit-flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.card-group>.card{flex:1 0 0%;-webkit-flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion{--bs-accordion-color: #212529;--bs-accordion-bg: #ffffff;--bs-accordion-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, border-radius 0.15s ease;--bs-accordion-border-color: #dee2e6;--bs-accordion-border-width: 1px;--bs-accordion-border-radius: 0.25rem;--bs-accordion-inner-border-radius: calc(0.25rem - 1px);--bs-accordion-btn-padding-x: 1.25rem;--bs-accordion-btn-padding-y: 1rem;--bs-accordion-btn-color: #212529;--bs-accordion-btn-bg: #ffffff;--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width: 1.25rem;--bs-accordion-btn-icon-transform: rotate(-180deg);--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c1a36'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color: #8fa1c3;--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(30, 66, 135, 0.25);--bs-accordion-body-padding-x: 1.25rem;--bs-accordion-body-padding-y: 1rem;--bs-accordion-active-color: #0c1a36;--bs-accordion-active-bg: #d2d9e7}.accordion-button{position:relative;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1*var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;-webkit-flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23788eb7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23788eb7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x: 0;--bs-breadcrumb-padding-y: 0;--bs-breadcrumb-margin-bottom: 1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color: rgba(33, 37, 41, 0.75);--bs-breadcrumb-item-padding-x: 0.5rem;--bs-breadcrumb-item-active-color: rgba(33, 37, 41, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, ">") /* rtl: var(--bs-breadcrumb-divider, ">") */}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x: 0.75rem;--bs-pagination-padding-y: 0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color: #1E4287;--bs-pagination-bg: #ffffff;--bs-pagination-border-width: 1px;--bs-pagination-border-color: #dee2e6;--bs-pagination-border-radius: 0.25rem;--bs-pagination-hover-color: #18356c;--bs-pagination-hover-bg: #f8f9fa;--bs-pagination-hover-border-color: #dee2e6;--bs-pagination-focus-color: #18356c;--bs-pagination-focus-bg: #e9ecef;--bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(30, 66, 135, 0.25);--bs-pagination-active-color: #ffffff;--bs-pagination-active-bg: #1E4287;--bs-pagination-active-border-color: #1E4287;--bs-pagination-disabled-color: rgba(33, 37, 41, 0.75);--bs-pagination-disabled-bg: #e9ecef;--bs-pagination-disabled-border-color: #dee2e6;display:flex;display:-webkit-flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.page-link.active,.active>.page-link{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.page-link.disabled,.disabled>.page-link{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(1px*-1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x: 1.5rem;--bs-pagination-padding-y: 0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius: 0.5rem}.pagination-sm{--bs-pagination-padding-x: 0.5rem;--bs-pagination-padding-y: 0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius: 0.2em}.badge{--bs-badge-padding-x: 0.65em;--bs-badge-padding-y: 0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight: 700;--bs-badge-color: #ffffff;--bs-badge-border-radius: 0.25rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg: transparent;--bs-alert-padding-x: 1rem;--bs-alert-padding-y: 1rem;--bs-alert-margin-bottom: 1rem;--bs-alert-color: inherit;--bs-alert-border-color: transparent;--bs-alert-border: 1px solid var(--bs-alert-border-color);--bs-alert-border-radius: 0.25rem;--bs-alert-link-color: inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-default{--bs-alert-color: var(--bs-default-text-emphasis);--bs-alert-bg: var(--bs-default-bg-subtle);--bs-alert-border-color: var(--bs-default-border-subtle);--bs-alert-link-color: var(--bs-default-text-emphasis)}.alert-primary{--bs-alert-color: var(--bs-primary-text-emphasis);--bs-alert-bg: var(--bs-primary-bg-subtle);--bs-alert-border-color: var(--bs-primary-border-subtle);--bs-alert-link-color: var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color: var(--bs-secondary-text-emphasis);--bs-alert-bg: var(--bs-secondary-bg-subtle);--bs-alert-border-color: var(--bs-secondary-border-subtle);--bs-alert-link-color: var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color: var(--bs-success-text-emphasis);--bs-alert-bg: var(--bs-success-bg-subtle);--bs-alert-border-color: var(--bs-success-border-subtle);--bs-alert-link-color: var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color: var(--bs-info-text-emphasis);--bs-alert-bg: var(--bs-info-bg-subtle);--bs-alert-border-color: var(--bs-info-border-subtle);--bs-alert-link-color: var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color: var(--bs-warning-text-emphasis);--bs-alert-bg: var(--bs-warning-bg-subtle);--bs-alert-border-color: var(--bs-warning-border-subtle);--bs-alert-link-color: var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color: var(--bs-danger-text-emphasis);--bs-alert-bg: var(--bs-danger-bg-subtle);--bs-alert-border-color: var(--bs-danger-border-subtle);--bs-alert-link-color: var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color: var(--bs-light-text-emphasis);--bs-alert-bg: var(--bs-light-bg-subtle);--bs-alert-border-color: var(--bs-light-border-subtle);--bs-alert-link-color: var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color: var(--bs-dark-text-emphasis);--bs-alert-bg: var(--bs-dark-bg-subtle);--bs-alert-border-color: var(--bs-dark-border-subtle);--bs-alert-link-color: var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height: 1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg: #e9ecef;--bs-progress-border-radius: 0.25rem;--bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color: #ffffff;--bs-progress-bar-bg: #1E4287;--bs-progress-bar-transition: width 0.6s ease;display:flex;display:-webkit-flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;justify-content:center;-webkit-justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.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:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #ffffff;--bs-list-group-border-color: #dee2e6;--bs-list-group-border-width: 1px;--bs-list-group-border-radius: 0.25rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: 0.5rem;--bs-list-group-action-color: rgba(33, 37, 41, 0.75);--bs-list-group-action-hover-color: #000;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: rgba(33, 37, 41, 0.75);--bs-list-group-disabled-bg: #ffffff;--bs-list-group-active-color: #ffffff;--bs-list-group-active-bg: #1E4287;--bs-list-group-active-border-color: #1E4287;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1*var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-default{--bs-list-group-color: var(--bs-default-text-emphasis);--bs-list-group-bg: var(--bs-default-bg-subtle);--bs-list-group-border-color: var(--bs-default-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-default-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-default-border-subtle);--bs-list-group-active-color: var(--bs-default-bg-subtle);--bs-list-group-active-bg: var(--bs-default-text-emphasis);--bs-list-group-active-border-color: var(--bs-default-text-emphasis)}.list-group-item-primary{--bs-list-group-color: var(--bs-primary-text-emphasis);--bs-list-group-bg: var(--bs-primary-bg-subtle);--bs-list-group-border-color: var(--bs-primary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-primary-border-subtle);--bs-list-group-active-color: var(--bs-primary-bg-subtle);--bs-list-group-active-bg: var(--bs-primary-text-emphasis);--bs-list-group-active-border-color: var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color: var(--bs-secondary-text-emphasis);--bs-list-group-bg: var(--bs-secondary-bg-subtle);--bs-list-group-border-color: var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);--bs-list-group-active-color: var(--bs-secondary-bg-subtle);--bs-list-group-active-bg: var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color: var(--bs-success-text-emphasis);--bs-list-group-bg: var(--bs-success-bg-subtle);--bs-list-group-border-color: var(--bs-success-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-success-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-success-border-subtle);--bs-list-group-active-color: var(--bs-success-bg-subtle);--bs-list-group-active-bg: var(--bs-success-text-emphasis);--bs-list-group-active-border-color: var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color: var(--bs-info-text-emphasis);--bs-list-group-bg: var(--bs-info-bg-subtle);--bs-list-group-border-color: var(--bs-info-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-info-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-info-border-subtle);--bs-list-group-active-color: var(--bs-info-bg-subtle);--bs-list-group-active-bg: var(--bs-info-text-emphasis);--bs-list-group-active-border-color: var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color: var(--bs-warning-text-emphasis);--bs-list-group-bg: var(--bs-warning-bg-subtle);--bs-list-group-border-color: var(--bs-warning-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-warning-border-subtle);--bs-list-group-active-color: var(--bs-warning-bg-subtle);--bs-list-group-active-bg: var(--bs-warning-text-emphasis);--bs-list-group-active-border-color: var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color: var(--bs-danger-text-emphasis);--bs-list-group-bg: var(--bs-danger-bg-subtle);--bs-list-group-border-color: var(--bs-danger-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-danger-border-subtle);--bs-list-group-active-color: var(--bs-danger-bg-subtle);--bs-list-group-active-bg: var(--bs-danger-text-emphasis);--bs-list-group-active-border-color: var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color: var(--bs-light-text-emphasis);--bs-list-group-bg: var(--bs-light-bg-subtle);--bs-list-group-border-color: var(--bs-light-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-light-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-light-border-subtle);--bs-list-group-active-color: var(--bs-light-bg-subtle);--bs-list-group-active-bg: var(--bs-light-text-emphasis);--bs-list-group-active-border-color: var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color: var(--bs-dark-text-emphasis);--bs-list-group-bg: var(--bs-dark-bg-subtle);--bs-list-group-border-color: var(--bs-dark-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-dark-border-subtle);--bs-list-group-active-color: var(--bs-dark-bg-subtle);--bs-list-group-active-bg: var(--bs-dark-text-emphasis);--bs-list-group-active-border-color: var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color: #000;--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity: 0.5;--bs-btn-close-hover-opacity: 0.75;--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(30, 66, 135, 0.25);--bs-btn-close-focus-opacity: 1;--bs-btn-close-disabled-opacity: 0.25;--bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:rgba(0,0,0,0) var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex: 1090;--bs-toast-padding-x: 0.75rem;--bs-toast-padding-y: 0.5rem;--bs-toast-spacing: 1.5rem;--bs-toast-max-width: 350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg: rgba(255, 255, 255, 0.85);--bs-toast-border-width: 1px;--bs-toast-border-color: rgba(0, 0, 0, 0.175);--bs-toast-border-radius: 0.25rem;--bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color: rgba(33, 37, 41, 0.75);--bs-toast-header-bg: rgba(255, 255, 255, 0.85);--bs-toast-header-border-color: rgba(0, 0, 0, 0.175);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex: 1090;position:absolute;z-index:var(--bs-toast-zindex);width:max-content;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:-o-max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-0.5*var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex: 1055;--bs-modal-width: 500px;--bs-modal-padding: 1rem;--bs-modal-margin: 0.5rem;--bs-modal-color: ;--bs-modal-bg: #ffffff;--bs-modal-border-color: rgba(0, 0, 0, 0.175);--bs-modal-border-width: 1px;--bs-modal-border-radius: 0.5rem;--bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius: calc(0.5rem - 1px);--bs-modal-header-padding-x: 1rem;--bs-modal-header-padding-y: 1rem;--bs-modal-header-padding: 1rem 1rem;--bs-modal-header-border-color: #dee2e6;--bs-modal-header-border-width: 1px;--bs-modal-title-line-height: 1.5;--bs-modal-footer-gap: 0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color: #dee2e6;--bs-modal-footer-border-width: 1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin)*2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;min-height:calc(100% - var(--bs-modal-margin)*2)}.modal-content{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex: 1050;--bs-backdrop-bg: #000;--bs-backdrop-opacity: 0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);margin:calc(-0.5*var(--bs-modal-header-padding-y)) calc(-0.5*var(--bs-modal-header-padding-x)) calc(-0.5*var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:flex-end;-webkit-justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap)*.5)}@media(min-width: 576px){.modal{--bs-modal-margin: 1.75rem;--bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width: 300px}}@media(min-width: 992px){.modal-lg,.modal-xl{--bs-modal-width: 800px}}@media(min-width: 1200px){.modal-xl{--bs-modal-width: 1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header,.modal-fullscreen .modal-footer{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header,.modal-fullscreen-sm-down .modal-footer{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header,.modal-fullscreen-md-down .modal-footer{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header,.modal-fullscreen-lg-down .modal-footer{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header,.modal-fullscreen-xl-down .modal-footer{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header,.modal-fullscreen-xxl-down .modal-footer{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex: 1080;--bs-tooltip-max-width: 200px;--bs-tooltip-padding-x: 0.5rem;--bs-tooltip-padding-y: 0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color: #ffffff;--bs-tooltip-bg: #000;--bs-tooltip-border-radius: 0.25rem;--bs-tooltip-opacity: 0.9;--bs-tooltip-arrow-width: 0.8rem;--bs-tooltip-arrow-height: 0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:Roboto;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;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex: 1070;--bs-popover-max-width: 276px;--bs-popover-font-size:0.875rem;--bs-popover-bg: #ffffff;--bs-popover-border-width: 1px;--bs-popover-border-color: rgba(0, 0, 0, 0.175);--bs-popover-border-radius: 0.5rem;--bs-popover-inner-border-radius: calc(0.5rem - 1px);--bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x: 1rem;--bs-popover-header-padding-y: 0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: inherit;--bs-popover-header-bg: #e9ecef;--bs-popover-body-padding-x: 1rem;--bs-popover-body-padding-y: 1rem;--bs-popover-body-color: #212529;--bs-popover-arrow-width: 1rem;--bs-popover-arrow-height: 0.5rem;--bs-popover-arrow-border: var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:Roboto;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;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid;border-width:0}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{border-width:0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-0.5*var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) 0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y;-webkit-touch-action:pan-y;-moz-touch-action:pan-y;-ms-touch-action:pan-y;-o-touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.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:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;display:-webkit-flex;justify-content:center;-webkit-justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;-webkit-flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-grow,.spinner-border{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-border-width: 0.25em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:rgba(0,0,0,0)}.spinner-border-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem;--bs-spinner-border-width: 0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed: 1.5s}}.offcanvas,.offcanvas-xxl,.offcanvas-xl,.offcanvas-lg,.offcanvas-md,.offcanvas-sm{--bs-offcanvas-zindex: 1045;--bs-offcanvas-width: 400px;--bs-offcanvas-height: 30vh;--bs-offcanvas-padding-x: 1rem;--bs-offcanvas-padding-y: 1rem;--bs-offcanvas-color: #212529;--bs-offcanvas-bg: #ffffff;--bs-offcanvas-border-width: 1px;--bs-offcanvas-border-color: rgba(0, 0, 0, 0.175);--bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition: transform 0.3s ease-in-out;--bs-offcanvas-title-line-height: 1.5}@media(max-width: 575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 575.98px)and (prefers-reduced-motion: reduce){.offcanvas-sm{transition:none}}@media(max-width: 575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.showing,.offcanvas-sm.show:not(.hiding){transform:none}.offcanvas-sm.showing,.offcanvas-sm.hiding,.offcanvas-sm.show{visibility:visible}}@media(min-width: 576px){.offcanvas-sm{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 767.98px)and (prefers-reduced-motion: reduce){.offcanvas-md{transition:none}}@media(max-width: 767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.showing,.offcanvas-md.show:not(.hiding){transform:none}.offcanvas-md.showing,.offcanvas-md.hiding,.offcanvas-md.show{visibility:visible}}@media(min-width: 768px){.offcanvas-md{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 991.98px)and (prefers-reduced-motion: reduce){.offcanvas-lg{transition:none}}@media(max-width: 991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.showing,.offcanvas-lg.show:not(.hiding){transform:none}.offcanvas-lg.showing,.offcanvas-lg.hiding,.offcanvas-lg.show{visibility:visible}}@media(min-width: 992px){.offcanvas-lg{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1199.98px)and (prefers-reduced-motion: reduce){.offcanvas-xl{transition:none}}@media(max-width: 1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.showing,.offcanvas-xl.show:not(.hiding){transform:none}.offcanvas-xl.showing,.offcanvas-xl.hiding,.offcanvas-xl.show{visibility:visible}}@media(min-width: 1200px){.offcanvas-xl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1399.98px)and (prefers-reduced-motion: reduce){.offcanvas-xxl{transition:none}}@media(max-width: 1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.showing,.offcanvas-xxl.show:not(.hiding){transform:none}.offcanvas-xxl.showing,.offcanvas-xxl.hiding,.offcanvas-xxl.show{visibility:visible}}@media(min-width: 1400px){.offcanvas-xxl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.showing,.offcanvas.show:not(.hiding){transform:none}.offcanvas.showing,.offcanvas.hiding,.offcanvas.show{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y)*.5) calc(var(--bs-offcanvas-padding-x)*.5);margin-top:calc(-0.5*var(--bs-offcanvas-padding-y));margin-right:calc(-0.5*var(--bs-offcanvas-padding-x));margin-bottom:calc(-0.5*var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;-webkit-flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-size:200% 100%;-webkit-mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%;-webkit-mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-default{color:#000 !important;background-color:RGBA(var(--bs-default-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-primary{color:#fff !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#000 !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#000 !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.link-default{color:RGBA(var(--bs-default-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-default-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-default:hover,.link-default:focus{color:RGBA(229, 232, 235, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(229, 232, 235, var(--bs-link-underline-opacity, 1)) !important}.link-primary{color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(24, 53, 108, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(24, 53, 108, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;-webkit-flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media(prefers-reduced-motion: reduce){.icon-link>.bi{transition:none}}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-21x9{--bs-aspect-ratio: 42.8571428571%}.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}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;display:-webkit-flex;flex-direction:row;-webkit-flex-direction:row;align-items:center;-webkit-align-items:center;align-self:stretch;-webkit-align-self:stretch}.vstack{display:flex;display:-webkit-flex;flex:1 1 auto;-webkit-flex:1 1 auto;flex-direction:column;-webkit-flex-direction:column;align-self:stretch;-webkit-align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;-webkit-align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.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}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.object-fit-contain{object-fit:contain !important}.object-fit-cover{object-fit:cover !important}.object-fit-fill{object-fit:fill !important}.object-fit-scale{object-fit:scale-down !important}.object-fit-none{object-fit:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-auto{overflow-y:auto !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-y-visible{overflow-y:visible !important}.overflow-y-scroll{overflow-y:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.focus-ring-default{--bs-focus-ring-color: rgba(var(--bs-default-rgb), var(--bs-focus-ring-opacity))}.focus-ring-primary{--bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-0{border:0 !important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-top-0{border-top:0 !important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-start-0{border-left:0 !important}.border-default{--bs-border-opacity: 1;border-color:rgba(var(--bs-default-rgb), var(--bs-border-opacity)) !important}.border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important}.border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important}.border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important}.border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important}.border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important}.border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important}.border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important}.border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important}.border-black{--bs-border-opacity: 1;border-color:rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important}.border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle) !important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle) !important}.border-success-subtle{border-color:var(--bs-success-border-subtle) !important}.border-info-subtle{border-color:var(--bs-info-border-subtle) !important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle) !important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle) !important}.border-light-subtle{border-color:var(--bs-light-border-subtle) !important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle) !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.border-opacity-10{--bs-border-opacity: 0.1}.border-opacity-25{--bs-border-opacity: 0.25}.border-opacity-50{--bs-border-opacity: 0.5}.border-opacity-75{--bs-border-opacity: 0.75}.border-opacity-100{--bs-border-opacity: 1}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.row-gap-0{row-gap:0 !important}.row-gap-1{row-gap:.25rem !important}.row-gap-2{row-gap:.5rem !important}.row-gap-3{row-gap:1rem !important}.row-gap-4{row-gap:1.5rem !important}.row-gap-5{row-gap:3rem !important}.column-gap-0{column-gap:0 !important}.column-gap-1{column-gap:.25rem !important}.column-gap-2{column-gap:.5rem !important}.column-gap-3{column-gap:1rem !important}.column-gap-4{column-gap:1.5rem !important}.column-gap-5{column-gap:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.325rem + 0.9vw) !important}.fs-2{font-size:calc(1.29rem + 0.48vw) !important}.fs-3{font-size:calc(1.27rem + 0.24vw) !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.1rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-lighter{font-weight:lighter !important}.fw-light{font-weight:300 !important}.fw-normal{font-weight:400 !important}.fw-medium{font-weight:500 !important}.fw-semibold{font-weight:600 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-default{--bs-text-opacity: 1;color:rgba(var(--bs-default-rgb), var(--bs-text-opacity)) !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:rgba(255,255,255,.5) !important}.text-body-secondary{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-body-tertiary{--bs-text-opacity: 1;color:var(--bs-tertiary-color) !important}.text-body-emphasis{--bs-text-opacity: 1;color:var(--bs-emphasis-color) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis) !important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis) !important}.text-success-emphasis{color:var(--bs-success-text-emphasis) !important}.text-info-emphasis{color:var(--bs-info-text-emphasis) !important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis) !important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis) !important}.text-light-emphasis{color:var(--bs-light-text-emphasis) !important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis) !important}.link-opacity-10{--bs-link-opacity: 0.1}.link-opacity-10-hover:hover{--bs-link-opacity: 0.1}.link-opacity-25{--bs-link-opacity: 0.25}.link-opacity-25-hover:hover{--bs-link-opacity: 0.25}.link-opacity-50{--bs-link-opacity: 0.5}.link-opacity-50-hover:hover{--bs-link-opacity: 0.5}.link-opacity-75{--bs-link-opacity: 0.75}.link-opacity-75-hover:hover{--bs-link-opacity: 0.75}.link-opacity-100{--bs-link-opacity: 1}.link-opacity-100-hover:hover{--bs-link-opacity: 1}.link-offset-1{text-underline-offset:.125em !important}.link-offset-1-hover:hover{text-underline-offset:.125em !important}.link-offset-2{text-underline-offset:.25em !important}.link-offset-2-hover:hover{text-underline-offset:.25em !important}.link-offset-3{text-underline-offset:.375em !important}.link-offset-3-hover:hover{text-underline-offset:.375em !important}.link-underline-default{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-default-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-primary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-secondary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-success{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-info{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-warning{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-danger{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-light{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-dark{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important}.link-underline{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-underline-opacity-0{--bs-link-underline-opacity: 0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity: 0}.link-underline-opacity-10{--bs-link-underline-opacity: 0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity: 0.1}.link-underline-opacity-25{--bs-link-underline-opacity: 0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity: 0.25}.link-underline-opacity-50{--bs-link-underline-opacity: 0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity: 0.5}.link-underline-opacity-75{--bs-link-underline-opacity: 0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity: 0.75}.link-underline-opacity-100{--bs-link-underline-opacity: 1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity: 1}.bg-default{--bs-bg-opacity: 1;background-color:rgba(var(--bs-default-rgb), var(--bs-bg-opacity)) !important}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-body-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-body-tertiary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle) !important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle) !important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle) !important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle) !important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle) !important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle) !important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle) !important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle) !important}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:var(--bs-border-radius) !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:var(--bs-border-radius-sm) !important}.rounded-2{border-radius:var(--bs-border-radius) !important}.rounded-3{border-radius:var(--bs-border-radius-lg) !important}.rounded-4{border-radius:var(--bs-border-radius-xl) !important}.rounded-5{border-radius:var(--bs-border-radius-xxl) !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:var(--bs-border-radius-pill) !important}.rounded-top{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm) !important;border-top-right-radius:var(--bs-border-radius-sm) !important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg) !important;border-top-right-radius:var(--bs-border-radius-lg) !important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl) !important;border-top-right-radius:var(--bs-border-radius-xl) !important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl) !important;border-top-right-radius:var(--bs-border-radius-xxl) !important}.rounded-top-circle{border-top-left-radius:50% !important;border-top-right-radius:50% !important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill) !important;border-top-right-radius:var(--bs-border-radius-pill) !important}.rounded-end{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm) !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg) !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl) !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important}.rounded-end-circle{border-top-right-radius:50% !important;border-bottom-right-radius:50% !important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill) !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm) !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg) !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl) !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important}.rounded-bottom-circle{border-bottom-right-radius:50% !important;border-bottom-left-radius:50% !important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill) !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm) !important;border-top-left-radius:var(--bs-border-radius-sm) !important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg) !important;border-top-left-radius:var(--bs-border-radius-lg) !important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl) !important;border-top-left-radius:var(--bs-border-radius-xl) !important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl) !important;border-top-left-radius:var(--bs-border-radius-xxl) !important}.rounded-start-circle{border-bottom-left-radius:50% !important;border-top-left-radius:50% !important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill) !important;border-top-left-radius:var(--bs-border-radius-pill) !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.z-n1{z-index:-1 !important}.z-0{z-index:0 !important}.z-1{z-index:1 !important}.z-2{z-index:2 !important}.z-3{z-index:3 !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.object-fit-sm-contain{object-fit:contain !important}.object-fit-sm-cover{object-fit:cover !important}.object-fit-sm-fill{object-fit:fill !important}.object-fit-sm-scale{object-fit:scale-down !important}.object-fit-sm-none{object-fit:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !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:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.row-gap-sm-0{row-gap:0 !important}.row-gap-sm-1{row-gap:.25rem !important}.row-gap-sm-2{row-gap:.5rem !important}.row-gap-sm-3{row-gap:1rem !important}.row-gap-sm-4{row-gap:1.5rem !important}.row-gap-sm-5{row-gap:3rem !important}.column-gap-sm-0{column-gap:0 !important}.column-gap-sm-1{column-gap:.25rem !important}.column-gap-sm-2{column-gap:.5rem !important}.column-gap-sm-3{column-gap:1rem !important}.column-gap-sm-4{column-gap:1.5rem !important}.column-gap-sm-5{column-gap:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.object-fit-md-contain{object-fit:contain !important}.object-fit-md-cover{object-fit:cover !important}.object-fit-md-fill{object-fit:fill !important}.object-fit-md-scale{object-fit:scale-down !important}.object-fit-md-none{object-fit:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !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:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.row-gap-md-0{row-gap:0 !important}.row-gap-md-1{row-gap:.25rem !important}.row-gap-md-2{row-gap:.5rem !important}.row-gap-md-3{row-gap:1rem !important}.row-gap-md-4{row-gap:1.5rem !important}.row-gap-md-5{row-gap:3rem !important}.column-gap-md-0{column-gap:0 !important}.column-gap-md-1{column-gap:.25rem !important}.column-gap-md-2{column-gap:.5rem !important}.column-gap-md-3{column-gap:1rem !important}.column-gap-md-4{column-gap:1.5rem !important}.column-gap-md-5{column-gap:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.object-fit-lg-contain{object-fit:contain !important}.object-fit-lg-cover{object-fit:cover !important}.object-fit-lg-fill{object-fit:fill !important}.object-fit-lg-scale{object-fit:scale-down !important}.object-fit-lg-none{object-fit:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !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:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.row-gap-lg-0{row-gap:0 !important}.row-gap-lg-1{row-gap:.25rem !important}.row-gap-lg-2{row-gap:.5rem !important}.row-gap-lg-3{row-gap:1rem !important}.row-gap-lg-4{row-gap:1.5rem !important}.row-gap-lg-5{row-gap:3rem !important}.column-gap-lg-0{column-gap:0 !important}.column-gap-lg-1{column-gap:.25rem !important}.column-gap-lg-2{column-gap:.5rem !important}.column-gap-lg-3{column-gap:1rem !important}.column-gap-lg-4{column-gap:1.5rem !important}.column-gap-lg-5{column-gap:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.object-fit-xl-contain{object-fit:contain !important}.object-fit-xl-cover{object-fit:cover !important}.object-fit-xl-fill{object-fit:fill !important}.object-fit-xl-scale{object-fit:scale-down !important}.object-fit-xl-none{object-fit:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !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:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.row-gap-xl-0{row-gap:0 !important}.row-gap-xl-1{row-gap:.25rem !important}.row-gap-xl-2{row-gap:.5rem !important}.row-gap-xl-3{row-gap:1rem !important}.row-gap-xl-4{row-gap:1.5rem !important}.row-gap-xl-5{row-gap:3rem !important}.column-gap-xl-0{column-gap:0 !important}.column-gap-xl-1{column-gap:.25rem !important}.column-gap-xl-2{column-gap:.5rem !important}.column-gap-xl-3{column-gap:1rem !important}.column-gap-xl-4{column-gap:1.5rem !important}.column-gap-xl-5{column-gap:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.object-fit-xxl-contain{object-fit:contain !important}.object-fit-xxl-cover{object-fit:cover !important}.object-fit-xxl-fill{object-fit:fill !important}.object-fit-xxl-scale{object-fit:scale-down !important}.object-fit-xxl-none{object-fit:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.row-gap-xxl-0{row-gap:0 !important}.row-gap-xxl-1{row-gap:.25rem !important}.row-gap-xxl-2{row-gap:.5rem !important}.row-gap-xxl-3{row-gap:1rem !important}.row-gap-xxl-4{row-gap:1.5rem !important}.row-gap-xxl-5{row-gap:3rem !important}.column-gap-xxl-0{column-gap:0 !important}.column-gap-xxl-1{column-gap:.25rem !important}.column-gap-xxl-2{column-gap:.5rem !important}.column-gap-xxl-3{column-gap:1rem !important}.column-gap-xxl-4{column-gap:1.5rem !important}.column-gap-xxl-5{column-gap:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}.bg-default{color:#000}.bg-primary{color:#fff}.bg-secondary{color:#fff}.bg-success{color:#fff}.bg-info{color:#000}.bg-warning{color:#000}.bg-danger{color:#fff}.bg-light{color:#000}.bg-dark{color:#fff}@media(min-width: 1200px){.fs-1{font-size:2rem !important}.fs-2{font-size:1.65rem !important}.fs-3{font-size:1.45rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !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:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.bg-blue{--bslib-color-bg: #0d6efd;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #0d6efd;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #6f42c1;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #6f42c1;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #d63384;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #d63384;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #dc3545;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #fd7e14;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #fd7e14;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #ffc107;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #ffc107;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #198754;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #0dcaf0;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #dee2e6}.bg-default{--bslib-color-bg: #dee2e6;--bslib-color-fg: #000}.text-primary{--bslib-color-fg: #1E4287}.bg-primary{--bslib-color-bg: #1E4287;--bslib-color-fg: #ffffff}.text-secondary{--bslib-color-fg: #6c757d}.bg-secondary{--bslib-color-bg: #6c757d;--bslib-color-fg: #ffffff}.text-success{--bslib-color-fg: #198754}.bg-success{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff}.text-info{--bslib-color-fg: #0dcaf0}.bg-info{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000}.text-warning{--bslib-color-fg: #ffc107}.bg-warning{--bslib-color-bg: #ffc107;--bslib-color-fg: #000}.text-danger{--bslib-color-fg: #dc3545}.bg-danger{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff}.text-light{--bslib-color-fg: #f8f9fa}.bg-light{--bslib-color-bg: #f8f9fa;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #212529}.bg-dark{--bslib-color-bg: #212529;--bslib-color-fg: #ffffff}.bg-gradient-blue-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #3148f9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3148f9;color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #345ce5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #345ce5;color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #5d56cd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d56cd;color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #6057b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6057b3;color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #6d74a0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6d74a0;color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6e8f9b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6e8f9b;color:#000}.bg-gradient-blue-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #1278b9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1278b9;color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #000;--bslib-color-bg: #1592d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1592d4;color:#000}.bg-gradient-blue-cyan{--bslib-color-fg: #000;--bslib-color-bg: #0d93f8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #0d93f8;color:#000}.bg-gradient-indigo-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4236f6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4236f6;color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #6a24de;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #6a24de;color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #931ec6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #931ec6;color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #951fad;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #951fad;color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a23c99;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a23c99;color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #ffffff;--bslib-color-bg: #a35794;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a35794;color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4740b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4740b3;color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4a5ace;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4a5ace;color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #ffffff;--bslib-color-bg: #425af1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #425af1;color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4854d9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4854d9;color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #6b2ed5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #6b2ed5;color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #983ca9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #983ca9;color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #9b3d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #9b3d8f;color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a85a7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a85a7c;color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #000;--bslib-color-bg: #a97577;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a97577;color:#000}.bg-gradient-purple-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4d5e95;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4d5e95;color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4f78b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4f78b0;color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #000;--bslib-color-bg: #4878d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #4878d4;color:#000}.bg-gradient-pink-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #864bb4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #864bb4;color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #a925b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #a925b0;color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad399c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #ad399c;color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #d8346b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #d8346b;color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #000;--bslib-color-bg: #e65157;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e65157;color:#000}.bg-gradient-pink-yellow{--bslib-color-fg: #000;--bslib-color-bg: #e66c52;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #e66c52;color:#000}.bg-gradient-pink-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8a5571;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8a5571;color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #000;--bslib-color-bg: #8d6f8c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #8d6f8c;color:#000}.bg-gradient-pink-cyan{--bslib-color-fg: #000;--bslib-color-bg: #866faf;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #866faf;color:#000}.bg-gradient-red-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #894c8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #894c8f;color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad268a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #ad268a;color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #b03a77;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #b03a77;color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #da345e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #da345e;color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #000;--bslib-color-bg: #e95231;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e95231;color:#000}.bg-gradient-red-yellow{--bslib-color-fg: #000;--bslib-color-bg: #ea6d2c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #ea6d2c;color:#000}.bg-gradient-red-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8e564b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8e564b;color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #000;--bslib-color-bg: #917066;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #917066;color:#000}.bg-gradient-red-cyan{--bslib-color-fg: #000;--bslib-color-bg: #897189;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #897189;color:#000}.bg-gradient-orange-blue{--bslib-color-fg: #000;--bslib-color-bg: #9d7871;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9d7871;color:#000}.bg-gradient-orange-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c1526d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c1526d;color:#000}.bg-gradient-orange-purple{--bslib-color-fg: #000;--bslib-color-bg: #c46659;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c46659;color:#000}.bg-gradient-orange-pink{--bslib-color-fg: #000;--bslib-color-bg: #ed6041;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ed6041;color:#000}.bg-gradient-orange-red{--bslib-color-fg: #000;--bslib-color-bg: #f06128;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f06128;color:#000}.bg-gradient-orange-yellow{--bslib-color-fg: #000;--bslib-color-bg: #fe990f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #fe990f;color:#000}.bg-gradient-orange-green{--bslib-color-fg: #000;--bslib-color-bg: #a2822e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a2822e;color:#000}.bg-gradient-orange-teal{--bslib-color-fg: #000;--bslib-color-bg: #a59c48;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a59c48;color:#000}.bg-gradient-orange-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9d9c6c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9d9c6c;color:#000}.bg-gradient-yellow-blue{--bslib-color-fg: #000;--bslib-color-bg: #9ea069;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9ea069;color:#000}.bg-gradient-yellow-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c27a65;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c27a65;color:#000}.bg-gradient-yellow-purple{--bslib-color-fg: #000;--bslib-color-bg: #c58e51;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c58e51;color:#000}.bg-gradient-yellow-pink{--bslib-color-fg: #000;--bslib-color-bg: #ef8839;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ef8839;color:#000}.bg-gradient-yellow-red{--bslib-color-fg: #000;--bslib-color-bg: #f18920;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f18920;color:#000}.bg-gradient-yellow-orange{--bslib-color-fg: #000;--bslib-color-bg: #fea60c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #fea60c;color:#000}.bg-gradient-yellow-green{--bslib-color-fg: #000;--bslib-color-bg: #a3aa26;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a3aa26;color:#000}.bg-gradient-yellow-teal{--bslib-color-fg: #000;--bslib-color-bg: #a6c441;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6c441;color:#000}.bg-gradient-yellow-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9ec564;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9ec564;color:#000}.bg-gradient-green-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #147d98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #147d98;color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #385793;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #385793;color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #3b6b80;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3b6b80;color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #656567;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #656567;color:#fff}.bg-gradient-green-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #67664e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #67664e;color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #000;--bslib-color-bg: #74833a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #74833a;color:#000}.bg-gradient-green-yellow{--bslib-color-fg: #000;--bslib-color-bg: #759e35;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #759e35;color:#000}.bg-gradient-green-teal{--bslib-color-fg: #000;--bslib-color-bg: #1ca16f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1ca16f;color:#000}.bg-gradient-green-cyan{--bslib-color-fg: #000;--bslib-color-bg: #14a292;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #14a292;color:#000}.bg-gradient-teal-blue{--bslib-color-fg: #000;--bslib-color-bg: #18a5c0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #18a5c0;color:#000}.bg-gradient-teal-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3c7fbb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3c7fbb;color:#000}.bg-gradient-teal-purple{--bslib-color-fg: #000;--bslib-color-bg: #4093a8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #4093a8;color:#000}.bg-gradient-teal-pink{--bslib-color-fg: #000;--bslib-color-bg: #698d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #698d8f;color:#000}.bg-gradient-teal-red{--bslib-color-fg: #000;--bslib-color-bg: #6b8e76;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6b8e76;color:#000}.bg-gradient-teal-orange{--bslib-color-fg: #000;--bslib-color-bg: #78ab63;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #78ab63;color:#000}.bg-gradient-teal-yellow{--bslib-color-fg: #000;--bslib-color-bg: #79c65d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #79c65d;color:#000}.bg-gradient-teal-green{--bslib-color-fg: #000;--bslib-color-bg: #1daf7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1daf7c;color:#000}.bg-gradient-teal-cyan{--bslib-color-fg: #000;--bslib-color-bg: #18c9bb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #18c9bb;color:#000}.bg-gradient-cyan-blue{--bslib-color-fg: #000;--bslib-color-bg: #0da5f5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #0da5f5;color:#000}.bg-gradient-cyan-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3180f1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3180f1;color:#000}.bg-gradient-cyan-purple{--bslib-color-fg: #000;--bslib-color-bg: #3494dd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3494dd;color:#000}.bg-gradient-cyan-pink{--bslib-color-fg: #000;--bslib-color-bg: #5d8ec5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d8ec5;color:#000}.bg-gradient-cyan-red{--bslib-color-fg: #000;--bslib-color-bg: #608eac;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #608eac;color:#000}.bg-gradient-cyan-orange{--bslib-color-fg: #000;--bslib-color-bg: #6dac98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6dac98;color:#000}.bg-gradient-cyan-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6ec693;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6ec693;color:#000}.bg-gradient-cyan-green{--bslib-color-fg: #000;--bslib-color-bg: #12afb2;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #12afb2;color:#000}.bg-gradient-cyan-teal{--bslib-color-fg: #000;--bslib-color-bg: #15cacc;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #15cacc;color:#000}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}.bg-blue{--bslib-color-bg: #0d6efd;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #0d6efd;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #6f42c1;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #6f42c1;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #d63384;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #d63384;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #dc3545;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #fd7e14;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #fd7e14;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #ffc107;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #ffc107;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #198754;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #0dcaf0;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #dee2e6}.bg-default{--bslib-color-bg: #dee2e6;--bslib-color-fg: #000}.text-primary{--bslib-color-fg: #1E4287}.bg-primary{--bslib-color-bg: #1E4287;--bslib-color-fg: #ffffff}.text-secondary{--bslib-color-fg: #6c757d}.bg-secondary{--bslib-color-bg: #6c757d;--bslib-color-fg: #ffffff}.text-success{--bslib-color-fg: #198754}.bg-success{--bslib-color-bg: #198754;--bslib-color-fg: #ffffff}.text-info{--bslib-color-fg: #0dcaf0}.bg-info{--bslib-color-bg: #0dcaf0;--bslib-color-fg: #000}.text-warning{--bslib-color-fg: #ffc107}.bg-warning{--bslib-color-bg: #ffc107;--bslib-color-fg: #000}.text-danger{--bslib-color-fg: #dc3545}.bg-danger{--bslib-color-bg: #dc3545;--bslib-color-fg: #ffffff}.text-light{--bslib-color-fg: #f8f9fa}.bg-light{--bslib-color-bg: #f8f9fa;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #212529}.bg-dark{--bslib-color-bg: #212529;--bslib-color-fg: #ffffff}.bg-gradient-blue-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #3148f9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3148f9;color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #345ce5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #345ce5;color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #5d56cd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d56cd;color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #6057b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6057b3;color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #6d74a0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6d74a0;color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6e8f9b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6e8f9b;color:#000}.bg-gradient-blue-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #1278b9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1278b9;color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #000;--bslib-color-bg: #1592d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1592d4;color:#000}.bg-gradient-blue-cyan{--bslib-color-fg: #000;--bslib-color-bg: #0d93f8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0d6efd var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #0d93f8;color:#000}.bg-gradient-indigo-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4236f6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4236f6;color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #6a24de;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #6a24de;color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #931ec6;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #931ec6;color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #951fad;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #951fad;color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a23c99;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a23c99;color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #ffffff;--bslib-color-bg: #a35794;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a35794;color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4740b3;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4740b3;color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4a5ace;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4a5ace;color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #ffffff;--bslib-color-bg: #425af1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #425af1;color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #4854d9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #4854d9;color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #6b2ed5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #6b2ed5;color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #983ca9;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #983ca9;color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #9b3d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #9b3d8f;color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #ffffff;--bslib-color-bg: #a85a7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #a85a7c;color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #000;--bslib-color-bg: #a97577;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #a97577;color:#000}.bg-gradient-purple-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #4d5e95;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #4d5e95;color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #ffffff;--bslib-color-bg: #4f78b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #4f78b0;color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #000;--bslib-color-bg: #4878d4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #4878d4;color:#000}.bg-gradient-pink-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #864bb4;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #864bb4;color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #a925b0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #a925b0;color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad399c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #ad399c;color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #d8346b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #d8346b;color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #000;--bslib-color-bg: #e65157;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e65157;color:#000}.bg-gradient-pink-yellow{--bslib-color-fg: #000;--bslib-color-bg: #e66c52;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #e66c52;color:#000}.bg-gradient-pink-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8a5571;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8a5571;color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #000;--bslib-color-bg: #8d6f8c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #8d6f8c;color:#000}.bg-gradient-pink-cyan{--bslib-color-fg: #000;--bslib-color-bg: #866faf;background:linear-gradient(var(--bg-gradient-deg, 140deg), #d63384 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #866faf;color:#000}.bg-gradient-red-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #894c8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #894c8f;color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #ad268a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #ad268a;color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #b03a77;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #b03a77;color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #da345e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #da345e;color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #000;--bslib-color-bg: #e95231;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #e95231;color:#000}.bg-gradient-red-yellow{--bslib-color-fg: #000;--bslib-color-bg: #ea6d2c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #ea6d2c;color:#000}.bg-gradient-red-green{--bslib-color-fg: #ffffff;--bslib-color-bg: #8e564b;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #8e564b;color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #000;--bslib-color-bg: #917066;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #917066;color:#000}.bg-gradient-red-cyan{--bslib-color-fg: #000;--bslib-color-bg: #897189;background:linear-gradient(var(--bg-gradient-deg, 140deg), #dc3545 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #897189;color:#000}.bg-gradient-orange-blue{--bslib-color-fg: #000;--bslib-color-bg: #9d7871;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9d7871;color:#000}.bg-gradient-orange-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c1526d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c1526d;color:#000}.bg-gradient-orange-purple{--bslib-color-fg: #000;--bslib-color-bg: #c46659;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c46659;color:#000}.bg-gradient-orange-pink{--bslib-color-fg: #000;--bslib-color-bg: #ed6041;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ed6041;color:#000}.bg-gradient-orange-red{--bslib-color-fg: #000;--bslib-color-bg: #f06128;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f06128;color:#000}.bg-gradient-orange-yellow{--bslib-color-fg: #000;--bslib-color-bg: #fe990f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #fe990f;color:#000}.bg-gradient-orange-green{--bslib-color-fg: #000;--bslib-color-bg: #a2822e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a2822e;color:#000}.bg-gradient-orange-teal{--bslib-color-fg: #000;--bslib-color-bg: #a59c48;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a59c48;color:#000}.bg-gradient-orange-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9d9c6c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9d9c6c;color:#000}.bg-gradient-yellow-blue{--bslib-color-fg: #000;--bslib-color-bg: #9ea069;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #9ea069;color:#000}.bg-gradient-yellow-indigo{--bslib-color-fg: #000;--bslib-color-bg: #c27a65;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #c27a65;color:#000}.bg-gradient-yellow-purple{--bslib-color-fg: #000;--bslib-color-bg: #c58e51;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #c58e51;color:#000}.bg-gradient-yellow-pink{--bslib-color-fg: #000;--bslib-color-bg: #ef8839;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #ef8839;color:#000}.bg-gradient-yellow-red{--bslib-color-fg: #000;--bslib-color-bg: #f18920;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #f18920;color:#000}.bg-gradient-yellow-orange{--bslib-color-fg: #000;--bslib-color-bg: #fea60c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #fea60c;color:#000}.bg-gradient-yellow-green{--bslib-color-fg: #000;--bslib-color-bg: #a3aa26;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #a3aa26;color:#000}.bg-gradient-yellow-teal{--bslib-color-fg: #000;--bslib-color-bg: #a6c441;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #a6c441;color:#000}.bg-gradient-yellow-cyan{--bslib-color-fg: #000;--bslib-color-bg: #9ec564;background:linear-gradient(var(--bg-gradient-deg, 140deg), #ffc107 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #9ec564;color:#000}.bg-gradient-green-blue{--bslib-color-fg: #ffffff;--bslib-color-bg: #147d98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #147d98;color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #ffffff;--bslib-color-bg: #385793;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #385793;color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #ffffff;--bslib-color-bg: #3b6b80;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3b6b80;color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #ffffff;--bslib-color-bg: #656567;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #656567;color:#fff}.bg-gradient-green-red{--bslib-color-fg: #ffffff;--bslib-color-bg: #67664e;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #67664e;color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #000;--bslib-color-bg: #74833a;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #74833a;color:#000}.bg-gradient-green-yellow{--bslib-color-fg: #000;--bslib-color-bg: #759e35;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #759e35;color:#000}.bg-gradient-green-teal{--bslib-color-fg: #000;--bslib-color-bg: #1ca16f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #1ca16f;color:#000}.bg-gradient-green-cyan{--bslib-color-fg: #000;--bslib-color-bg: #14a292;background:linear-gradient(var(--bg-gradient-deg, 140deg), #198754 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #14a292;color:#000}.bg-gradient-teal-blue{--bslib-color-fg: #000;--bslib-color-bg: #18a5c0;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #18a5c0;color:#000}.bg-gradient-teal-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3c7fbb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3c7fbb;color:#000}.bg-gradient-teal-purple{--bslib-color-fg: #000;--bslib-color-bg: #4093a8;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #4093a8;color:#000}.bg-gradient-teal-pink{--bslib-color-fg: #000;--bslib-color-bg: #698d8f;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #698d8f;color:#000}.bg-gradient-teal-red{--bslib-color-fg: #000;--bslib-color-bg: #6b8e76;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #6b8e76;color:#000}.bg-gradient-teal-orange{--bslib-color-fg: #000;--bslib-color-bg: #78ab63;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #78ab63;color:#000}.bg-gradient-teal-yellow{--bslib-color-fg: #000;--bslib-color-bg: #79c65d;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #79c65d;color:#000}.bg-gradient-teal-green{--bslib-color-fg: #000;--bslib-color-bg: #1daf7c;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #1daf7c;color:#000}.bg-gradient-teal-cyan{--bslib-color-fg: #000;--bslib-color-bg: #18c9bb;background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #0dcaf0 var(--bg-gradient-end, 180%)) #18c9bb;color:#000}.bg-gradient-cyan-blue{--bslib-color-fg: #000;--bslib-color-bg: #0da5f5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #0d6efd var(--bg-gradient-end, 180%)) #0da5f5;color:#000}.bg-gradient-cyan-indigo{--bslib-color-fg: #000;--bslib-color-bg: #3180f1;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) #3180f1;color:#000}.bg-gradient-cyan-purple{--bslib-color-fg: #000;--bslib-color-bg: #3494dd;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) #3494dd;color:#000}.bg-gradient-cyan-pink{--bslib-color-fg: #000;--bslib-color-bg: #5d8ec5;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #d63384 var(--bg-gradient-end, 180%)) #5d8ec5;color:#000}.bg-gradient-cyan-red{--bslib-color-fg: #000;--bslib-color-bg: #608eac;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #dc3545 var(--bg-gradient-end, 180%)) #608eac;color:#000}.bg-gradient-cyan-orange{--bslib-color-fg: #000;--bslib-color-bg: #6dac98;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) #6dac98;color:#000}.bg-gradient-cyan-yellow{--bslib-color-fg: #000;--bslib-color-bg: #6ec693;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #ffc107 var(--bg-gradient-end, 180%)) #6ec693;color:#000}.bg-gradient-cyan-green{--bslib-color-fg: #000;--bslib-color-bg: #12afb2;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #198754 var(--bg-gradient-end, 180%)) #12afb2;color:#000}.bg-gradient-cyan-teal{--bslib-color-fg: #000;--bslib-color-bg: #15cacc;background:linear-gradient(var(--bg-gradient-deg, 140deg), #0dcaf0 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) #15cacc;color:#000}:root{--bslib-value-box-shadow: none;--bslib-value-box-border-width-auto-yes: var(--bslib-value-box-border-width-baseline);--bslib-value-box-border-width-auto-no: 0;--bslib-value-box-border-width-baseline: 1px}.bslib-value-box{border-width:var(--bslib-value-box-border-width-auto-no, var(--bslib-value-box-border-width-baseline));container-name:bslib-value-box;container-type:inline-size}.bslib-value-box.card{box-shadow:var(--bslib-value-box-shadow)}.bslib-value-box.border-auto{border-width:var(--bslib-value-box-border-width-auto-yes, var(--bslib-value-box-border-width-baseline))}.bslib-value-box.default{--bslib-value-box-bg-default: var(--bs-card-bg, #ffffff);--bslib-value-box-border-color-default: var(--bs-card-border-color, rgba(0, 0, 0, 0.175));color:var(--bslib-value-box-color);background-color:var(--bslib-value-box-bg, var(--bslib-value-box-bg-default));border-color:var(--bslib-value-box-border-color, var(--bslib-value-box-border-color-default))}.bslib-value-box .value-box-grid{display:grid;grid-template-areas:"left right";align-items:center;overflow:hidden}.bslib-value-box .value-box-showcase{height:100%;max-height:var(---bslib-value-box-showcase-max-h, 100%)}.bslib-value-box .value-box-showcase,.bslib-value-box .value-box-showcase>.html-fill-item{width:100%}.bslib-value-box[data-full-screen=true] .value-box-showcase{max-height:var(---bslib-value-box-showcase-max-h-fs, 100%)}@media screen and (min-width: 575.98px){@container bslib-value-box (max-width: 300px){.bslib-value-box:not(.showcase-bottom) .value-box-grid{grid-template-columns:1fr !important;grid-template-rows:auto auto;grid-template-areas:"top" "bottom"}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-showcase{grid-area:top !important}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-area{grid-area:bottom !important;justify-content:end}}}.bslib-value-box .value-box-area{justify-content:center;padding:1.5rem 1rem;font-size:.9rem;font-weight:500}.bslib-value-box .value-box-area *{margin-bottom:0;margin-top:0}.bslib-value-box .value-box-title{font-size:1rem;margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2}.bslib-value-box .value-box-title:empty::after{content:" "}.bslib-value-box .value-box-value{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2}@media(min-width: 1200px){.bslib-value-box .value-box-value{font-size:1.65rem}}.bslib-value-box .value-box-value:empty::after{content:" "}.bslib-value-box .value-box-showcase{align-items:center;justify-content:center;margin-top:auto;margin-bottom:auto;padding:1rem}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{opacity:.85;min-width:50px;max-width:125%}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{font-size:4rem}.bslib-value-box.showcase-top-right .value-box-grid{grid-template-columns:1fr var(---bslib-value-box-showcase-w, 50%)}.bslib-value-box.showcase-top-right .value-box-grid .value-box-showcase{grid-area:right;margin-left:auto;align-self:start;align-items:end;padding-left:0;padding-bottom:0}.bslib-value-box.showcase-top-right .value-box-grid .value-box-area{grid-area:left;align-self:end}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid{grid-template-columns:auto var(---bslib-value-box-showcase-w-fs, 1fr)}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid>div{align-self:center}.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-showcase{margin-top:0}@container bslib-value-box (max-width: 300px){.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-grid .value-box-showcase{padding-left:1rem}}.bslib-value-box.showcase-left-center .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w, 30%) auto}.bslib-value-box.showcase-left-center[data-full-screen=true] .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w-fs, 1fr) auto}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-showcase{grid-area:left}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-area{grid-area:right}.bslib-value-box.showcase-bottom .value-box-grid{grid-template-columns:1fr;grid-template-rows:1fr var(---bslib-value-box-showcase-h, auto);grid-template-areas:"top" "bottom";overflow:hidden}.bslib-value-box.showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.bslib-value-box.showcase-bottom .value-box-grid .value-box-area{grid-area:top}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid{grid-template-rows:1fr var(---bslib-value-box-showcase-h-fs, 2fr)}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid .value-box-showcase{padding:1rem}[data-bs-theme=dark] .bslib-value-box{--bslib-value-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 50%)}@media(min-width: 576px){.nav:not(.nav-hidden){display:flex !important;display:-webkit-flex !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column){float:none !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.bslib-nav-spacer{margin-left:auto !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.form-inline{margin-top:auto;margin-bottom:auto}.nav:not(.nav-hidden).nav-stacked{flex-direction:column;-webkit-flex-direction:column;height:100%}.nav:not(.nav-hidden).nav-stacked>.bslib-nav-spacer{margin-top:auto !important}}.accordion .accordion-header{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-family:"Miriam Libre";font-weight:500;line-height:1.2;color:var(--bs-heading-color);margin-bottom:0}@media(min-width: 1200px){.accordion .accordion-header{font-size:1.65rem}}.accordion .accordion-icon:not(:empty){margin-right:.75rem;display:flex}.accordion .accordion-button:not(.collapsed){box-shadow:none}.accordion .accordion-button:not(.collapsed):focus{box-shadow:var(--bs-accordion-btn-focus-box-shadow)}html{height:100%}.bslib-page-fill{width:100%;height:100%;margin:0;padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}@media(max-width: 575.98px){.bslib-page-fill{height:var(--bslib-page-fill-mobile-height, auto)}}.navbar+.container-fluid:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-sm:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-md:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-lg:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xl:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xxl:has(>.tab-content>.tab-pane.active.html-fill-container){padding-left:0;padding-right:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container{padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child){padding:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]){border-left:none;border-right:none;border-bottom:none}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]){border-radius:0}.navbar+div>.bslib-sidebar-layout{border-top:var(--bslib-sidebar-border)}.bslib-sidebar-layout{--bslib-sidebar-transition-duration: 500ms;--bslib-sidebar-transition-easing-x: cubic-bezier(0.8, 0.78, 0.22, 1.07);--bslib-sidebar-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-border-radius: var(--bs-border-radius);--bslib-sidebar-vert-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.05);--bslib-sidebar-fg: var(--bs-emphasis-color, black);--bslib-sidebar-main-fg: var(--bs-card-color, var(--bs-body-color));--bslib-sidebar-main-bg: var(--bs-card-bg, var(--bs-body-bg));--bslib-sidebar-toggle-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.1);--bslib-sidebar-padding: calc(var(--bslib-spacer) * 1.5);--bslib-sidebar-icon-size: var(--bslib-spacer, 1rem);--bslib-sidebar-icon-button-size: calc(var(--bslib-sidebar-icon-size, 1rem) * 2);--bslib-sidebar-padding-icon: calc(var(--bslib-sidebar-icon-button-size, 2rem) * 1.5);--bslib-collapse-toggle-border-radius: var(--bs-border-radius, 0.25rem);--bslib-collapse-toggle-transform: 0deg;--bslib-sidebar-toggle-transition-easing: cubic-bezier(1, 0, 0, 1);--bslib-collapse-toggle-right-transform: 180deg;--bslib-sidebar-column-main: minmax(0, 1fr);display:grid !important;grid-template-columns:min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px)) var(--bslib-sidebar-column-main);position:relative;transition:grid-template-columns ease-in-out var(--bslib-sidebar-transition-duration);border:var(--bslib-sidebar-border);border-radius:var(--bslib-sidebar-border-radius)}@media(prefers-reduced-motion: reduce){.bslib-sidebar-layout{transition:none}}.bslib-sidebar-layout[data-bslib-sidebar-border=false]{border:none}.bslib-sidebar-layout[data-bslib-sidebar-border-radius=false]{border-radius:initial}.bslib-sidebar-layout>.main,.bslib-sidebar-layout>.sidebar{grid-row:1/2;border-radius:inherit;overflow:auto}.bslib-sidebar-layout>.main{grid-column:2/3;border-top-left-radius:0;border-bottom-left-radius:0;padding:var(--bslib-sidebar-padding);transition:padding var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration);color:var(--bslib-sidebar-main-fg);background-color:var(--bslib-sidebar-main-bg)}.bslib-sidebar-layout>.sidebar{grid-column:1/2;width:100%;height:100%;border-right:var(--bslib-sidebar-vert-border);border-top-right-radius:0;border-bottom-right-radius:0;color:var(--bslib-sidebar-fg);background-color:var(--bslib-sidebar-bg);backdrop-filter:blur(5px)}.bslib-sidebar-layout>.sidebar>.sidebar-content{display:flex;flex-direction:column;gap:var(--bslib-spacer, 1rem);padding:var(--bslib-sidebar-padding);padding-top:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout>.sidebar>.sidebar-content>:last-child:not(.sidebar-title){margin-bottom:0}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion{margin-left:calc(-1*var(--bslib-sidebar-padding));margin-right:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:last-child{margin-bottom:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child){margin-bottom:1rem}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion .accordion-body{display:flex;flex-direction:column}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:first-child) .accordion-item:first-child{border-top:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child) .accordion-item:last-child{border-bottom:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content.has-accordion>.sidebar-title{border-bottom:none;padding-bottom:0}.bslib-sidebar-layout>.sidebar .shiny-input-container{width:100%}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar>.sidebar-content{padding-top:var(--bslib-sidebar-padding)}.bslib-sidebar-layout>.collapse-toggle{grid-row:1/2;grid-column:1/2;display:inline-flex;align-items:center;position:absolute;right:calc(var(--bslib-sidebar-icon-size));top:calc(var(--bslib-sidebar-icon-size, 1rem)/2);border:none;border-radius:var(--bslib-collapse-toggle-border-radius);height:var(--bslib-sidebar-icon-button-size, 2rem);width:var(--bslib-sidebar-icon-button-size, 2rem);display:flex;align-items:center;justify-content:center;padding:0;color:var(--bslib-sidebar-fg);background-color:unset;transition:color var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),top var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),right var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),left var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover{background-color:var(--bslib-sidebar-toggle-bg)}.bslib-sidebar-layout>.collapse-toggle>.collapse-icon{opacity:.8;width:var(--bslib-sidebar-icon-size);height:var(--bslib-sidebar-icon-size);transform:rotateY(var(--bslib-collapse-toggle-transform));transition:transform var(--bslib-sidebar-toggle-transition-easing) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover>.collapse-icon{opacity:1}.bslib-sidebar-layout .sidebar-title{font-size:1.25rem;line-height:1.25;margin-top:0;margin-bottom:1rem;padding-bottom:1rem;border-bottom:var(--bslib-sidebar-border)}.bslib-sidebar-layout.sidebar-right{grid-template-columns:var(--bslib-sidebar-column-main) min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px))}.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/2;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit}.bslib-sidebar-layout.sidebar-right>.sidebar{grid-column:2/3;border-right:none;border-left:var(--bslib-sidebar-vert-border);border-top-left-radius:0;border-bottom-left-radius:0}.bslib-sidebar-layout.sidebar-right>.collapse-toggle{grid-column:2/3;left:var(--bslib-sidebar-icon-size);right:unset;border:var(--bslib-collapse-toggle-border)}.bslib-sidebar-layout.sidebar-right>.collapse-toggle>.collapse-icon{transform:rotateY(var(--bslib-collapse-toggle-right-transform))}.bslib-sidebar-layout.sidebar-collapsed{--bslib-collapse-toggle-transform: 180deg;--bslib-collapse-toggle-right-transform: 0deg;--bslib-sidebar-vert-border: none;grid-template-columns:0 minmax(0, 1fr)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right{grid-template-columns:minmax(0, 1fr) 0}.bslib-sidebar-layout.sidebar-collapsed:not(.transitioning)>.sidebar>*{display:none}.bslib-sidebar-layout.sidebar-collapsed>.main{border-radius:inherit}.bslib-sidebar-layout.sidebar-collapsed:not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed>.collapse-toggle{color:var(--bslib-sidebar-main-fg);top:calc(var(--bslib-sidebar-overlap-counter, 0)*(var(--bslib-sidebar-icon-size) + var(--bslib-sidebar-padding)) + var(--bslib-sidebar-icon-size, 1rem)/2);right:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px))}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.collapse-toggle{left:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px));right:unset}@media(min-width: 576px){.bslib-sidebar-layout.transitioning>.sidebar>.sidebar-content{display:none}}@media(max-width: 575.98px){.bslib-sidebar-layout[data-bslib-sidebar-open=desktop]{--bslib-sidebar-js-init-collapsed: true}.bslib-sidebar-layout>.sidebar,.bslib-sidebar-layout.sidebar-right>.sidebar{border:none}.bslib-sidebar-layout>.main,.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/3}.bslib-sidebar-layout[data-bslib-sidebar-open=always]{display:block !important}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar{max-height:var(--bslib-sidebar-max-height-mobile);overflow-y:auto;border-top:var(--bslib-sidebar-vert-border)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]){grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.sidebar{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.collapse-toggle{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed.sidebar-right{grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always])>.main{opacity:0;transition:opacity var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed>.main{opacity:1}}.bslib-card{overflow:auto}.bslib-card .card-body+.card-body{padding-top:0}.bslib-card .card-body{overflow:auto}.bslib-card .card-body p{margin-top:0}.bslib-card .card-body p:last-child{margin-bottom:0}.bslib-card .card-body{max-height:var(--bslib-card-body-max-height, none)}.bslib-card[data-full-screen=true]>.card-body{max-height:var(--bslib-card-body-max-height-full-screen, none)}.bslib-card .card-header .form-group{margin-bottom:0}.bslib-card .card-header .selectize-control{margin-bottom:0}.bslib-card .card-header .selectize-control .item{margin-right:1.15rem}.bslib-card .card-footer{margin-top:auto}.bslib-card .bslib-navs-card-title{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.bslib-card .bslib-navs-card-title .nav{margin-left:auto}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border=true]){border:none}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border-radius=true]){border-top-left-radius:0;border-top-right-radius:0}[data-full-screen=true]{position:fixed;inset:3.5rem 1rem 1rem;height:auto !important;max-height:none !important;width:auto !important;z-index:1070}.bslib-full-screen-enter{display:none;position:absolute;bottom:var(--bslib-full-screen-enter-bottom, 0.2rem);right:var(--bslib-full-screen-enter-right, 0);top:var(--bslib-full-screen-enter-top);left:var(--bslib-full-screen-enter-left);color:var(--bslib-color-fg, var(--bs-card-color));background-color:var(--bslib-color-bg, var(--bs-card-bg, var(--bs-body-bg)));border:var(--bs-card-border-width) solid var(--bslib-color-fg, var(--bs-card-border-color));box-shadow:0 2px 4px rgba(0,0,0,.15);margin:.2rem .4rem;padding:.55rem !important;font-size:.8rem;cursor:pointer;opacity:.7;z-index:1070}.bslib-full-screen-enter:hover{opacity:1}.card[data-full-screen=false]:hover>*>.bslib-full-screen-enter{display:block}.bslib-has-full-screen .card:hover>*>.bslib-full-screen-enter{display:none}@media(max-width: 575.98px){.bslib-full-screen-enter{display:none !important}}.bslib-full-screen-exit{position:relative;top:1.35rem;font-size:.9rem;cursor:pointer;text-decoration:none;display:flex;float:right;margin-right:2.15rem;align-items:center;color:rgba(var(--bs-body-bg-rgb), 0.8)}.bslib-full-screen-exit:hover{color:rgba(var(--bs-body-bg-rgb), 1)}.bslib-full-screen-exit svg{margin-left:.5rem;font-size:1.5rem}#bslib-full-screen-overlay{position:fixed;inset:0;background-color:rgba(var(--bs-body-color-rgb), 0.6);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);z-index:1069;animation:bslib-full-screen-overlay-enter 400ms cubic-bezier(0.6, 0.02, 0.65, 1) forwards}@keyframes bslib-full-screen-overlay-enter{0%{opacity:0}100%{opacity:1}}:root{--bslib-page-sidebar-title-bg: #f8f9fa;--bslib-page-sidebar-title-color: #000}.bslib-page-title{background-color:var(--bslib-page-sidebar-title-bg);color:var(--bslib-page-sidebar-title-color);font-size:1.25rem;font-weight:300;padding:var(--bslib-spacer, 1rem);padding-left:1.5rem;margin-bottom:0;border-bottom:1px solid #dee2e6}.bslib-grid{display:grid !important;gap:var(--bslib-spacer, 1rem);height:var(--bslib-grid-height)}.bslib-grid.grid{grid-template-columns:repeat(var(--bs-columns, 12), minmax(0, 1fr));grid-template-rows:unset;grid-auto-rows:var(--bslib-grid--row-heights);--bslib-grid--row-heights--xs: unset;--bslib-grid--row-heights--sm: unset;--bslib-grid--row-heights--md: unset;--bslib-grid--row-heights--lg: unset;--bslib-grid--row-heights--xl: unset;--bslib-grid--row-heights--xxl: unset}.bslib-grid.grid.bslib-grid--row-heights--xs{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xs)}@media(min-width: 576px){.bslib-grid.grid.bslib-grid--row-heights--sm{--bslib-grid--row-heights: var(--bslib-grid--row-heights--sm)}}@media(min-width: 768px){.bslib-grid.grid.bslib-grid--row-heights--md{--bslib-grid--row-heights: var(--bslib-grid--row-heights--md)}}@media(min-width: 992px){.bslib-grid.grid.bslib-grid--row-heights--lg{--bslib-grid--row-heights: var(--bslib-grid--row-heights--lg)}}@media(min-width: 1200px){.bslib-grid.grid.bslib-grid--row-heights--xl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xl)}}@media(min-width: 1400px){.bslib-grid.grid.bslib-grid--row-heights--xxl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xxl)}}.bslib-grid>*>.shiny-input-container{width:100%}.bslib-grid-item{grid-column:auto/span 1}@media(max-width: 767.98px){.bslib-grid-item{grid-column:1/-1}}@media(max-width: 575.98px){.bslib-grid{grid-template-columns:1fr !important;height:var(--bslib-grid-height-mobile)}.bslib-grid.grid{height:unset !important;grid-auto-rows:var(--bslib-grid--row-heights--xs, auto)}}.html-fill-container{display:flex;flex-direction:column;min-height:0;min-width:0}.html-fill-container>.html-fill-item{flex:1 1 auto;min-height:0;min-width:0}.html-fill-container>:not(.html-fill-item){flex:0 0 auto}.quarto-container{min-height:calc(100vh - 132px)}body.hypothesis-enabled #quarto-header{margin-right:16px}footer.footer .nav-footer,#quarto-header>nav{padding-left:1em;padding-right:1em}footer.footer div.nav-footer p:first-child{margin-top:0}footer.footer div.nav-footer p:last-child{margin-bottom:0}#quarto-content>*{padding-top:14px}#quarto-content>#quarto-sidebar-glass{padding-top:0px}@media(max-width: 991.98px){#quarto-content>*{padding-top:0}#quarto-content .subtitle{padding-top:14px}#quarto-content section:first-of-type h2:first-of-type,#quarto-content section:first-of-type .h2:first-of-type{margin-top:1rem}}.headroom-target,header.headroom{will-change:transform;transition:position 200ms linear;transition:all 200ms linear}header.headroom--pinned{transform:translateY(0%)}header.headroom--unpinned{transform:translateY(-100%)}.navbar-container{width:100%}.navbar-brand{overflow:hidden;text-overflow:ellipsis}.navbar-brand-container{max-width:calc(100% - 115px);min-width:0;display:flex;align-items:center}@media(min-width: 992px){.navbar-brand-container{margin-right:1em}}.navbar-brand.navbar-brand-logo{margin-right:4px;display:inline-flex}.navbar-toggler{flex-basis:content;flex-shrink:0}.navbar .navbar-brand-container{order:2}.navbar .navbar-toggler{order:1}.navbar .navbar-container>.navbar-nav{order:20}.navbar .navbar-container>.navbar-brand-container{margin-left:0 !important;margin-right:0 !important}.navbar .navbar-collapse{order:20}.navbar #quarto-search{order:4;margin-left:auto}.navbar .navbar-toggler{margin-right:.5em}.navbar-collapse .quarto-navbar-tools{margin-left:.5em}.navbar-logo{max-height:24px;width:auto;padding-right:4px}nav .nav-item:not(.compact){padding-top:1px}nav .nav-link i,nav .dropdown-item i{padding-right:1px}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.6rem;padding-right:.6rem}nav .nav-item.compact .nav-link{padding-left:.5rem;padding-right:.5rem;font-size:1.1rem}.navbar .quarto-navbar-tools{order:3}.navbar .quarto-navbar-tools div.dropdown{display:inline-block}.navbar .quarto-navbar-tools .quarto-navigation-tool{color:#545555}.navbar .quarto-navbar-tools .quarto-navigation-tool:hover{color:#1e4287}.navbar-nav .dropdown-menu{min-width:220px;font-size:.9rem}.navbar .navbar-nav .nav-link.dropdown-toggle::after{opacity:.75;vertical-align:.175em}.navbar ul.dropdown-menu{padding-top:0;padding-bottom:0}.navbar .dropdown-header{text-transform:uppercase;font-size:.8rem;padding:0 .5rem}.navbar .dropdown-item{padding:.4rem .5rem}.navbar .dropdown-item>i.bi{margin-left:.1rem;margin-right:.25em}.sidebar #quarto-search{margin-top:-1px}.sidebar #quarto-search svg.aa-SubmitIcon{width:16px;height:16px}.sidebar-navigation a{color:inherit}.sidebar-title{margin-top:.25rem;padding-bottom:.5rem;font-size:1.3rem;line-height:1.6rem;visibility:visible}.sidebar-title>a{font-size:inherit;text-decoration:none}.sidebar-title .sidebar-tools-main{margin-top:-6px}@media(max-width: 991.98px){#quarto-sidebar div.sidebar-header{padding-top:.2em}}.sidebar-header-stacked .sidebar-title{margin-top:.6rem}.sidebar-logo{max-width:90%;padding-bottom:.5rem}.sidebar-logo-link{text-decoration:none}.sidebar-navigation li a{text-decoration:none}.sidebar-navigation .quarto-navigation-tool{opacity:.7;font-size:.875rem}#quarto-sidebar>nav>.sidebar-tools-main{margin-left:14px}.sidebar-tools-main{display:inline-flex;margin-left:0px;order:2}.sidebar-tools-main:not(.tools-wide){vertical-align:middle}.sidebar-navigation .quarto-navigation-tool.dropdown-toggle::after{display:none}.sidebar.sidebar-navigation>*{padding-top:1em}.sidebar-item{margin-bottom:.2em;line-height:1rem;margin-top:.4rem}.sidebar-section{padding-left:.5em;padding-bottom:.2em}.sidebar-item .sidebar-item-container{display:flex;justify-content:space-between;cursor:pointer}.sidebar-item-toggle:hover{cursor:pointer}.sidebar-item .sidebar-item-toggle .bi{font-size:.7rem;text-align:center}.sidebar-item .sidebar-item-toggle .bi-chevron-right::before{transition:transform 200ms ease}.sidebar-item .sidebar-item-toggle[aria-expanded=false] .bi-chevron-right::before{transform:none}.sidebar-item .sidebar-item-toggle[aria-expanded=true] .bi-chevron-right::before{transform:rotate(90deg)}.sidebar-item-text{width:100%}.sidebar-navigation .sidebar-divider{margin-left:0;margin-right:0;margin-top:.5rem;margin-bottom:.5rem}@media(max-width: 991.98px){.quarto-secondary-nav{display:block}.quarto-secondary-nav button.quarto-search-button{padding-right:0em;padding-left:2em}.quarto-secondary-nav button.quarto-btn-toggle{margin-left:-0.75rem;margin-right:.15rem}.quarto-secondary-nav nav.quarto-title-breadcrumbs{display:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs{display:flex;align-items:center;padding-right:1em;margin-left:-0.25em}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{text-decoration:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs ol.breadcrumb{margin-bottom:0}}@media(min-width: 992px){.quarto-secondary-nav{display:none}}.quarto-title-breadcrumbs .breadcrumb{margin-bottom:.5em;font-size:.9rem}.quarto-title-breadcrumbs .breadcrumb li:last-of-type a{color:#6c757d}.quarto-secondary-nav .quarto-btn-toggle{color:#595959}.quarto-secondary-nav[aria-expanded=false] .quarto-btn-toggle .bi-chevron-right::before{transform:none}.quarto-secondary-nav[aria-expanded=true] .quarto-btn-toggle .bi-chevron-right::before{transform:rotate(90deg)}.quarto-secondary-nav .quarto-btn-toggle .bi-chevron-right::before{transition:transform 200ms ease}.quarto-secondary-nav{cursor:pointer}.no-decor{text-decoration:none}.quarto-secondary-nav-title{margin-top:.3em;color:#595959;padding-top:4px}.quarto-secondary-nav nav.quarto-page-breadcrumbs{color:#595959}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{color:#595959}.quarto-secondary-nav nav.quarto-page-breadcrumbs a:hover{color:rgba(30,66,135,.8)}.quarto-secondary-nav nav.quarto-page-breadcrumbs .breadcrumb-item::before{color:#8c8c8c}.breadcrumb-item{line-height:1.2rem}div.sidebar-item-container{color:#595959}div.sidebar-item-container:hover,div.sidebar-item-container:focus{color:rgba(30,66,135,.8)}div.sidebar-item-container.disabled{color:rgba(89,89,89,.75)}div.sidebar-item-container .active,div.sidebar-item-container .show>.nav-link,div.sidebar-item-container .sidebar-link>code{color:#1e4287}div.sidebar.sidebar-navigation.rollup.quarto-sidebar-toggle-contents,nav.sidebar.sidebar-navigation:not(.rollup){background-color:#fff}@media(max-width: 991.98px){.sidebar-navigation .sidebar-item a,.nav-page .nav-page-text,.sidebar-navigation{font-size:1rem}.sidebar-navigation ul.sidebar-section.depth1 .sidebar-section-item{font-size:1.1rem}.sidebar-logo{display:none}.sidebar.sidebar-navigation{position:static;border-bottom:1px solid #dee2e6}.sidebar.sidebar-navigation.collapsing{position:fixed;z-index:1000}.sidebar.sidebar-navigation.show{position:fixed;z-index:1000}.sidebar.sidebar-navigation{min-height:100%}nav.quarto-secondary-nav{background-color:#fff;border-bottom:1px solid #dee2e6}.quarto-banner nav.quarto-secondary-nav{background-color:#f8f9fa;color:#545555;border-top:1px solid #dee2e6}.sidebar .sidebar-footer{visibility:visible;padding-top:1rem;position:inherit}.sidebar-tools-collapse{display:block}}#quarto-sidebar{transition:width .15s ease-in}#quarto-sidebar>*{padding-right:1em}@media(max-width: 991.98px){#quarto-sidebar .sidebar-menu-container{white-space:nowrap;min-width:225px}#quarto-sidebar.show{transition:width .15s ease-out}}@media(min-width: 992px){#quarto-sidebar{display:flex;flex-direction:column}.nav-page .nav-page-text,.sidebar-navigation .sidebar-section .sidebar-item{font-size:.875rem}.sidebar-navigation .sidebar-item{font-size:.925rem}.sidebar.sidebar-navigation{display:block;position:sticky}.sidebar-search{width:100%}.sidebar .sidebar-footer{visibility:visible}}@media(min-width: 992px){#quarto-sidebar-glass{display:none}}@media(max-width: 991.98px){#quarto-sidebar-glass{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(255,255,255,0);transition:background-color .15s ease-in;z-index:-1}#quarto-sidebar-glass.collapsing{z-index:1000}#quarto-sidebar-glass.show{transition:background-color .15s ease-out;background-color:rgba(102,102,102,.4);z-index:1000}}.sidebar .sidebar-footer{padding:.5rem 1rem;align-self:flex-end;color:#6c757d;width:100%}.quarto-page-breadcrumbs .breadcrumb-item+.breadcrumb-item,.quarto-page-breadcrumbs .breadcrumb-item{padding-right:.33em;padding-left:0}.quarto-page-breadcrumbs .breadcrumb-item::before{padding-right:.33em}.quarto-sidebar-footer{font-size:.875em}.sidebar-section .bi-chevron-right{vertical-align:middle}.sidebar-section .bi-chevron-right::before{font-size:.9em}.notransition{-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.btn:focus:not(:focus-visible){box-shadow:none}.page-navigation{display:flex;justify-content:space-between}.nav-page{padding-bottom:.75em}.nav-page .bi{font-size:1.8rem;vertical-align:middle}.nav-page .nav-page-text{padding-left:.25em;padding-right:.25em}.nav-page a{color:#6c757d;text-decoration:none;display:flex;align-items:center}.nav-page a:hover{color:#18356c}.nav-footer .toc-actions{padding-bottom:.5em;padding-top:.5em}.nav-footer .toc-actions a,.nav-footer .toc-actions a:hover{text-decoration:none}.nav-footer .toc-actions ul{display:flex;list-style:none}.nav-footer .toc-actions ul :first-child{margin-left:auto}.nav-footer .toc-actions ul :last-child{margin-right:auto}.nav-footer .toc-actions ul li{padding-right:1.5em}.nav-footer .toc-actions ul li i.bi{padding-right:.4em}.nav-footer .toc-actions ul li:last-of-type{padding-right:0}.nav-footer{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:baseline;text-align:center;padding-top:.5rem;padding-bottom:.5rem;background-color:#fff}body.nav-fixed{padding-top:64px}.nav-footer-contents{color:#6c757d;margin-top:.25rem}.nav-footer{min-height:3.5em;color:#757575}.nav-footer a{color:#757575}.nav-footer .nav-footer-left{font-size:.825em}.nav-footer .nav-footer-center{font-size:.825em}.nav-footer .nav-footer-right{font-size:.825em}.nav-footer-left .footer-items,.nav-footer-center .footer-items,.nav-footer-right .footer-items{display:inline-flex;padding-top:.3em;padding-bottom:.3em;margin-bottom:0em}.nav-footer-left .footer-items .nav-link,.nav-footer-center .footer-items .nav-link,.nav-footer-right .footer-items .nav-link{padding-left:.6em;padding-right:.6em}@media(min-width: 768px){.nav-footer-left{flex:1 1 0px;text-align:left}}@media(max-width: 575.98px){.nav-footer-left{margin-bottom:1em;flex:100%}}@media(min-width: 768px){.nav-footer-right{flex:1 1 0px;text-align:right}}@media(max-width: 575.98px){.nav-footer-right{margin-bottom:1em;flex:100%}}.nav-footer-center{text-align:center;min-height:3em}@media(min-width: 768px){.nav-footer-center{flex:1 1 0px}}.nav-footer-center .footer-items{justify-content:center}@media(max-width: 767.98px){.nav-footer-center{margin-bottom:1em;flex:100%}}@media(max-width: 767.98px){.nav-footer-center{margin-top:3em;order:10}}.navbar .quarto-reader-toggle.reader .quarto-reader-toggle-btn{background-color:#545555;border-radius:3px}@media(max-width: 991.98px){.quarto-reader-toggle{display:none}}.quarto-reader-toggle.reader.quarto-navigation-tool .quarto-reader-toggle-btn{background-color:#595959;border-radius:3px}.quarto-reader-toggle .quarto-reader-toggle-btn{display:inline-flex;padding-left:.2em;padding-right:.2em;margin-left:-0.2em;margin-right:-0.2em;text-align:center}.navbar .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml,')}#quarto-back-to-top{display:none;position:fixed;bottom:50px;background-color:#fff;border-radius:.25rem;box-shadow:0 .2rem .5rem #6c757d,0 0 .05rem #6c757d;color:#6c757d;text-decoration:none;font-size:.9em;text-align:center;left:50%;padding:.4rem .8rem;transform:translate(-50%, 0)}#quarto-announcement{padding:.5em;display:flex;justify-content:space-between;margin-bottom:0;font-size:.9em}#quarto-announcement .quarto-announcement-content{margin-right:auto}#quarto-announcement .quarto-announcement-content p{margin-bottom:0}#quarto-announcement .quarto-announcement-icon{margin-right:.5em;font-size:1.2em;margin-top:-0.15em}#quarto-announcement .quarto-announcement-action{cursor:pointer}.aa-DetachedSearchButtonQuery{display:none}.aa-DetachedOverlay ul.aa-List,#quarto-search-results ul.aa-List{list-style:none;padding-left:0}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{background-color:#fff;position:absolute;z-index:2000}#quarto-search-results .aa-Panel{max-width:400px}#quarto-search input{font-size:.925rem}@media(min-width: 992px){.navbar #quarto-search{margin-left:.25rem;order:999}}.navbar.navbar-expand-sm #quarto-search,.navbar.navbar-expand-md #quarto-search{order:999}@media(min-width: 992px){.navbar .quarto-navbar-tools{order:900}}@media(min-width: 992px){.navbar .quarto-navbar-tools.tools-end{margin-left:auto !important}}@media(max-width: 991.98px){#quarto-sidebar .sidebar-search{display:none}}#quarto-sidebar .sidebar-search .aa-Autocomplete{width:100%}.navbar .aa-Autocomplete .aa-Form{width:180px}.navbar #quarto-search.type-overlay .aa-Autocomplete{width:40px}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form{background-color:inherit;border:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form:focus-within{box-shadow:none;outline:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper{display:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper:focus-within{display:inherit}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-Label svg,.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-LoadingIndicator svg{width:26px;height:26px;color:#545555;opacity:1}.navbar #quarto-search.type-overlay .aa-Autocomplete svg.aa-SubmitIcon{width:26px;height:26px;color:#545555;opacity:1}.aa-Autocomplete .aa-Form,.aa-DetachedFormContainer .aa-Form{align-items:center;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;color:#212529;display:flex;line-height:1em;margin:0;position:relative;width:100%}.aa-Autocomplete .aa-Form:focus-within,.aa-DetachedFormContainer .aa-Form:focus-within{box-shadow:rgba(30,66,135,.6) 0 0 0 1px;outline:currentColor none medium}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix{align-items:center;display:flex;flex-shrink:0;order:1}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{cursor:initial;flex-shrink:0;padding:0;text-align:left}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg{color:#212529;opacity:.5}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton{appearance:none;background:none;border:0;margin:0}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{align-items:center;display:flex;justify-content:center}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapper,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper{order:3;position:relative;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input{appearance:none;background:none;border:0;color:#212529;font:inherit;height:calc(1.5em + .1rem + 2px);padding:0;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::placeholder,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::placeholder{color:#212529;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input:focus{border-color:none;box-shadow:none;outline:none}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix{align-items:center;display:flex;order:4}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton{align-items:center;background:none;border:0;color:#212529;opacity:.8;cursor:pointer;display:flex;margin:0;width:calc(1.5em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus{color:#212529;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg{width:calc(1.5em + 0.75rem + calc(1px * 2))}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton{border:none;align-items:center;background:none;color:#212529;opacity:.4;font-size:.7rem;cursor:pointer;display:none;margin:0;width:calc(1em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus{color:#212529;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden]{display:none}.aa-PanelLayout:empty{display:none}.quarto-search-no-results.no-query{display:none}.aa-Source:has(.no-query){display:none}#quarto-search-results .aa-Panel{border:solid #dee2e6 1px}#quarto-search-results .aa-SourceNoResults{width:398px}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{max-height:65vh;overflow-y:auto;font-size:.925rem}.aa-DetachedOverlay .aa-SourceNoResults,#quarto-search-results .aa-SourceNoResults{height:60px;display:flex;justify-content:center;align-items:center}.aa-DetachedOverlay .search-error,#quarto-search-results .search-error{padding-top:10px;padding-left:20px;padding-right:20px;cursor:default}.aa-DetachedOverlay .search-error .search-error-title,#quarto-search-results .search-error .search-error-title{font-size:1.1rem;margin-bottom:.5rem}.aa-DetachedOverlay .search-error .search-error-title .search-error-icon,#quarto-search-results .search-error .search-error-title .search-error-icon{margin-right:8px}.aa-DetachedOverlay .search-error .search-error-text,#quarto-search-results .search-error .search-error-text{font-weight:300}.aa-DetachedOverlay .search-result-text,#quarto-search-results .search-result-text{font-weight:300;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:1.2rem;max-height:2.4rem}.aa-DetachedOverlay .aa-SourceHeader .search-result-header,#quarto-search-results .aa-SourceHeader .search-result-header{font-size:.875rem;background-color:#f2f2f2;padding-left:14px;padding-bottom:4px;padding-top:4px}.aa-DetachedOverlay .aa-SourceHeader .search-result-header-no-results,#quarto-search-results .aa-SourceHeader .search-result-header-no-results{display:none}.aa-DetachedOverlay .aa-SourceFooter .algolia-search-logo,#quarto-search-results .aa-SourceFooter .algolia-search-logo{width:110px;opacity:.85;margin:8px;float:right}.aa-DetachedOverlay .search-result-section,#quarto-search-results .search-result-section{font-size:.925em}.aa-DetachedOverlay a.search-result-link,#quarto-search-results a.search-result-link{color:inherit;text-decoration:none}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item,#quarto-search-results li.aa-Item[aria-selected=true] .search-item{background-color:#1e4287}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text-container{color:#fff;background-color:#1e4287}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=true] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-match.mark{color:#fff;background-color:#2552a8}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item,#quarto-search-results li.aa-Item[aria-selected=false] .search-item{background-color:#fff}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text-container{color:#212529}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=false] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-match.mark{color:inherit;background-color:#94b1e7}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container{background-color:#fff;color:#212529}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container{padding-top:0px}.aa-DetachedOverlay li.aa-Item .search-result-doc.document-selectable .search-result-text-container,#quarto-search-results li.aa-Item .search-result-doc.document-selectable .search-result-text-container{margin-top:-4px}.aa-DetachedOverlay .aa-Item,#quarto-search-results .aa-Item{cursor:pointer}.aa-DetachedOverlay .aa-Item .search-item,#quarto-search-results .aa-Item .search-item{border-left:none;border-right:none;border-top:none;background-color:#fff;border-color:#dee2e6;color:#212529}.aa-DetachedOverlay .aa-Item .search-item p,#quarto-search-results .aa-Item .search-item p{margin-top:0;margin-bottom:0}.aa-DetachedOverlay .aa-Item .search-item i.bi,#quarto-search-results .aa-Item .search-item i.bi{padding-left:8px;padding-right:8px;font-size:1.3em}.aa-DetachedOverlay .aa-Item .search-item .search-result-title,#quarto-search-results .aa-Item .search-item .search-result-title{margin-top:.3em;margin-bottom:0em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs,#quarto-search-results .aa-Item .search-item .search-result-crumbs{white-space:nowrap;text-overflow:ellipsis;font-size:.8em;font-weight:300;margin-right:1em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap),#quarto-search-results .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap){max-width:30%;margin-left:auto;margin-top:.5em;margin-bottom:.1rem}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap,#quarto-search-results .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap{flex-basis:100%;margin-top:0em;margin-bottom:.2em;margin-left:37px}.aa-DetachedOverlay .aa-Item .search-result-title-container,#quarto-search-results .aa-Item .search-result-title-container{font-size:1em;display:flex;flex-wrap:wrap;padding:6px 4px 6px 4px}.aa-DetachedOverlay .aa-Item .search-result-text-container,#quarto-search-results .aa-Item .search-result-text-container{padding-bottom:8px;padding-right:8px;margin-left:42px}.aa-DetachedOverlay .aa-Item .search-result-doc-section,.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-doc-section,#quarto-search-results .aa-Item .search-result-more{padding-top:8px;padding-bottom:8px;padding-left:44px}.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-more{font-size:.8em;font-weight:400}.aa-DetachedOverlay .aa-Item .search-result-doc,#quarto-search-results .aa-Item .search-result-doc{border-top:1px solid #dee2e6}.aa-DetachedSearchButton{background:none;border:none}.aa-DetachedSearchButton .aa-DetachedSearchButtonPlaceholder{display:none}.navbar .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#545555}.sidebar-tools-collapse #quarto-search,.sidebar-tools-main #quarto-search{display:inline}.sidebar-tools-collapse #quarto-search .aa-Autocomplete,.sidebar-tools-main #quarto-search .aa-Autocomplete{display:inline}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton{padding-left:4px;padding-right:4px}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:#595959}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon{margin-top:-3px}.aa-DetachedContainer{background:rgba(255,255,255,.65);width:90%;bottom:0;box-shadow:rgba(222,226,230,.6) 0 0 0 1px;outline:currentColor none medium;display:flex;flex-direction:column;left:0;margin:0;overflow:hidden;padding:0;position:fixed;right:0;top:0;z-index:1101}.aa-DetachedContainer::after{height:32px}.aa-DetachedContainer .aa-SourceHeader{margin:var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px}.aa-DetachedContainer .aa-Panel{background-color:#fff;border-radius:0;box-shadow:none;flex-grow:1;margin:0;padding:0;position:relative}.aa-DetachedContainer .aa-PanelLayout{bottom:0;box-shadow:none;left:0;margin:0;max-height:none;overflow-y:auto;position:absolute;right:0;top:0;width:100%}.aa-DetachedFormContainer{background-color:#fff;border-bottom:1px solid #dee2e6;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:.5em}.aa-DetachedCancelButton{background:none;font-size:.8em;border:0;border-radius:3px;color:#212529;cursor:pointer;margin:0 0 0 .5em;padding:0 .5em}.aa-DetachedCancelButton:hover,.aa-DetachedCancelButton:focus{box-shadow:rgba(30,66,135,.6) 0 0 0 1px;outline:currentColor none medium}.aa-DetachedContainer--modal{bottom:inherit;height:auto;margin:0 auto;position:absolute;top:100px;border-radius:6px;max-width:850px}@media(max-width: 575.98px){.aa-DetachedContainer--modal{width:100%;top:0px;border-radius:0px;border:none}}.aa-DetachedContainer--modal .aa-PanelLayout{max-height:var(--aa-detached-modal-max-height);padding-bottom:var(--aa-spacing-half);position:static}.aa-Detached{height:100vh;overflow:hidden}.aa-DetachedOverlay{background-color:rgba(33,37,41,.4);position:fixed;left:0;right:0;top:0;margin:0;padding:0;height:100vh;z-index:1100}.quarto-dashboard.nav-fixed.dashboard-sidebar #quarto-content.quarto-dashboard-content{padding:0em}.quarto-dashboard #quarto-content.quarto-dashboard-content{padding:1em}.quarto-dashboard #quarto-content.quarto-dashboard-content>*{padding-top:0}@media(min-width: 576px){.quarto-dashboard{height:100%}}.quarto-dashboard .card.valuebox.bslib-card.bg-primary{background-color:#1e4287 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-secondary{background-color:#6c757d !important}.quarto-dashboard .card.valuebox.bslib-card.bg-success{background-color:#198754 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-info{background-color:#0dcaf0 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-warning{background-color:#ffc107 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-danger{background-color:#dc3545 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-light{background-color:#f8f9fa !important}.quarto-dashboard .card.valuebox.bslib-card.bg-dark{background-color:#212529 !important}.quarto-dashboard.dashboard-fill{display:flex;flex-direction:column}.quarto-dashboard #quarto-appendix{display:none}.quarto-dashboard #quarto-header #quarto-dashboard-header{border-top:solid 1px #dae0e5;border-bottom:solid 1px #dae0e5}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav{padding-left:1em;padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav .navbar-brand-container{padding-left:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler{margin-right:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler-icon{height:1em;width:1em;background-image:url('data:image/svg+xml,')}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-brand-container{padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-title{font-size:1.1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-nav{font-size:.9em}.quarto-dashboard #quarto-dashboard-header .navbar{padding:0}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-container{padding-left:1em}.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-brand-container .nav-link,.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-nav .nav-link{padding:.7em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-color-scheme-toggle{order:9}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-toggler{margin-left:.5em;order:10}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .nav-link{padding:.5em;height:100%;display:flex;align-items:center}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .active{background-color:#e0e5e9}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{padding:.5em .5em .5em 0;display:flex;flex-direction:row;margin-right:2em;align-items:center}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{margin-right:auto}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{align-self:stretch}@media(min-width: 768px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:8}}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:1000;padding-bottom:.5em}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse .navbar-nav{align-self:stretch}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title{font-size:1.25em;line-height:1.1em;display:flex;flex-direction:row;flex-wrap:wrap;align-items:baseline}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title .navbar-title-text{margin-right:.4em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title a{text-decoration:none;color:inherit}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-subtitle,.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{font-size:.9rem;margin-right:.5em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{margin-left:auto}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-logo{max-height:48px;min-height:30px;object-fit:cover;margin-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-links{order:9;padding-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link-text{margin-left:.25em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link{padding-right:0em;padding-left:.7em;text-decoration:none;color:#545555}.quarto-dashboard .page-layout-custom .tab-content{padding:0;border:none}.quarto-dashboard-img-contain{height:100%;width:100%;object-fit:contain}@media(max-width: 575.98px){.quarto-dashboard .bslib-grid{grid-template-rows:minmax(1em, max-content) !important}.quarto-dashboard .sidebar-content{height:inherit}.quarto-dashboard .page-layout-custom{min-height:100vh}}.quarto-dashboard.dashboard-toolbar>.page-layout-custom,.quarto-dashboard.dashboard-sidebar>.page-layout-custom{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages{padding:0}.quarto-dashboard .callout{margin-bottom:0;margin-top:0}.quarto-dashboard .html-fill-container figure{overflow:hidden}.quarto-dashboard bslib-tooltip .rounded-pill{border:solid #6c757d 1px}.quarto-dashboard bslib-tooltip .rounded-pill .svg{fill:#212529}.quarto-dashboard .tabset .dashboard-card-no-title .nav-tabs{margin-left:0;margin-right:auto}.quarto-dashboard .tabset .tab-content{border:none}.quarto-dashboard .tabset .card-header .nav-link[role=tab]{margin-top:-6px;padding-top:6px;padding-bottom:6px}.quarto-dashboard .card.valuebox,.quarto-dashboard .card.bslib-value-box{min-height:3rem}.quarto-dashboard .card.valuebox .card-body,.quarto-dashboard .card.bslib-value-box .card-body{padding:0}.quarto-dashboard .bslib-value-box .value-box-value{font-size:clamp(.1em,15cqw,5em)}.quarto-dashboard .bslib-value-box .value-box-showcase .bi{font-size:clamp(.1em,max(18cqw,5.2cqh),5em);text-align:center;height:1em}.quarto-dashboard .bslib-value-box .value-box-showcase .bi::before{vertical-align:1em}.quarto-dashboard .bslib-value-box .value-box-area{margin-top:auto;margin-bottom:auto}.quarto-dashboard .card figure.quarto-float{display:flex;flex-direction:column;align-items:center}.quarto-dashboard .dashboard-scrolling{padding:1em}.quarto-dashboard .full-height{height:100%}.quarto-dashboard .showcase-bottom .value-box-grid{display:grid;grid-template-columns:1fr;grid-template-rows:1fr auto;grid-template-areas:"top" "bottom"}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase i.bi{font-size:4rem}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-area{grid-area:top}.quarto-dashboard .tab-content{margin-bottom:0}.quarto-dashboard .bslib-card .bslib-navs-card-title{justify-content:stretch;align-items:end}.quarto-dashboard .card-header{display:flex;flex-wrap:wrap;justify-content:space-between}.quarto-dashboard .card-header .card-title{display:flex;flex-direction:column;justify-content:center;margin-bottom:0}.quarto-dashboard .tabset .card-toolbar{margin-bottom:1em}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{border:none;gap:var(--bslib-spacer, 1rem)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{padding:0}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.sidebar{border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.collapse-toggle{display:none}@media(max-width: 767.98px){.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{grid-template-columns:1fr;grid-template-rows:max-content 1fr}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{grid-column:1;grid-row:2}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout .sidebar{grid-column:1;grid-row:1}}.quarto-dashboard .sidebar-right .sidebar{padding-left:2.5em}.quarto-dashboard .sidebar-right .collapse-toggle{left:2px}.quarto-dashboard .quarto-dashboard .sidebar-right button.collapse-toggle:not(.transitioning){left:unset}.quarto-dashboard aside.sidebar{padding-left:1em;padding-right:1em;background-color:rgba(52,58,64,.25);color:#212529}.quarto-dashboard .bslib-sidebar-layout>div.main{padding:.7em}.quarto-dashboard .bslib-sidebar-layout button.collapse-toggle{margin-top:.3em}.quarto-dashboard .bslib-sidebar-layout .collapse-toggle{top:0}.quarto-dashboard .bslib-sidebar-layout.sidebar-collapsed:not(.transitioning):not(.sidebar-right) .collapse-toggle{left:2px}.quarto-dashboard .sidebar>section>.h3:first-of-type{margin-top:0em}.quarto-dashboard .sidebar .h3,.quarto-dashboard .sidebar .h4,.quarto-dashboard .sidebar .h5,.quarto-dashboard .sidebar .h6{margin-top:.5em}.quarto-dashboard .sidebar form{flex-direction:column;align-items:start;margin-bottom:1em}.quarto-dashboard .sidebar form div[class*=oi-][class$=-input]{flex-direction:column}.quarto-dashboard .sidebar form[class*=oi-][class$=-toggle]{flex-direction:row-reverse;align-items:center;justify-content:start}.quarto-dashboard .sidebar form input[type=range]{margin-top:.5em;margin-right:.8em;margin-left:1em}.quarto-dashboard .sidebar label{width:fit-content}.quarto-dashboard .sidebar .card-body{margin-bottom:2em}.quarto-dashboard .sidebar .shiny-input-container{margin-bottom:1em}.quarto-dashboard .sidebar .shiny-options-group{margin-top:0}.quarto-dashboard .sidebar .control-label{margin-bottom:.3em}.quarto-dashboard .card .card-body .quarto-layout-row{align-items:stretch}.quarto-dashboard .toolbar{font-size:.9em;display:flex;flex-direction:row;border-top:solid 1px #c7c9cd;padding:1em;flex-wrap:wrap;background-color:rgba(52,58,64,.25)}.quarto-dashboard .toolbar .cell-output-display{display:flex}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar>*:last-child{margin-right:0}.quarto-dashboard .toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .toolbar .input-daterange{width:inherit}.quarto-dashboard .toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar form{width:fit-content}.quarto-dashboard .toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .toolbar form input[type=date]{width:fit-content}.quarto-dashboard .toolbar form input[type=color]{width:3em}.quarto-dashboard .toolbar form button{padding:.4em}.quarto-dashboard .toolbar form select{width:fit-content}.quarto-dashboard .toolbar>*{font-size:.9em;flex-grow:0}.quarto-dashboard .toolbar .shiny-input-container label{margin-bottom:1px}.quarto-dashboard .toolbar-bottom{margin-top:1em;margin-bottom:0 !important;order:2}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>.tab-content>.tab-pane>*:not(.bslib-sidebar-layout){padding:1em}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>*:not(.tab-content){padding:1em}.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page>.dashboard-toolbar-container>.toolbar-content,.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page:not(.dashboard-sidebar-container)>*:not(.dashboard-toolbar-container){padding:1em}.quarto-dashboard .toolbar-content{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages .tab-pane>.dashboard-toolbar-container .toolbar{border-radius:0;margin-bottom:0}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar{border-bottom:1px solid rgba(0,0,0,.175)}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar-bottom{margin-top:0}.quarto-dashboard .dashboard-toolbar-container:not(.toolbar-toplevel) .toolbar{margin-bottom:1em;border-top:none;border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .vega-embed.has-actions details{width:1.7em;height:2em;position:absolute !important;top:0;right:0}.quarto-dashboard .dashboard-toolbar-container{padding:0}.quarto-dashboard .card .card-header p:last-child,.quarto-dashboard .card .card-footer p:last-child{margin-bottom:0}.quarto-dashboard .card .card-body>.h4:first-child{margin-top:0}.quarto-dashboard .card .card-body{z-index:4}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_length,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_info,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate{text-align:initial}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_filter{text-align:right}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:initial}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding-top:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper table{flex-shrink:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons{margin-bottom:.5em;margin-left:auto;width:fit-content;float:right}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons.btn-group{background:#fff;border:none}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn-secondary{background-color:#fff;background-image:none;border:solid #dee2e6 1px;padding:.2em .7em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn span{font-size:.8em;color:#212529}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{margin-left:.5em;margin-bottom:.5em;padding-top:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.875em}}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.8em}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter{margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter input[type=search]{padding:1px 5px 1px 5px;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length{flex-basis:1 1 50%;margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length select{padding:.4em 3em .4em .5em;font-size:.875em;margin-left:.2em;margin-right:.2em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{flex-shrink:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{margin-left:auto}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate ul.pagination .paginate_button .page-link{font-size:.8em}.quarto-dashboard .card .card-footer{font-size:.9em}.quarto-dashboard .card .card-toolbar{display:flex;flex-grow:1;flex-direction:row;width:100%;flex-wrap:wrap}.quarto-dashboard .card .card-toolbar>*{font-size:.8em;flex-grow:0}.quarto-dashboard .card .card-toolbar>.card-title{font-size:1em;flex-grow:1;align-self:flex-start;margin-top:.1em}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar form{width:fit-content}.quarto-dashboard .card .card-toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=date]{width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=color]{width:3em}.quarto-dashboard .card .card-toolbar form button{padding:.4em}.quarto-dashboard .card .card-toolbar form select{width:fit-content}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .card .card-toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .card .card-toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .card .card-toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange{width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .card .card-toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .card .card-toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .card .card-toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .card .card-toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card-body>table>thead{border-top:none}.quarto-dashboard .card-body>.table>:not(caption)>*>*{background-color:#fff}.tableFloatingHeaderOriginal{background-color:#fff;position:sticky !important;top:0 !important}.dashboard-data-table{margin-top:-1px}div.value-box-area span.observablehq--number{font-size:calc(clamp(.1em,15cqw,5em)*1.25);line-height:1.2;color:inherit;font-family:var(--bs-body-font-family)}.quarto-listing{padding-bottom:1em}.listing-pagination{padding-top:.5em}ul.pagination{float:right;padding-left:8px;padding-top:.5em}ul.pagination li{padding-right:.75em}ul.pagination li.disabled a,ul.pagination li.active a{color:#fff;text-decoration:none}ul.pagination li:last-of-type{padding-right:0}.listing-actions-group{display:flex}.quarto-listing-filter{margin-bottom:1em;width:200px;margin-left:auto}.quarto-listing-sort{margin-bottom:1em;margin-right:auto;width:auto}.quarto-listing-sort .input-group-text{font-size:.8em}.input-group-text{border-right:none}.quarto-listing-sort select.form-select{font-size:.8em}.listing-no-matching{text-align:center;padding-top:2em;padding-bottom:3em;font-size:1em}#quarto-margin-sidebar .quarto-listing-category{padding-top:0;font-size:1rem}#quarto-margin-sidebar .quarto-listing-category-title{cursor:pointer;font-weight:600;font-size:1rem}.quarto-listing-category .category{cursor:pointer}.quarto-listing-category .category.active{font-weight:600}.quarto-listing-category.category-cloud{display:flex;flex-wrap:wrap;align-items:baseline}.quarto-listing-category.category-cloud .category{padding-right:5px}.quarto-listing-category.category-cloud .category-cloud-1{font-size:.75em}.quarto-listing-category.category-cloud .category-cloud-2{font-size:.95em}.quarto-listing-category.category-cloud .category-cloud-3{font-size:1.15em}.quarto-listing-category.category-cloud .category-cloud-4{font-size:1.35em}.quarto-listing-category.category-cloud .category-cloud-5{font-size:1.55em}.quarto-listing-category.category-cloud .category-cloud-6{font-size:1.75em}.quarto-listing-category.category-cloud .category-cloud-7{font-size:1.95em}.quarto-listing-category.category-cloud .category-cloud-8{font-size:2.15em}.quarto-listing-category.category-cloud .category-cloud-9{font-size:2.35em}.quarto-listing-category.category-cloud .category-cloud-10{font-size:2.55em}.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-1{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-2{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-3{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-3{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-4{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-4{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-5{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-5{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-6{grid-template-columns:repeat(6, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-6{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-6{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-7{grid-template-columns:repeat(7, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-7{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-7{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-8{grid-template-columns:repeat(8, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-8{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-8{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-9{grid-template-columns:repeat(9, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-9{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-9{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-10{grid-template-columns:repeat(10, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-10{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-10{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-11{grid-template-columns:repeat(11, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-11{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-11{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-12{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-12{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-grid{gap:1.5em}.quarto-grid-item.borderless{border:none}.quarto-grid-item.borderless .listing-categories .listing-category:last-of-type,.quarto-grid-item.borderless .listing-categories .listing-category:first-of-type{padding-left:0}.quarto-grid-item.borderless .listing-categories .listing-category{border:0}.quarto-grid-link{text-decoration:none;color:inherit}.quarto-grid-link:hover{text-decoration:none;color:inherit}.quarto-grid-item h5.title,.quarto-grid-item .title.h5{margin-top:0;margin-bottom:0}.quarto-grid-item .card-footer{display:flex;justify-content:space-between;font-size:.8em}.quarto-grid-item .card-footer p{margin-bottom:0}.quarto-grid-item p.card-img-top{margin-bottom:0}.quarto-grid-item p.card-img-top>img{object-fit:cover}.quarto-grid-item .card-other-values{margin-top:.5em;font-size:.8em}.quarto-grid-item .card-other-values tr{margin-bottom:.5em}.quarto-grid-item .card-other-values tr>td:first-of-type{font-weight:600;padding-right:1em;padding-left:1em;vertical-align:top}.quarto-grid-item div.post-contents{display:flex;flex-direction:column;text-decoration:none;height:100%}.quarto-grid-item .listing-item-img-placeholder{background-color:rgba(52,58,64,.25);flex-shrink:0}.quarto-grid-item .card-attribution{padding-top:1em;display:flex;gap:1em;text-transform:uppercase;color:#6c757d;font-weight:500;flex-grow:10;align-items:flex-end}.quarto-grid-item .description{padding-bottom:1em}.quarto-grid-item .card-attribution .date{align-self:flex-end}.quarto-grid-item .card-attribution.justify{justify-content:space-between}.quarto-grid-item .card-attribution.start{justify-content:flex-start}.quarto-grid-item .card-attribution.end{justify-content:flex-end}.quarto-grid-item .card-title{margin-bottom:.1em}.quarto-grid-item .card-subtitle{padding-top:.25em}.quarto-grid-item .card-text{font-size:.9em}.quarto-grid-item .listing-reading-time{padding-bottom:.25em}.quarto-grid-item .card-text-small{font-size:.8em}.quarto-grid-item .card-subtitle.subtitle{font-size:.9em;font-weight:600;padding-bottom:.5em}.quarto-grid-item .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}.quarto-grid-item .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}.quarto-grid-item.card-right{text-align:right}.quarto-grid-item.card-right .listing-categories{justify-content:flex-end}.quarto-grid-item.card-left{text-align:left}.quarto-grid-item.card-center{text-align:center}.quarto-grid-item.card-center .listing-description{text-align:justify}.quarto-grid-item.card-center .listing-categories{justify-content:center}table.quarto-listing-table td.image{padding:0px}table.quarto-listing-table td.image img{width:100%;max-width:50px;object-fit:contain}table.quarto-listing-table a{text-decoration:none;word-break:keep-all}table.quarto-listing-table th a{color:inherit}table.quarto-listing-table th a.asc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table th a.desc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml,');content:""}table.quarto-listing-table.table-hover td{cursor:pointer}.quarto-post.image-left{flex-direction:row}.quarto-post.image-right{flex-direction:row-reverse}@media(max-width: 767.98px){.quarto-post.image-right,.quarto-post.image-left{gap:0em;flex-direction:column}.quarto-post .metadata{padding-bottom:1em;order:2}.quarto-post .body{order:1}.quarto-post .thumbnail{order:3}}.list.quarto-listing-default div:last-of-type{border-bottom:none}@media(min-width: 992px){.quarto-listing-container-default{margin-right:2em}}div.quarto-post{display:flex;gap:2em;margin-bottom:1.5em;border-bottom:1px solid #dee2e6}@media(max-width: 767.98px){div.quarto-post{padding-bottom:1em}}div.quarto-post .metadata{flex-basis:20%;flex-grow:0;margin-top:.2em;flex-shrink:10}div.quarto-post .thumbnail{flex-basis:30%;flex-grow:0;flex-shrink:0}div.quarto-post .thumbnail img{margin-top:.4em;width:100%;object-fit:cover}div.quarto-post .body{flex-basis:45%;flex-grow:1;flex-shrink:0}div.quarto-post .body h3.listing-title,div.quarto-post .body .listing-title.h3{margin-top:0px;margin-bottom:0px;border-bottom:none}div.quarto-post .body .listing-subtitle{font-size:.875em;margin-bottom:.5em;margin-top:.2em}div.quarto-post .body .description{font-size:.9em}div.quarto-post .body pre code{white-space:pre-wrap}div.quarto-post a{color:#212529;text-decoration:none}div.quarto-post .metadata{display:flex;flex-direction:column;font-size:.8em;font-family:Roboto;flex-basis:33%}div.quarto-post .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}div.quarto-post .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}div.quarto-post .listing-description{margin-bottom:.5em}div.quarto-about-jolla{display:flex !important;flex-direction:column;align-items:center;margin-top:10%;padding-bottom:1em}div.quarto-about-jolla .about-image{object-fit:cover;margin-left:auto;margin-right:auto;margin-bottom:1.5em}div.quarto-about-jolla img.round{border-radius:50%}div.quarto-about-jolla img.rounded{border-radius:10px}div.quarto-about-jolla .quarto-title h1.title,div.quarto-about-jolla .quarto-title .title.h1{text-align:center}div.quarto-about-jolla .quarto-title .description{text-align:center}div.quarto-about-jolla h2,div.quarto-about-jolla .h2{border-bottom:none}div.quarto-about-jolla .about-sep{width:60%}div.quarto-about-jolla main{text-align:center}div.quarto-about-jolla .about-links{display:flex}@media(min-width: 992px){div.quarto-about-jolla .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-jolla .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-jolla .about-link{color:#4e5862;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-jolla .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-jolla .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-jolla .about-link:hover{color:#1e4287}div.quarto-about-jolla .about-link i.bi{margin-right:.15em}div.quarto-about-solana{display:flex !important;flex-direction:column;padding-top:3em !important;padding-bottom:1em}div.quarto-about-solana .about-entity{display:flex !important;align-items:start;justify-content:space-between}@media(min-width: 992px){div.quarto-about-solana .about-entity{flex-direction:row}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity{flex-direction:column-reverse;align-items:center;text-align:center}}div.quarto-about-solana .about-entity .entity-contents{display:flex;flex-direction:column}@media(max-width: 767.98px){div.quarto-about-solana .about-entity .entity-contents{width:100%}}div.quarto-about-solana .about-entity .about-image{object-fit:cover}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-image{margin-bottom:1.5em}}div.quarto-about-solana .about-entity img.round{border-radius:50%}div.quarto-about-solana .about-entity img.rounded{border-radius:10px}div.quarto-about-solana .about-entity .about-links{display:flex;justify-content:left;padding-bottom:1.2em}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-solana .about-entity .about-link{color:#4e5862;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-solana .about-entity .about-link:hover{color:#1e4287}div.quarto-about-solana .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-solana .about-contents{padding-right:1.5em;flex-basis:0;flex-grow:1}div.quarto-about-solana .about-contents main.content{margin-top:0}div.quarto-about-solana .about-contents h2,div.quarto-about-solana .about-contents .h2{border-bottom:none}div.quarto-about-trestles{display:flex !important;flex-direction:row;padding-top:3em !important;padding-bottom:1em}@media(max-width: 991.98px){div.quarto-about-trestles{flex-direction:column;padding-top:0em !important}}div.quarto-about-trestles .about-entity{display:flex !important;flex-direction:column;align-items:center;text-align:center;padding-right:1em}@media(min-width: 992px){div.quarto-about-trestles .about-entity{flex:0 0 42%}}div.quarto-about-trestles .about-entity .about-image{object-fit:cover;margin-bottom:1.5em}div.quarto-about-trestles .about-entity img.round{border-radius:50%}div.quarto-about-trestles .about-entity img.rounded{border-radius:10px}div.quarto-about-trestles .about-entity .about-links{display:flex;justify-content:center}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-trestles .about-entity .about-link{color:#4e5862;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-trestles .about-entity .about-link:hover{color:#1e4287}div.quarto-about-trestles .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-trestles .about-contents{flex-basis:0;flex-grow:1}div.quarto-about-trestles .about-contents h2,div.quarto-about-trestles .about-contents .h2{border-bottom:none}@media(min-width: 992px){div.quarto-about-trestles .about-contents{border-left:solid 1px #dee2e6;padding-left:1.5em}}div.quarto-about-trestles .about-contents main.content{margin-top:0}div.quarto-about-marquee{padding-bottom:1em}div.quarto-about-marquee .about-contents{display:flex;flex-direction:column}div.quarto-about-marquee .about-image{max-height:550px;margin-bottom:1.5em;object-fit:cover}div.quarto-about-marquee img.round{border-radius:50%}div.quarto-about-marquee img.rounded{border-radius:10px}div.quarto-about-marquee h2,div.quarto-about-marquee .h2{border-bottom:none}div.quarto-about-marquee .about-links{display:flex;justify-content:center;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-marquee .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-marquee .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-marquee .about-link{color:#4e5862;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-marquee .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-marquee .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-marquee .about-link:hover{color:#1e4287}div.quarto-about-marquee .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-marquee .about-link{border:none}}div.quarto-about-broadside{display:flex;flex-direction:column;padding-bottom:1em}div.quarto-about-broadside .about-main{display:flex !important;padding-top:0 !important}@media(min-width: 992px){div.quarto-about-broadside .about-main{flex-direction:row;align-items:flex-start}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main{flex-direction:column}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main .about-entity{flex-shrink:0;width:100%;height:450px;margin-bottom:1.5em;background-size:cover;background-repeat:no-repeat}}@media(min-width: 992px){div.quarto-about-broadside .about-main .about-entity{flex:0 10 50%;margin-right:1.5em;width:100%;height:100%;background-size:100%;background-repeat:no-repeat}}div.quarto-about-broadside .about-main .about-contents{padding-top:14px;flex:0 0 50%}div.quarto-about-broadside h2,div.quarto-about-broadside .h2{border-bottom:none}div.quarto-about-broadside .about-sep{margin-top:1.5em;width:60%;align-self:center}div.quarto-about-broadside .about-links{display:flex;justify-content:center;column-gap:20px;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-broadside .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-broadside .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-broadside .about-link{color:#4e5862;text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-broadside .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-broadside .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-broadside .about-link:hover{color:#1e4287}div.quarto-about-broadside .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-broadside .about-link{border:none}}.tippy-box[data-theme~=quarto]{background-color:#fff;border:solid 1px #dee2e6;border-radius:.25rem;color:#212529;font-size:.875rem}.tippy-box[data-theme~=quarto]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=quarto]>.tippy-arrow:after,.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{content:"";position:absolute;z-index:-1}.tippy-box[data-theme~=quarto]>.tippy-arrow:after{border-color:rgba(0,0,0,0);border-style:solid}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-6px}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-6px}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-6px}.tippy-box[data-placement^=left]>.tippy-arrow:before{right:-6px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:after{border-top-color:#dee2e6;border-width:7px 7px 0;top:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow>svg{top:16px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow:after{top:17px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff;bottom:16px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:#dee2e6;border-width:0 7px 7px;bottom:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow>svg{bottom:15px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow:after{bottom:17px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:after{border-left-color:#dee2e6;border-width:7px 0 7px 7px;left:17px;top:1px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow>svg{left:11px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow:after{left:12px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff;right:16px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:after{border-width:7px 7px 7px 0;right:17px;top:1px;border-right-color:#dee2e6}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow>svg{right:11px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow:after{right:12px}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow{fill:#212529}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);background-size:16px 6px;width:16px;height:6px}.top-right{position:absolute;top:1em;right:1em}.visually-hidden{border:0;clip:rect(0 0 0 0);height:auto;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.hidden{display:none !important}.zindex-bottom{z-index:-1 !important}figure.figure{display:block}.quarto-layout-panel{margin-bottom:1em}.quarto-layout-panel>figure{width:100%}.quarto-layout-panel>figure>figcaption,.quarto-layout-panel>.panel-caption{margin-top:10pt}.quarto-layout-panel>.table-caption{margin-top:0px}.table-caption p{margin-bottom:.5em}.quarto-layout-row{display:flex;flex-direction:row;align-items:flex-start}.quarto-layout-valign-top{align-items:flex-start}.quarto-layout-valign-bottom{align-items:flex-end}.quarto-layout-valign-center{align-items:center}.quarto-layout-cell{position:relative;margin-right:20px}.quarto-layout-cell:last-child{margin-right:0}.quarto-layout-cell figure,.quarto-layout-cell>p{margin:.2em}.quarto-layout-cell img{max-width:100%}.quarto-layout-cell .html-widget{width:100% !important}.quarto-layout-cell div figure p{margin:0}.quarto-layout-cell figure{display:block;margin-inline-start:0;margin-inline-end:0}.quarto-layout-cell table{display:inline-table}.quarto-layout-cell-subref figcaption,figure .quarto-layout-row figure figcaption{text-align:center;font-style:italic}.quarto-figure{position:relative;margin-bottom:1em}.quarto-figure>figure{width:100%;margin-bottom:0}.quarto-figure-left>figure>p,.quarto-figure-left>figure>div{text-align:left}.quarto-figure-center>figure>p,.quarto-figure-center>figure>div{text-align:center}.quarto-figure-right>figure>p,.quarto-figure-right>figure>div{text-align:right}.quarto-figure>figure>div.cell-annotation,.quarto-figure>figure>div code{text-align:left}figure>p:empty{display:none}figure>p:first-child{margin-top:0;margin-bottom:0}figure>figcaption.quarto-float-caption-bottom{margin-bottom:.5em}figure>figcaption.quarto-float-caption-top{margin-top:.5em}div[id^=tbl-]{position:relative}.quarto-figure>.anchorjs-link{position:absolute;top:.6em;right:.5em}div[id^=tbl-]>.anchorjs-link{position:absolute;top:.7em;right:.3em}.quarto-figure:hover>.anchorjs-link,div[id^=tbl-]:hover>.anchorjs-link,h2:hover>.anchorjs-link,.h2:hover>.anchorjs-link,h3:hover>.anchorjs-link,.h3:hover>.anchorjs-link,h4:hover>.anchorjs-link,.h4:hover>.anchorjs-link,h5:hover>.anchorjs-link,.h5:hover>.anchorjs-link,h6:hover>.anchorjs-link,.h6:hover>.anchorjs-link,.reveal-anchorjs-link>.anchorjs-link{opacity:1}#title-block-header{margin-block-end:1rem;position:relative;margin-top:-1px}#title-block-header .abstract{margin-block-start:1rem}#title-block-header .abstract .abstract-title{font-weight:600}#title-block-header a{text-decoration:none}#title-block-header .author,#title-block-header .date,#title-block-header .doi{margin-block-end:.2rem}#title-block-header .quarto-title-block>div{display:flex}#title-block-header .quarto-title-block>div>h1,#title-block-header .quarto-title-block>div>.h1{flex-grow:1}#title-block-header .quarto-title-block>div>button{flex-shrink:0;height:2.25rem;margin-top:0}@media(min-width: 992px){#title-block-header .quarto-title-block>div>button{margin-top:5px}}tr.header>th>p:last-of-type{margin-bottom:0px}table,table.table{margin-top:.5rem;margin-bottom:.5rem}caption,.table-caption{padding-top:.5rem;padding-bottom:.5rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-top{margin-top:.5rem;margin-bottom:.25rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-bottom{padding-top:.25rem;margin-bottom:.5rem;text-align:center}.utterances{max-width:none;margin-left:-8px}iframe{margin-bottom:1em}details{margin-bottom:1em}details[show]{margin-bottom:0}details>summary{color:#6c757d}details>summary>p:only-child{display:inline}pre.sourceCode,code.sourceCode{position:relative}dd code:not(.sourceCode),p code:not(.sourceCode){white-space:pre-wrap}code{white-space:pre}@media print{code{white-space:pre-wrap}}pre>code{display:block}pre>code.sourceCode{white-space:pre}pre>code.sourceCode>span>a:first-child::before{text-decoration:none}pre.code-overflow-wrap>code.sourceCode{white-space:pre-wrap}pre.code-overflow-scroll>code.sourceCode{white-space:pre}code a:any-link{color:inherit;text-decoration:none}code a:hover{color:inherit;text-decoration:underline}ul.task-list{padding-left:1em}[data-tippy-root]{display:inline-block}.tippy-content .footnote-back{display:none}.footnote-back{margin-left:.2em}.tippy-content{overflow-x:auto}.quarto-embedded-source-code{display:none}.quarto-unresolved-ref{font-weight:600}.quarto-cover-image{max-width:35%;float:right;margin-left:30px}.cell-output-display .widget-subarea{margin-bottom:1em}.cell-output-display:not(.no-overflow-x),.knitsql-table:not(.no-overflow-x){overflow-x:auto}.panel-input{margin-bottom:1em}.panel-input>div,.panel-input>div>div{display:inline-block;vertical-align:top;padding-right:12px}.panel-input>p:last-child{margin-bottom:0}.layout-sidebar{margin-bottom:1em}.layout-sidebar .tab-content{border:none}.tab-content>.page-columns.active{display:grid}div.sourceCode>iframe{width:100%;height:300px;margin-bottom:-0.5em}a{text-underline-offset:3px}div.ansi-escaped-output{font-family:monospace;display:block}/*! +* +* ansi colors from IPython notebook's +* +* we also add `bright-[color]-` synonyms for the `-[color]-intense` classes since +* that seems to be what ansi_up emits +* +*/.ansi-black-fg{color:#3e424d}.ansi-black-bg{background-color:#3e424d}.ansi-black-intense-black,.ansi-bright-black-fg{color:#282c36}.ansi-black-intense-black,.ansi-bright-black-bg{background-color:#282c36}.ansi-red-fg{color:#e75c58}.ansi-red-bg{background-color:#e75c58}.ansi-red-intense-red,.ansi-bright-red-fg{color:#b22b31}.ansi-red-intense-red,.ansi-bright-red-bg{background-color:#b22b31}.ansi-green-fg{color:#00a250}.ansi-green-bg{background-color:#00a250}.ansi-green-intense-green,.ansi-bright-green-fg{color:#007427}.ansi-green-intense-green,.ansi-bright-green-bg{background-color:#007427}.ansi-yellow-fg{color:#ddb62b}.ansi-yellow-bg{background-color:#ddb62b}.ansi-yellow-intense-yellow,.ansi-bright-yellow-fg{color:#b27d12}.ansi-yellow-intense-yellow,.ansi-bright-yellow-bg{background-color:#b27d12}.ansi-blue-fg{color:#208ffb}.ansi-blue-bg{background-color:#208ffb}.ansi-blue-intense-blue,.ansi-bright-blue-fg{color:#0065ca}.ansi-blue-intense-blue,.ansi-bright-blue-bg{background-color:#0065ca}.ansi-magenta-fg{color:#d160c4}.ansi-magenta-bg{background-color:#d160c4}.ansi-magenta-intense-magenta,.ansi-bright-magenta-fg{color:#a03196}.ansi-magenta-intense-magenta,.ansi-bright-magenta-bg{background-color:#a03196}.ansi-cyan-fg{color:#60c6c8}.ansi-cyan-bg{background-color:#60c6c8}.ansi-cyan-intense-cyan,.ansi-bright-cyan-fg{color:#258f8f}.ansi-cyan-intense-cyan,.ansi-bright-cyan-bg{background-color:#258f8f}.ansi-white-fg{color:#c5c1b4}.ansi-white-bg{background-color:#c5c1b4}.ansi-white-intense-white,.ansi-bright-white-fg{color:#a1a6b2}.ansi-white-intense-white,.ansi-bright-white-bg{background-color:#a1a6b2}.ansi-default-inverse-fg{color:#fff}.ansi-default-inverse-bg{background-color:#000}.ansi-bold{font-weight:bold}.ansi-underline{text-decoration:underline}:root{--quarto-body-bg: #ffffff;--quarto-body-color: #212529;--quarto-text-muted: #6c757d;--quarto-border-color: #dee2e6;--quarto-border-width: 1px;--quarto-border-radius: 0.25rem}table.gt_table{color:var(--quarto-body-color);font-size:1em;width:100%;background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_column_spanner_outer{color:var(--quarto-body-color);background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_col_heading{color:var(--quarto-body-color);font-weight:bold;background-color:rgba(0,0,0,0)}table.gt_table thead.gt_col_headings{border-bottom:1px solid currentColor;border-top-width:inherit;border-top-color:var(--quarto-border-color)}table.gt_table thead.gt_col_headings:not(:first-child){border-top-width:1px;border-top-color:var(--quarto-border-color)}table.gt_table td.gt_row{border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-width:0px}table.gt_table tbody.gt_table_body{border-top-width:1px;border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-color:currentColor}div.columns{display:initial;gap:initial}div.column{display:inline-block;overflow-x:initial;vertical-align:top;width:50%}.code-annotation-tip-content{word-wrap:break-word}.code-annotation-container-hidden{display:none !important}dl.code-annotation-container-grid{display:grid;grid-template-columns:min-content auto}dl.code-annotation-container-grid dt{grid-column:1}dl.code-annotation-container-grid dd{grid-column:2}pre.sourceCode.code-annotation-code{padding-right:0}code.sourceCode .code-annotation-anchor{z-index:100;position:relative;float:right;background-color:rgba(0,0,0,0)}input[type=checkbox]{margin-right:.5ch}:root{--mermaid-bg-color: #ffffff;--mermaid-edge-color: #6c757d;--mermaid-node-fg-color: #212529;--mermaid-fg-color: #212529;--mermaid-fg-color--lighter: #383f45;--mermaid-fg-color--lightest: #4e5862;--mermaid-font-family: Roboto, Helvetica Neue, sans-serif;--mermaid-label-bg-color: #ffffff;--mermaid-label-fg-color: #1E4287;--mermaid-node-bg-color: rgba(30, 66, 135, 0.1);--mermaid-node-fg-color: #212529}@media print{:root{font-size:11pt}#quarto-sidebar,#TOC,.nav-page{display:none}.page-columns .content{grid-column-start:page-start}.fixed-top{position:relative}.panel-caption,.figure-caption,figcaption{color:#666}}.code-copy-button{position:absolute;top:0;right:0;border:0;margin-top:5px;margin-right:5px;background-color:rgba(0,0,0,0);z-index:3}.code-copy-button:focus{outline:none}.code-copy-button-tooltip{font-size:.75em}.code-copy-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.code-copy-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.code-copy-button-checked:hover>.bi::before{background-image:url('data:image/svg+xml,')}main ol ol,main ul ul,main ol ul,main ul ol{margin-bottom:1em}ul>li:not(:has(>p))>ul,ol>li:not(:has(>p))>ul,ul>li:not(:has(>p))>ol,ol>li:not(:has(>p))>ol{margin-bottom:0}ul>li:not(:has(>p))>ul>li:has(>p),ol>li:not(:has(>p))>ul>li:has(>p),ul>li:not(:has(>p))>ol>li:has(>p),ol>li:not(:has(>p))>ol>li:has(>p){margin-top:1rem}body{margin:0}main.page-columns>header>h1.title,main.page-columns>header>.title.h1{margin-bottom:0}@media(min-width: 992px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] 35px [page-end-inset page-end] 5fr [screen-end-inset] 1.5em}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 3em [body-end] 50px [body-end-outset] minmax(0px, 250px) [page-end-inset] minmax(50px, 100px) [page-end] 1fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 150px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 991.98px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(1250px - 3em)) [body-content-end body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 767.98px){body .page-columns,body.fullcontent:not(.floating):not(.docked) .page-columns,body.slimcontent:not(.floating):not(.docked) .page-columns,body.docked .page-columns,body.docked.slimcontent .page-columns,body.docked.fullcontent .page-columns,body.floating .page-columns,body.floating.slimcontent .page-columns,body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}nav[role=doc-toc]{display:none}}body,.page-row-navigation{grid-template-rows:[page-top] max-content [contents-top] max-content [contents-bottom] max-content [page-bottom]}.page-rows-contents{grid-template-rows:[content-top] minmax(max-content, 1fr) [content-bottom] minmax(60px, max-content) [page-bottom]}.page-full{grid-column:screen-start/screen-end !important}.page-columns>*{grid-column:body-content-start/body-content-end}.page-columns.column-page>*{grid-column:page-start/page-end}.page-columns.column-page-left .page-columns.page-full>*,.page-columns.column-page-left>*{grid-column:page-start/body-content-end}.page-columns.column-page-right .page-columns.page-full>*,.page-columns.column-page-right>*{grid-column:body-content-start/page-end}.page-rows{grid-auto-rows:auto}.header{grid-column:screen-start/screen-end;grid-row:page-top/contents-top}#quarto-content{padding:0;grid-column:screen-start/screen-end;grid-row:contents-top/contents-bottom}body.floating .sidebar.sidebar-navigation{grid-column:page-start/body-start;grid-row:content-top/page-bottom}body.docked .sidebar.sidebar-navigation{grid-column:screen-start/body-start;grid-row:content-top/page-bottom}.sidebar.toc-left{grid-column:page-start/body-start;grid-row:content-top/page-bottom}.sidebar.margin-sidebar{grid-column:body-end/page-end;grid-row:content-top/page-bottom}.page-columns .content{grid-column:body-content-start/body-content-end;grid-row:content-top/content-bottom;align-content:flex-start}.page-columns .page-navigation{grid-column:body-content-start/body-content-end;grid-row:content-bottom/page-bottom}.page-columns .footer{grid-column:screen-start/screen-end;grid-row:contents-bottom/page-bottom}.page-columns .column-body{grid-column:body-content-start/body-content-end}.page-columns .column-body-fullbleed{grid-column:body-start/body-end}.page-columns .column-body-outset{grid-column:body-start-outset/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset table{background:#fff}.page-columns .column-body-outset-left{grid-column:body-start-outset/body-content-end;z-index:998;opacity:.999}.page-columns .column-body-outset-left table{background:#fff}.page-columns .column-body-outset-right{grid-column:body-content-start/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset-right table{background:#fff}.page-columns .column-page{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-page table{background:#fff}.page-columns .column-page-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset table{background:#fff}.page-columns .column-page-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-inset-left table{background:#fff}.page-columns .column-page-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset-right figcaption table{background:#fff}.page-columns .column-page-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-left table{background:#fff}.page-columns .column-page-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-page-right figcaption table{background:#fff}#quarto-content.page-columns #quarto-margin-sidebar,#quarto-content.page-columns #quarto-sidebar{z-index:1}@media(max-width: 991.98px){#quarto-content.page-columns #quarto-margin-sidebar.collapse,#quarto-content.page-columns #quarto-sidebar.collapse,#quarto-content.page-columns #quarto-margin-sidebar.collapsing,#quarto-content.page-columns #quarto-sidebar.collapsing{z-index:1055}}#quarto-content.page-columns main.column-page,#quarto-content.page-columns main.column-page-right,#quarto-content.page-columns main.column-page-left{z-index:0}.page-columns .column-screen-inset{grid-column:screen-start-inset/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:screen-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:screen-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:screen-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:screen-start/screen-end;padding:1em;background:#f8f9fa;z-index:998;opacity:.999;margin-bottom:1em}.zindex-content{z-index:998;opacity:.999}.zindex-modal{z-index:1055;opacity:.999}.zindex-over-content{z-index:999;opacity:.999}img.img-fluid.column-screen,img.img-fluid.column-screen-inset-shaded,img.img-fluid.column-screen-inset,img.img-fluid.column-screen-inset-left,img.img-fluid.column-screen-inset-right,img.img-fluid.column-screen-left,img.img-fluid.column-screen-right{width:100%}@media(min-width: 992px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.column-sidebar{grid-column:page-start/body-start !important;z-index:998}.column-leftmargin{grid-column:screen-start-inset/body-start !important;z-index:998}.no-row-height{height:1em;overflow:visible}}@media(max-width: 991.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.no-row-height{height:1em;overflow:visible}.page-columns.page-full{overflow:visible}.page-columns.toc-left .margin-caption,.page-columns.toc-left div.aside,.page-columns.toc-left aside:not(.footnotes):not(.sidebar),.page-columns.toc-left .column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.page-columns.toc-left .no-row-height{height:initial;overflow:initial}}@media(max-width: 767.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.no-row-height{height:initial;overflow:initial}#quarto-margin-sidebar{display:none}#quarto-sidebar-toc-left{display:none}.hidden-sm{display:none}}.panel-grid{display:grid;grid-template-rows:repeat(1, 1fr);grid-template-columns:repeat(24, 1fr);gap:1em}.panel-grid .g-col-1{grid-column:auto/span 1}.panel-grid .g-col-2{grid-column:auto/span 2}.panel-grid .g-col-3{grid-column:auto/span 3}.panel-grid .g-col-4{grid-column:auto/span 4}.panel-grid .g-col-5{grid-column:auto/span 5}.panel-grid .g-col-6{grid-column:auto/span 6}.panel-grid .g-col-7{grid-column:auto/span 7}.panel-grid .g-col-8{grid-column:auto/span 8}.panel-grid .g-col-9{grid-column:auto/span 9}.panel-grid .g-col-10{grid-column:auto/span 10}.panel-grid .g-col-11{grid-column:auto/span 11}.panel-grid .g-col-12{grid-column:auto/span 12}.panel-grid .g-col-13{grid-column:auto/span 13}.panel-grid .g-col-14{grid-column:auto/span 14}.panel-grid .g-col-15{grid-column:auto/span 15}.panel-grid .g-col-16{grid-column:auto/span 16}.panel-grid .g-col-17{grid-column:auto/span 17}.panel-grid .g-col-18{grid-column:auto/span 18}.panel-grid .g-col-19{grid-column:auto/span 19}.panel-grid .g-col-20{grid-column:auto/span 20}.panel-grid .g-col-21{grid-column:auto/span 21}.panel-grid .g-col-22{grid-column:auto/span 22}.panel-grid .g-col-23{grid-column:auto/span 23}.panel-grid .g-col-24{grid-column:auto/span 24}.panel-grid .g-start-1{grid-column-start:1}.panel-grid .g-start-2{grid-column-start:2}.panel-grid .g-start-3{grid-column-start:3}.panel-grid .g-start-4{grid-column-start:4}.panel-grid .g-start-5{grid-column-start:5}.panel-grid .g-start-6{grid-column-start:6}.panel-grid .g-start-7{grid-column-start:7}.panel-grid .g-start-8{grid-column-start:8}.panel-grid .g-start-9{grid-column-start:9}.panel-grid .g-start-10{grid-column-start:10}.panel-grid .g-start-11{grid-column-start:11}.panel-grid .g-start-12{grid-column-start:12}.panel-grid .g-start-13{grid-column-start:13}.panel-grid .g-start-14{grid-column-start:14}.panel-grid .g-start-15{grid-column-start:15}.panel-grid .g-start-16{grid-column-start:16}.panel-grid .g-start-17{grid-column-start:17}.panel-grid .g-start-18{grid-column-start:18}.panel-grid .g-start-19{grid-column-start:19}.panel-grid .g-start-20{grid-column-start:20}.panel-grid .g-start-21{grid-column-start:21}.panel-grid .g-start-22{grid-column-start:22}.panel-grid .g-start-23{grid-column-start:23}@media(min-width: 576px){.panel-grid .g-col-sm-1{grid-column:auto/span 1}.panel-grid .g-col-sm-2{grid-column:auto/span 2}.panel-grid .g-col-sm-3{grid-column:auto/span 3}.panel-grid .g-col-sm-4{grid-column:auto/span 4}.panel-grid .g-col-sm-5{grid-column:auto/span 5}.panel-grid .g-col-sm-6{grid-column:auto/span 6}.panel-grid .g-col-sm-7{grid-column:auto/span 7}.panel-grid .g-col-sm-8{grid-column:auto/span 8}.panel-grid .g-col-sm-9{grid-column:auto/span 9}.panel-grid .g-col-sm-10{grid-column:auto/span 10}.panel-grid .g-col-sm-11{grid-column:auto/span 11}.panel-grid .g-col-sm-12{grid-column:auto/span 12}.panel-grid .g-col-sm-13{grid-column:auto/span 13}.panel-grid .g-col-sm-14{grid-column:auto/span 14}.panel-grid .g-col-sm-15{grid-column:auto/span 15}.panel-grid .g-col-sm-16{grid-column:auto/span 16}.panel-grid .g-col-sm-17{grid-column:auto/span 17}.panel-grid .g-col-sm-18{grid-column:auto/span 18}.panel-grid .g-col-sm-19{grid-column:auto/span 19}.panel-grid .g-col-sm-20{grid-column:auto/span 20}.panel-grid .g-col-sm-21{grid-column:auto/span 21}.panel-grid .g-col-sm-22{grid-column:auto/span 22}.panel-grid .g-col-sm-23{grid-column:auto/span 23}.panel-grid .g-col-sm-24{grid-column:auto/span 24}.panel-grid .g-start-sm-1{grid-column-start:1}.panel-grid .g-start-sm-2{grid-column-start:2}.panel-grid .g-start-sm-3{grid-column-start:3}.panel-grid .g-start-sm-4{grid-column-start:4}.panel-grid .g-start-sm-5{grid-column-start:5}.panel-grid .g-start-sm-6{grid-column-start:6}.panel-grid .g-start-sm-7{grid-column-start:7}.panel-grid .g-start-sm-8{grid-column-start:8}.panel-grid .g-start-sm-9{grid-column-start:9}.panel-grid .g-start-sm-10{grid-column-start:10}.panel-grid .g-start-sm-11{grid-column-start:11}.panel-grid .g-start-sm-12{grid-column-start:12}.panel-grid .g-start-sm-13{grid-column-start:13}.panel-grid .g-start-sm-14{grid-column-start:14}.panel-grid .g-start-sm-15{grid-column-start:15}.panel-grid .g-start-sm-16{grid-column-start:16}.panel-grid .g-start-sm-17{grid-column-start:17}.panel-grid .g-start-sm-18{grid-column-start:18}.panel-grid .g-start-sm-19{grid-column-start:19}.panel-grid .g-start-sm-20{grid-column-start:20}.panel-grid .g-start-sm-21{grid-column-start:21}.panel-grid .g-start-sm-22{grid-column-start:22}.panel-grid .g-start-sm-23{grid-column-start:23}}@media(min-width: 768px){.panel-grid .g-col-md-1{grid-column:auto/span 1}.panel-grid .g-col-md-2{grid-column:auto/span 2}.panel-grid .g-col-md-3{grid-column:auto/span 3}.panel-grid .g-col-md-4{grid-column:auto/span 4}.panel-grid .g-col-md-5{grid-column:auto/span 5}.panel-grid .g-col-md-6{grid-column:auto/span 6}.panel-grid .g-col-md-7{grid-column:auto/span 7}.panel-grid .g-col-md-8{grid-column:auto/span 8}.panel-grid .g-col-md-9{grid-column:auto/span 9}.panel-grid .g-col-md-10{grid-column:auto/span 10}.panel-grid .g-col-md-11{grid-column:auto/span 11}.panel-grid .g-col-md-12{grid-column:auto/span 12}.panel-grid .g-col-md-13{grid-column:auto/span 13}.panel-grid .g-col-md-14{grid-column:auto/span 14}.panel-grid .g-col-md-15{grid-column:auto/span 15}.panel-grid .g-col-md-16{grid-column:auto/span 16}.panel-grid .g-col-md-17{grid-column:auto/span 17}.panel-grid .g-col-md-18{grid-column:auto/span 18}.panel-grid .g-col-md-19{grid-column:auto/span 19}.panel-grid .g-col-md-20{grid-column:auto/span 20}.panel-grid .g-col-md-21{grid-column:auto/span 21}.panel-grid .g-col-md-22{grid-column:auto/span 22}.panel-grid .g-col-md-23{grid-column:auto/span 23}.panel-grid .g-col-md-24{grid-column:auto/span 24}.panel-grid .g-start-md-1{grid-column-start:1}.panel-grid .g-start-md-2{grid-column-start:2}.panel-grid .g-start-md-3{grid-column-start:3}.panel-grid .g-start-md-4{grid-column-start:4}.panel-grid .g-start-md-5{grid-column-start:5}.panel-grid .g-start-md-6{grid-column-start:6}.panel-grid .g-start-md-7{grid-column-start:7}.panel-grid .g-start-md-8{grid-column-start:8}.panel-grid .g-start-md-9{grid-column-start:9}.panel-grid .g-start-md-10{grid-column-start:10}.panel-grid .g-start-md-11{grid-column-start:11}.panel-grid .g-start-md-12{grid-column-start:12}.panel-grid .g-start-md-13{grid-column-start:13}.panel-grid .g-start-md-14{grid-column-start:14}.panel-grid .g-start-md-15{grid-column-start:15}.panel-grid .g-start-md-16{grid-column-start:16}.panel-grid .g-start-md-17{grid-column-start:17}.panel-grid .g-start-md-18{grid-column-start:18}.panel-grid .g-start-md-19{grid-column-start:19}.panel-grid .g-start-md-20{grid-column-start:20}.panel-grid .g-start-md-21{grid-column-start:21}.panel-grid .g-start-md-22{grid-column-start:22}.panel-grid .g-start-md-23{grid-column-start:23}}@media(min-width: 992px){.panel-grid .g-col-lg-1{grid-column:auto/span 1}.panel-grid .g-col-lg-2{grid-column:auto/span 2}.panel-grid .g-col-lg-3{grid-column:auto/span 3}.panel-grid .g-col-lg-4{grid-column:auto/span 4}.panel-grid .g-col-lg-5{grid-column:auto/span 5}.panel-grid .g-col-lg-6{grid-column:auto/span 6}.panel-grid .g-col-lg-7{grid-column:auto/span 7}.panel-grid .g-col-lg-8{grid-column:auto/span 8}.panel-grid .g-col-lg-9{grid-column:auto/span 9}.panel-grid .g-col-lg-10{grid-column:auto/span 10}.panel-grid .g-col-lg-11{grid-column:auto/span 11}.panel-grid .g-col-lg-12{grid-column:auto/span 12}.panel-grid .g-col-lg-13{grid-column:auto/span 13}.panel-grid .g-col-lg-14{grid-column:auto/span 14}.panel-grid .g-col-lg-15{grid-column:auto/span 15}.panel-grid .g-col-lg-16{grid-column:auto/span 16}.panel-grid .g-col-lg-17{grid-column:auto/span 17}.panel-grid .g-col-lg-18{grid-column:auto/span 18}.panel-grid .g-col-lg-19{grid-column:auto/span 19}.panel-grid .g-col-lg-20{grid-column:auto/span 20}.panel-grid .g-col-lg-21{grid-column:auto/span 21}.panel-grid .g-col-lg-22{grid-column:auto/span 22}.panel-grid .g-col-lg-23{grid-column:auto/span 23}.panel-grid .g-col-lg-24{grid-column:auto/span 24}.panel-grid .g-start-lg-1{grid-column-start:1}.panel-grid .g-start-lg-2{grid-column-start:2}.panel-grid .g-start-lg-3{grid-column-start:3}.panel-grid .g-start-lg-4{grid-column-start:4}.panel-grid .g-start-lg-5{grid-column-start:5}.panel-grid .g-start-lg-6{grid-column-start:6}.panel-grid .g-start-lg-7{grid-column-start:7}.panel-grid .g-start-lg-8{grid-column-start:8}.panel-grid .g-start-lg-9{grid-column-start:9}.panel-grid .g-start-lg-10{grid-column-start:10}.panel-grid .g-start-lg-11{grid-column-start:11}.panel-grid .g-start-lg-12{grid-column-start:12}.panel-grid .g-start-lg-13{grid-column-start:13}.panel-grid .g-start-lg-14{grid-column-start:14}.panel-grid .g-start-lg-15{grid-column-start:15}.panel-grid .g-start-lg-16{grid-column-start:16}.panel-grid .g-start-lg-17{grid-column-start:17}.panel-grid .g-start-lg-18{grid-column-start:18}.panel-grid .g-start-lg-19{grid-column-start:19}.panel-grid .g-start-lg-20{grid-column-start:20}.panel-grid .g-start-lg-21{grid-column-start:21}.panel-grid .g-start-lg-22{grid-column-start:22}.panel-grid .g-start-lg-23{grid-column-start:23}}@media(min-width: 1200px){.panel-grid .g-col-xl-1{grid-column:auto/span 1}.panel-grid .g-col-xl-2{grid-column:auto/span 2}.panel-grid .g-col-xl-3{grid-column:auto/span 3}.panel-grid .g-col-xl-4{grid-column:auto/span 4}.panel-grid .g-col-xl-5{grid-column:auto/span 5}.panel-grid .g-col-xl-6{grid-column:auto/span 6}.panel-grid .g-col-xl-7{grid-column:auto/span 7}.panel-grid .g-col-xl-8{grid-column:auto/span 8}.panel-grid .g-col-xl-9{grid-column:auto/span 9}.panel-grid .g-col-xl-10{grid-column:auto/span 10}.panel-grid .g-col-xl-11{grid-column:auto/span 11}.panel-grid .g-col-xl-12{grid-column:auto/span 12}.panel-grid .g-col-xl-13{grid-column:auto/span 13}.panel-grid .g-col-xl-14{grid-column:auto/span 14}.panel-grid .g-col-xl-15{grid-column:auto/span 15}.panel-grid .g-col-xl-16{grid-column:auto/span 16}.panel-grid .g-col-xl-17{grid-column:auto/span 17}.panel-grid .g-col-xl-18{grid-column:auto/span 18}.panel-grid .g-col-xl-19{grid-column:auto/span 19}.panel-grid .g-col-xl-20{grid-column:auto/span 20}.panel-grid .g-col-xl-21{grid-column:auto/span 21}.panel-grid .g-col-xl-22{grid-column:auto/span 22}.panel-grid .g-col-xl-23{grid-column:auto/span 23}.panel-grid .g-col-xl-24{grid-column:auto/span 24}.panel-grid .g-start-xl-1{grid-column-start:1}.panel-grid .g-start-xl-2{grid-column-start:2}.panel-grid .g-start-xl-3{grid-column-start:3}.panel-grid .g-start-xl-4{grid-column-start:4}.panel-grid .g-start-xl-5{grid-column-start:5}.panel-grid .g-start-xl-6{grid-column-start:6}.panel-grid .g-start-xl-7{grid-column-start:7}.panel-grid .g-start-xl-8{grid-column-start:8}.panel-grid .g-start-xl-9{grid-column-start:9}.panel-grid .g-start-xl-10{grid-column-start:10}.panel-grid .g-start-xl-11{grid-column-start:11}.panel-grid .g-start-xl-12{grid-column-start:12}.panel-grid .g-start-xl-13{grid-column-start:13}.panel-grid .g-start-xl-14{grid-column-start:14}.panel-grid .g-start-xl-15{grid-column-start:15}.panel-grid .g-start-xl-16{grid-column-start:16}.panel-grid .g-start-xl-17{grid-column-start:17}.panel-grid .g-start-xl-18{grid-column-start:18}.panel-grid .g-start-xl-19{grid-column-start:19}.panel-grid .g-start-xl-20{grid-column-start:20}.panel-grid .g-start-xl-21{grid-column-start:21}.panel-grid .g-start-xl-22{grid-column-start:22}.panel-grid .g-start-xl-23{grid-column-start:23}}@media(min-width: 1400px){.panel-grid .g-col-xxl-1{grid-column:auto/span 1}.panel-grid .g-col-xxl-2{grid-column:auto/span 2}.panel-grid .g-col-xxl-3{grid-column:auto/span 3}.panel-grid .g-col-xxl-4{grid-column:auto/span 4}.panel-grid .g-col-xxl-5{grid-column:auto/span 5}.panel-grid .g-col-xxl-6{grid-column:auto/span 6}.panel-grid .g-col-xxl-7{grid-column:auto/span 7}.panel-grid .g-col-xxl-8{grid-column:auto/span 8}.panel-grid .g-col-xxl-9{grid-column:auto/span 9}.panel-grid .g-col-xxl-10{grid-column:auto/span 10}.panel-grid .g-col-xxl-11{grid-column:auto/span 11}.panel-grid .g-col-xxl-12{grid-column:auto/span 12}.panel-grid .g-col-xxl-13{grid-column:auto/span 13}.panel-grid .g-col-xxl-14{grid-column:auto/span 14}.panel-grid .g-col-xxl-15{grid-column:auto/span 15}.panel-grid .g-col-xxl-16{grid-column:auto/span 16}.panel-grid .g-col-xxl-17{grid-column:auto/span 17}.panel-grid .g-col-xxl-18{grid-column:auto/span 18}.panel-grid .g-col-xxl-19{grid-column:auto/span 19}.panel-grid .g-col-xxl-20{grid-column:auto/span 20}.panel-grid .g-col-xxl-21{grid-column:auto/span 21}.panel-grid .g-col-xxl-22{grid-column:auto/span 22}.panel-grid .g-col-xxl-23{grid-column:auto/span 23}.panel-grid .g-col-xxl-24{grid-column:auto/span 24}.panel-grid .g-start-xxl-1{grid-column-start:1}.panel-grid .g-start-xxl-2{grid-column-start:2}.panel-grid .g-start-xxl-3{grid-column-start:3}.panel-grid .g-start-xxl-4{grid-column-start:4}.panel-grid .g-start-xxl-5{grid-column-start:5}.panel-grid .g-start-xxl-6{grid-column-start:6}.panel-grid .g-start-xxl-7{grid-column-start:7}.panel-grid .g-start-xxl-8{grid-column-start:8}.panel-grid .g-start-xxl-9{grid-column-start:9}.panel-grid .g-start-xxl-10{grid-column-start:10}.panel-grid .g-start-xxl-11{grid-column-start:11}.panel-grid .g-start-xxl-12{grid-column-start:12}.panel-grid .g-start-xxl-13{grid-column-start:13}.panel-grid .g-start-xxl-14{grid-column-start:14}.panel-grid .g-start-xxl-15{grid-column-start:15}.panel-grid .g-start-xxl-16{grid-column-start:16}.panel-grid .g-start-xxl-17{grid-column-start:17}.panel-grid .g-start-xxl-18{grid-column-start:18}.panel-grid .g-start-xxl-19{grid-column-start:19}.panel-grid .g-start-xxl-20{grid-column-start:20}.panel-grid .g-start-xxl-21{grid-column-start:21}.panel-grid .g-start-xxl-22{grid-column-start:22}.panel-grid .g-start-xxl-23{grid-column-start:23}}main{margin-top:1em;margin-bottom:1em}h1,.h1,h2,.h2{color:inherit;margin-top:2rem;margin-bottom:1rem;font-weight:600}h1.title,.title.h1{margin-top:0}main.content>section:first-of-type>h2:first-child,main.content>section:first-of-type>.h2:first-child{margin-top:0}h2,.h2{border-bottom:1px solid #dee2e6;padding-bottom:.5rem}h3,.h3{font-weight:600}h3,.h3,h4,.h4{opacity:.9;margin-top:1.5rem}h5,.h5,h6,.h6{opacity:.9}.header-section-number{color:#5a6570}.nav-link.active .header-section-number{color:inherit}mark,.mark{padding:0em}.panel-caption,.figure-caption,.subfigure-caption,.table-caption,figcaption,caption{font-size:.9rem;color:#5a6570}.quarto-layout-cell[data-ref-parent] caption{color:#5a6570}.column-margin figcaption,.margin-caption,div.aside,aside,.column-margin{color:#5a6570;font-size:.825rem}.panel-caption.margin-caption{text-align:inherit}.column-margin.column-container p{margin-bottom:0}.column-margin.column-container>*:not(.collapse):first-child{padding-bottom:.5em;display:block}.column-margin.column-container>*:not(.collapse):not(:first-child){padding-top:.5em;padding-bottom:.5em;display:block}.column-margin.column-container>*.collapse:not(.show){display:none}@media(min-width: 768px){.column-margin.column-container .callout-margin-content:first-child{margin-top:4.5em}.column-margin.column-container .callout-margin-content-simple:first-child{margin-top:3.5em}}.margin-caption>*{padding-top:.5em;padding-bottom:.5em}@media(max-width: 767.98px){.quarto-layout-row{flex-direction:column}}.nav-tabs .nav-item{margin-top:1px;cursor:pointer}.tab-content{margin-top:0px;border-left:#dee2e6 1px solid;border-right:#dee2e6 1px solid;border-bottom:#dee2e6 1px solid;margin-left:0;padding:1em;margin-bottom:1em}@media(max-width: 767.98px){.layout-sidebar{margin-left:0;margin-right:0}}.panel-sidebar,.panel-sidebar .form-control,.panel-input,.panel-input .form-control,.selectize-dropdown{font-size:.9rem}.panel-sidebar .form-control,.panel-input .form-control{padding-top:.1rem}.tab-pane div.sourceCode{margin-top:0px}.tab-pane>p{padding-top:0}.tab-pane>p:nth-child(1){padding-top:0}.tab-pane>p:last-child{margin-bottom:0}.tab-pane>pre:last-child{margin-bottom:0}.tab-content>.tab-pane:not(.active){display:none !important}div.sourceCode{background-color:rgba(233,236,239,.65);border:1px solid rgba(233,236,239,.65);border-radius:.25rem}pre.sourceCode{background-color:rgba(0,0,0,0)}pre.sourceCode{border:none;font-size:.875em;overflow:visible !important;padding:.4em}.callout pre.sourceCode{padding-left:0}div.sourceCode{overflow-y:hidden}.callout div.sourceCode{margin-left:initial}.blockquote{font-size:inherit;padding-left:1rem;padding-right:1.5rem;color:#5a6570}.blockquote h1:first-child,.blockquote .h1:first-child,.blockquote h2:first-child,.blockquote .h2:first-child,.blockquote h3:first-child,.blockquote .h3:first-child,.blockquote h4:first-child,.blockquote .h4:first-child,.blockquote h5:first-child,.blockquote .h5:first-child{margin-top:0}pre{background-color:initial;padding:initial;border:initial}p pre code:not(.sourceCode),li pre code:not(.sourceCode),pre code:not(.sourceCode){background-color:initial}p code:not(.sourceCode),li code:not(.sourceCode),td code:not(.sourceCode){background-color:#f8f9fa;padding:.2em}nav p code:not(.sourceCode),nav li code:not(.sourceCode),nav td code:not(.sourceCode){background-color:rgba(0,0,0,0);padding:0}td code:not(.sourceCode){white-space:pre-wrap}#quarto-embedded-source-code-modal>.modal-dialog{max-width:1000px;padding-left:1.75rem;padding-right:1.75rem}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body{padding:0}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body div.sourceCode{margin:0;padding:.2rem .2rem;border-radius:0px;border:none}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-header{padding:.7rem}.code-tools-button{font-size:1rem;padding:.15rem .15rem;margin-left:5px;color:#6c757d;background-color:rgba(0,0,0,0);transition:initial;cursor:pointer}.code-tools-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:1rem 1rem}.code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button>.bi::before{background-image:url('data:image/svg+xml,')}#quarto-embedded-source-code-modal .code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml,')}.sidebar{will-change:top;transition:top 200ms linear;position:sticky;overflow-y:auto;padding-top:1.2em;max-height:100vh}.sidebar.toc-left,.sidebar.margin-sidebar{top:0px;padding-top:1em}.sidebar.quarto-banner-title-block-sidebar>*{padding-top:1.65em}figure .quarto-notebook-link{margin-top:.5em}.quarto-notebook-link{font-size:.75em;color:#6c757d;margin-bottom:1em;text-decoration:none;display:block}.quarto-notebook-link:hover{text-decoration:underline;color:#1e4287}.quarto-notebook-link::before{display:inline-block;height:.75rem;width:.75rem;margin-bottom:0em;margin-right:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml,');background-repeat:no-repeat;background-size:.75rem .75rem}.toc-actions i.bi,.quarto-code-links i.bi,.quarto-other-links i.bi,.quarto-alternate-notebooks i.bi,.quarto-alternate-formats i.bi{margin-right:.4em;font-size:.8rem}.quarto-other-links-text-target .quarto-code-links i.bi,.quarto-other-links-text-target .quarto-other-links i.bi{margin-right:.2em}.quarto-other-formats-text-target .quarto-alternate-formats i.bi{margin-right:.1em}.toc-actions i.bi.empty,.quarto-code-links i.bi.empty,.quarto-other-links i.bi.empty,.quarto-alternate-notebooks i.bi.empty,.quarto-alternate-formats i.bi.empty{padding-left:1em}.quarto-notebook h2,.quarto-notebook .h2{border-bottom:none}.quarto-notebook .cell-container{display:flex}.quarto-notebook .cell-container .cell{flex-grow:4}.quarto-notebook .cell-container .cell-decorator{padding-top:1.5em;padding-right:1em;text-align:right}.quarto-notebook .cell-container.code-fold .cell-decorator{padding-top:3em}.quarto-notebook .cell-code code{white-space:pre-wrap}.quarto-notebook .cell .cell-output-stderr pre code,.quarto-notebook .cell .cell-output-stdout pre code{white-space:pre-wrap;overflow-wrap:anywhere}.toc-actions,.quarto-alternate-formats,.quarto-other-links,.quarto-code-links,.quarto-alternate-notebooks{padding-left:0em}.sidebar .toc-actions a,.sidebar .quarto-alternate-formats a,.sidebar .quarto-other-links a,.sidebar .quarto-code-links a,.sidebar .quarto-alternate-notebooks a,.sidebar nav[role=doc-toc] a{text-decoration:none}.sidebar .toc-actions a:hover,.sidebar .quarto-other-links a:hover,.sidebar .quarto-code-links a:hover,.sidebar .quarto-alternate-formats a:hover,.sidebar .quarto-alternate-notebooks a:hover{color:#1e4287}.sidebar .toc-actions h2,.sidebar .toc-actions .h2,.sidebar .quarto-code-links h2,.sidebar .quarto-code-links .h2,.sidebar .quarto-other-links h2,.sidebar .quarto-other-links .h2,.sidebar .quarto-alternate-notebooks h2,.sidebar .quarto-alternate-notebooks .h2,.sidebar .quarto-alternate-formats h2,.sidebar .quarto-alternate-formats .h2,.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-weight:500;margin-bottom:.2rem;margin-top:.3rem;font-family:inherit;border-bottom:0;padding-bottom:0;padding-top:0px}.sidebar .toc-actions>h2,.sidebar .toc-actions>.h2,.sidebar .quarto-code-links>h2,.sidebar .quarto-code-links>.h2,.sidebar .quarto-other-links>h2,.sidebar .quarto-other-links>.h2,.sidebar .quarto-alternate-notebooks>h2,.sidebar .quarto-alternate-notebooks>.h2,.sidebar .quarto-alternate-formats>h2,.sidebar .quarto-alternate-formats>.h2{font-size:.8rem}.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-size:.875rem}.sidebar nav[role=doc-toc]>ul a{border-left:1px solid #e9ecef;padding-left:.6rem}.sidebar .toc-actions h2>ul a,.sidebar .toc-actions .h2>ul a,.sidebar .quarto-code-links h2>ul a,.sidebar .quarto-code-links .h2>ul a,.sidebar .quarto-other-links h2>ul a,.sidebar .quarto-other-links .h2>ul a,.sidebar .quarto-alternate-notebooks h2>ul a,.sidebar .quarto-alternate-notebooks .h2>ul a,.sidebar .quarto-alternate-formats h2>ul a,.sidebar .quarto-alternate-formats .h2>ul a{border-left:none;padding-left:.6rem}.sidebar .toc-actions ul a:empty,.sidebar .quarto-code-links ul a:empty,.sidebar .quarto-other-links ul a:empty,.sidebar .quarto-alternate-notebooks ul a:empty,.sidebar .quarto-alternate-formats ul a:empty,.sidebar nav[role=doc-toc]>ul a:empty{display:none}.sidebar .toc-actions ul,.sidebar .quarto-code-links ul,.sidebar .quarto-other-links ul,.sidebar .quarto-alternate-notebooks ul,.sidebar .quarto-alternate-formats ul{padding-left:0;list-style:none}.sidebar nav[role=doc-toc] ul{list-style:none;padding-left:0;list-style:none}.sidebar nav[role=doc-toc]>ul{margin-left:.45em}.quarto-margin-sidebar nav[role=doc-toc]{padding-left:.5em}.sidebar .toc-actions>ul,.sidebar .quarto-code-links>ul,.sidebar .quarto-other-links>ul,.sidebar .quarto-alternate-notebooks>ul,.sidebar .quarto-alternate-formats>ul{font-size:.8rem}.sidebar nav[role=doc-toc]>ul{font-size:.875rem}.sidebar .toc-actions ul li a,.sidebar .quarto-code-links ul li a,.sidebar .quarto-other-links ul li a,.sidebar .quarto-alternate-notebooks ul li a,.sidebar .quarto-alternate-formats ul li a,.sidebar nav[role=doc-toc]>ul li a{line-height:1.1rem;padding-bottom:.2rem;padding-top:.2rem;color:inherit}.sidebar nav[role=doc-toc] ul>li>ul>li>a{padding-left:1.2em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>a{padding-left:2.4em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>a{padding-left:3.6em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:4.8em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:6em}.sidebar nav[role=doc-toc] ul>li>a.active,.sidebar nav[role=doc-toc] ul>li>ul>li>a.active{border-left:1px solid #1e4287;color:#1e4287 !important}.sidebar nav[role=doc-toc] ul>li>a:hover,.sidebar nav[role=doc-toc] ul>li>ul>li>a:hover{color:#1e4287 !important}kbd,.kbd{color:#212529;background-color:#f8f9fa;border:1px solid;border-radius:5px;border-color:#dee2e6}.quarto-appendix-contents div.hanging-indent{margin-left:0em}.quarto-appendix-contents div.hanging-indent div.csl-entry{margin-left:1em;text-indent:-1em}.citation a,.footnote-ref{text-decoration:none}.footnotes ol{padding-left:1em}.tippy-content>*{margin-bottom:.7em}.tippy-content>*:last-child{margin-bottom:0}.callout{margin-top:1.25rem;margin-bottom:1.25rem;border-radius:.25rem;overflow-wrap:break-word}.callout .callout-title-container{overflow-wrap:anywhere}.callout.callout-style-simple{padding:.4em .7em;border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout.callout-style-default{border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout .callout-body-container{flex-grow:1}.callout.callout-style-simple .callout-body{font-size:.9rem;font-weight:400}.callout.callout-style-default .callout-body{font-size:.9rem;font-weight:400}.callout:not(.no-icon).callout-titled.callout-style-simple .callout-body{padding-left:1.6em}.callout.callout-titled>.callout-header{padding-top:.2em;margin-bottom:-0.2em}.callout.callout-style-simple>div.callout-header{border-bottom:none;font-size:.9rem;font-weight:600;opacity:75%}.callout.callout-style-default>div.callout-header{border-bottom:none;font-weight:600;opacity:85%;font-size:.9rem;padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body{padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body>:first-child{padding-top:.5rem;margin-top:0}.callout>div.callout-header[data-bs-toggle=collapse]{cursor:pointer}.callout.callout-style-default .callout-header[aria-expanded=false],.callout.callout-style-default .callout-header[aria-expanded=true]{padding-top:0px;margin-bottom:0px;align-items:center}.callout.callout-titled .callout-body>:last-child:not(.sourceCode),.callout.callout-titled .callout-body>div>:last-child:not(.sourceCode){padding-bottom:.5rem;margin-bottom:0}.callout:not(.callout-titled) .callout-body>:first-child,.callout:not(.callout-titled) .callout-body>div>:first-child{margin-top:.25rem}.callout:not(.callout-titled) .callout-body>:last-child,.callout:not(.callout-titled) .callout-body>div>:last-child{margin-bottom:.2rem}.callout.callout-style-simple .callout-icon::before,.callout.callout-style-simple .callout-toggle::before{height:1rem;width:1rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.callout.callout-style-default .callout-icon::before,.callout.callout-style-default .callout-toggle::before{height:.9rem;width:.9rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:.9rem .9rem}.callout.callout-style-default .callout-toggle::before{margin-top:5px}.callout .callout-btn-toggle .callout-toggle::before{transition:transform .2s linear}.callout .callout-header[aria-expanded=false] .callout-toggle::before{transform:rotate(-90deg)}.callout .callout-header[aria-expanded=true] .callout-toggle::before{transform:none}.callout.callout-style-simple:not(.no-icon) div.callout-icon-container{padding-top:.2em;padding-right:.55em}.callout.callout-style-default:not(.no-icon) div.callout-icon-container{padding-top:.1em;padding-right:.35em}.callout.callout-style-default:not(.no-icon) div.callout-title-container{margin-top:-1px}.callout.callout-style-default.callout-caution:not(.no-icon) div.callout-icon-container{padding-top:.3em;padding-right:.35em}.callout>.callout-body>.callout-icon-container>.no-icon,.callout>.callout-header>.callout-icon-container>.no-icon{display:none}div.callout.callout{border-left-color:#6c757d}div.callout.callout-style-default>.callout-header{background-color:#6c757d}div.callout-note.callout{border-left-color:#0d6efd}div.callout-note.callout-style-default>.callout-header{background-color:#e7f1ff}div.callout-note:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-note .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-tip.callout{border-left-color:#198754}div.callout-tip.callout-style-default>.callout-header{background-color:#e8f3ee}div.callout-tip:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-tip .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-warning.callout{border-left-color:#ffc107}div.callout-warning.callout-style-default>.callout-header{background-color:#fff9e6}div.callout-warning:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-warning .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-caution.callout{border-left-color:#fd7e14}div.callout-caution.callout-style-default>.callout-header{background-color:#fff2e8}div.callout-caution:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-caution .callout-toggle::before{background-image:url('data:image/svg+xml,')}div.callout-important.callout{border-left-color:#dc3545}div.callout-important.callout-style-default>.callout-header{background-color:#fcebec}div.callout-important:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml,');}div.callout-important .callout-toggle::before{background-image:url('data:image/svg+xml,')}.quarto-toggle-container{display:flex;align-items:center}.quarto-reader-toggle .bi::before,.quarto-color-scheme-toggle .bi::before{display:inline-block;height:1rem;width:1rem;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.sidebar-navigation{padding-left:20px}.navbar{background-color:#f8f9fa;color:#545555}.navbar .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.navbar .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml,')}.sidebar-navigation .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml,')}.quarto-sidebar-toggle{border-color:#dee2e6;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;border-style:solid;border-width:1px;overflow:hidden;border-top-width:0px;padding-top:0px !important}.quarto-sidebar-toggle-title{cursor:pointer;padding-bottom:2px;margin-left:.25em;text-align:center;font-weight:400;font-size:.775em}#quarto-content .quarto-sidebar-toggle{background:#fafafa}#quarto-content .quarto-sidebar-toggle-title{color:#212529}.quarto-sidebar-toggle-icon{color:#dee2e6;margin-right:.5em;float:right;transition:transform .2s ease}.quarto-sidebar-toggle-icon::before{padding-top:5px}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-icon{transform:rotate(-180deg)}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-title{border-bottom:solid #dee2e6 1px}.quarto-sidebar-toggle-contents{background-color:#fff;padding-right:10px;padding-left:10px;margin-top:0px !important;transition:max-height .5s ease}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-contents{padding-top:1em;padding-bottom:10px}@media(max-width: 767.98px){.sidebar-menu-container{padding-bottom:5em}}.quarto-sidebar-toggle:not(.expanded) .quarto-sidebar-toggle-contents{padding-top:0px !important;padding-bottom:0px}nav[role=doc-toc]{z-index:1020}#quarto-sidebar>*,nav[role=doc-toc]>*{transition:opacity .1s ease,border .1s ease}#quarto-sidebar.slow>*,nav[role=doc-toc].slow>*{transition:opacity .4s ease,border .4s ease}.quarto-color-scheme-toggle:not(.alternate).top-right .bi::before{background-image:url('data:image/svg+xml,')}.quarto-color-scheme-toggle.alternate.top-right .bi::before{background-image:url('data:image/svg+xml,')}#quarto-appendix.default{border-top:1px solid #dee2e6}#quarto-appendix.default{background-color:#fff;padding-top:1.5em;margin-top:2em;z-index:998}#quarto-appendix.default .quarto-appendix-heading{margin-top:0;line-height:1.4em;font-weight:600;opacity:.9;border-bottom:none;margin-bottom:0}#quarto-appendix.default .footnotes ol,#quarto-appendix.default .footnotes ol li>p:last-of-type,#quarto-appendix.default .quarto-appendix-contents>p:last-of-type{margin-bottom:0}#quarto-appendix.default .footnotes ol{margin-left:.5em}#quarto-appendix.default .quarto-appendix-secondary-label{margin-bottom:.4em}#quarto-appendix.default .quarto-appendix-bibtex{font-size:.7em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-bibtex code.sourceCode{white-space:pre-wrap}#quarto-appendix.default .quarto-appendix-citeas{font-size:.9em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-heading{font-size:1em !important}#quarto-appendix.default *[role=doc-endnotes]>ol,#quarto-appendix.default .quarto-appendix-contents>*:not(h2):not(.h2){font-size:.9em}#quarto-appendix.default section{padding-bottom:1.5em}#quarto-appendix.default section *[role=doc-endnotes],#quarto-appendix.default section>*:not(a){opacity:.9;word-wrap:break-word}.btn.btn-quarto,div.cell-output-display .btn-quarto{--bs-btn-color: #fefefe;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fefefe;--bs-btn-hover-bg: #828a91;--bs-btn-hover-border-color: #7b838a;--bs-btn-focus-shadow-rgb: 130, 138, 144;--bs-btn-active-color: #000;--bs-btn-active-bg: #899197;--bs-btn-active-border-color: #7b838a;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ffffff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}nav.quarto-secondary-nav.color-navbar{background-color:#f8f9fa;color:#545555}nav.quarto-secondary-nav.color-navbar h1,nav.quarto-secondary-nav.color-navbar .h1,nav.quarto-secondary-nav.color-navbar .quarto-btn-toggle{color:#545555}@media(max-width: 991.98px){body.nav-sidebar .quarto-title-banner{margin-bottom:0;padding-bottom:1em}body.nav-sidebar #title-block-header{margin-block-end:0}}p.subtitle{margin-top:.25em;margin-bottom:.5em}code a:any-link{color:inherit;text-decoration-color:#6c757d}/*! light */div.observablehq table thead tr th{background-color:var(--bs-body-bg)}input,button,select,optgroup,textarea{background-color:var(--bs-body-bg)}.code-annotated .code-copy-button{margin-right:1.25em;margin-top:0;padding-bottom:0;padding-top:3px}.code-annotation-gutter-bg{background-color:#fff}.code-annotation-gutter{background-color:rgba(233,236,239,.65)}.code-annotation-gutter,.code-annotation-gutter-bg{height:100%;width:calc(20px + .5em);position:absolute;top:0;right:0}dl.code-annotation-container-grid dt{margin-right:1em;margin-top:.25rem}dl.code-annotation-container-grid dt{font-family:"Fira Mono",Menlo,Consolas,monospace;color:#383f45;border:solid #383f45 1px;border-radius:50%;height:22px;width:22px;line-height:22px;font-size:11px;text-align:center;vertical-align:middle;text-decoration:none}dl.code-annotation-container-grid dt[data-target-cell]{cursor:pointer}dl.code-annotation-container-grid dt[data-target-cell].code-annotation-active{color:#fff;border:solid #aaa 1px;background-color:#aaa}pre.code-annotation-code{padding-top:0;padding-bottom:0}pre.code-annotation-code code{z-index:3}#code-annotation-line-highlight-gutter{width:100%;border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}#code-annotation-line-highlight{margin-left:-4em;width:calc(100% + 4em);border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}code.sourceCode .code-annotation-anchor.code-annotation-active{background-color:var(--quarto-hl-normal-color, #aaaaaa);border:solid var(--quarto-hl-normal-color, #aaaaaa) 1px;color:#e9ecef;font-weight:bolder}code.sourceCode .code-annotation-anchor{font-family:"Fira Mono",Menlo,Consolas,monospace;color:var(--quarto-hl-co-color);border:solid var(--quarto-hl-co-color) 1px;border-radius:50%;height:18px;width:18px;font-size:9px;margin-top:2px}code.sourceCode button.code-annotation-anchor{padding:2px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none}code.sourceCode a.code-annotation-anchor{line-height:18px;text-align:center;vertical-align:middle;cursor:default;text-decoration:none}@media print{.page-columns .column-screen-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:page-start-inset/page-end-inset;padding:1em;background:#f8f9fa;z-index:998;opacity:.999;margin-bottom:1em}}.quarto-video{margin-bottom:1em}.table{border-top:1px solid #d3d8dc;border-bottom:1px solid #d3d8dc}.table>thead{border-top-width:0;border-bottom:1px solid #9ba5ae}.table a{word-break:break-word}.table>:not(caption)>*>*{background-color:unset;color:unset}#quarto-document-content .crosstalk-input .checkbox input[type=checkbox],#quarto-document-content .crosstalk-input .checkbox-inline input[type=checkbox]{position:unset;margin-top:unset;margin-left:unset}#quarto-document-content .row{margin-left:unset;margin-right:unset}.quarto-xref{white-space:nowrap}#quarto-draft-alert{margin-top:0px;margin-bottom:0px;padding:.3em;text-align:center;font-size:.9em}#quarto-draft-alert i{margin-right:.3em}a.external:after{content:"";background-image:url('data:image/svg+xml,');background-size:contain;background-repeat:no-repeat;background-position:center center;margin-left:.2em;padding-right:.75em}div.sourceCode code a.external:after{content:none}a.external:after:hover{cursor:pointer}.quarto-ext-icon{display:inline-block;font-size:.75em;padding-left:.3em}.code-with-filename .code-with-filename-file{margin-bottom:0;padding-bottom:2px;padding-top:2px;padding-left:.7em;border:var(--quarto-border-width) solid var(--quarto-border-color);border-radius:var(--quarto-border-radius);border-bottom:0;border-bottom-left-radius:0%;border-bottom-right-radius:0%}.code-with-filename div.sourceCode,.reveal .code-with-filename div.sourceCode{margin-top:0;border-top-left-radius:0%;border-top-right-radius:0%}.code-with-filename .code-with-filename-file pre{margin-bottom:0}.code-with-filename .code-with-filename-file{background-color:rgba(219,219,219,.8)}.quarto-dark .code-with-filename .code-with-filename-file{background-color:#555}.code-with-filename .code-with-filename-file strong{font-weight:400}.quarto-title-banner{margin-bottom:1em;color:#545555;background:#f8f9fa}.quarto-title-banner a{color:#545555}.quarto-title-banner h1,.quarto-title-banner .h1,.quarto-title-banner h2,.quarto-title-banner .h2{color:#545555}.quarto-title-banner .code-tools-button{color:#878888}.quarto-title-banner .code-tools-button:hover{color:#545555}.quarto-title-banner .code-tools-button>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml,')}.quarto-title-banner .quarto-title .title{font-weight:600}.quarto-title-banner .quarto-categories{margin-top:.75em}@media(min-width: 992px){.quarto-title-banner{padding-top:2.5em;padding-bottom:2.5em}}@media(max-width: 991.98px){.quarto-title-banner{padding-top:1em;padding-bottom:1em}}@media(max-width: 767.98px){body.hypothesis-enabled #title-block-header>*{padding-right:20px}}main.quarto-banner-title-block>section:first-child>h2,main.quarto-banner-title-block>section:first-child>.h2,main.quarto-banner-title-block>section:first-child>h3,main.quarto-banner-title-block>section:first-child>.h3,main.quarto-banner-title-block>section:first-child>h4,main.quarto-banner-title-block>section:first-child>.h4{margin-top:0}.quarto-title .quarto-categories{display:flex;flex-wrap:wrap;row-gap:.5em;column-gap:.4em;padding-bottom:.5em;margin-top:.75em}.quarto-title .quarto-categories .quarto-category{padding:.25em .75em;font-size:.65em;text-transform:uppercase;border:solid 1px;border-radius:.25rem;opacity:.6}.quarto-title .quarto-categories .quarto-category a{color:inherit}.quarto-title-meta-container{display:grid;grid-template-columns:1fr auto}.quarto-title-meta-column-end{display:flex;flex-direction:column;padding-left:1em}.quarto-title-meta-column-end a .bi{margin-right:.3em}#title-block-header.quarto-title-block.default .quarto-title-meta{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:1em}#title-block-header.quarto-title-block.default .quarto-title .title{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-author-orcid img{margin-top:-0.2em;height:.8em;width:.8em}#title-block-header.quarto-title-block.default .quarto-title-author-email{opacity:.7}#title-block-header.quarto-title-block.default .quarto-description p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p,#title-block-header.quarto-title-block.default .quarto-title-authors p,#title-block-header.quarto-title-block.default .quarto-title-affiliations p{margin-bottom:.1em}#title-block-header.quarto-title-block.default .quarto-title-meta-heading{text-transform:uppercase;margin-top:1em;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-contents{font-size:.9em}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p.affiliation:last-of-type{margin-bottom:.1em}#title-block-header.quarto-title-block.default p.affiliation{margin-bottom:.1em}#title-block-header.quarto-title-block.default .keywords,#title-block-header.quarto-title-block.default .description,#title-block-header.quarto-title-block.default .abstract{margin-top:0}#title-block-header.quarto-title-block.default .keywords>p,#title-block-header.quarto-title-block.default .description>p,#title-block-header.quarto-title-block.default .abstract>p{font-size:.9em}#title-block-header.quarto-title-block.default .keywords>p:last-of-type,#title-block-header.quarto-title-block.default .description>p:last-of-type,#title-block-header.quarto-title-block.default .abstract>p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .keywords .block-title,#title-block-header.quarto-title-block.default .description .block-title,#title-block-header.quarto-title-block.default .abstract .block-title{margin-top:1em;text-transform:uppercase;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-author{display:grid;grid-template-columns:minmax(max-content, 1fr) 1fr;grid-column-gap:1em}.quarto-title-tools-only{display:flex;justify-content:right}.video-container{position:relative;width:100%;padding-bottom:56.25%}.video{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.code-copy-button{z-index:1} diff --git a/docs/site_libs/bootstrap/bootstrap.min.js b/docs/site_libs/bootstrap/bootstrap.min.js new file mode 100644 index 0000000..e8f21f7 --- /dev/null +++ b/docs/site_libs/bootstrap/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v5.3.1 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function j(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${j(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${j(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${j(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.1"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return n(e)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",Mt="collapsing",jt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(Mt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(Mt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(jt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function Me(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const je={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:Me(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:Me(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==P(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],M=f?-T[$]/2:0,j=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-M-q-z-O.mainAxis:j-q-z-O.mainAxis,K=v?-E[$]/2+M+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"

"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Ws="show",Bs=":not(.dropdown-toggle)",zs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',Rs=`.nav-link${Bs}, .list-group-item${Bs}, [role="tab"]${Bs}, ${zs}`,qs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Vs extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Vs.getOrCreateInstance(i).show())}_getChildren(){return z.find(Rs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(Rs)?t:z.findOne(Rs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Vs.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,zs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Vs.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(qs))Vs.getOrCreateInstance(t)})),m(Vs);const Ks=".bs.toast",Qs=`mouseover${Ks}`,Xs=`mouseout${Ks}`,Ys=`focusin${Ks}`,Us=`focusout${Ks}`,Gs=`hide${Ks}`,Js=`hidden${Ks}`,Zs=`show${Ks}`,to=`shown${Ks}`,eo="hide",io="show",no="showing",so={animation:"boolean",autohide:"boolean",delay:"number"},oo={animation:!0,autohide:!0,delay:5e3};class ro extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return oo}static get DefaultType(){return so}static get NAME(){return"toast"}show(){N.trigger(this._element,Zs).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(eo),d(this._element),this._element.classList.add(io,no),this._queueCallback((()=>{this._element.classList.remove(no),N.trigger(this._element,to),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Gs).defaultPrevented||(this._element.classList.add(no),this._queueCallback((()=>{this._element.classList.add(eo),this._element.classList.remove(no,io),N.trigger(this._element,Js)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(io),super.dispose()}isShown(){return this._element.classList.contains(io)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Qs,(t=>this._onInteraction(t,!0))),N.on(this._element,Xs,(t=>this._onInteraction(t,!1))),N.on(this._element,Ys,(t=>this._onInteraction(t,!0))),N.on(this._element,Us,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ro.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ro),m(ro),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Vs,Toast:ro,Tooltip:cs}})); +//# sourceMappingURL=bootstrap.bundle.min.js.map \ No newline at end of file diff --git a/docs/site_libs/clipboard/clipboard.min.js b/docs/site_libs/clipboard/clipboard.min.js new file mode 100644 index 0000000..1103f81 --- /dev/null +++ b/docs/site_libs/clipboard/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v2.0.11 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}}); +// @license-end \ No newline at end of file diff --git a/docs/site_libs/quarto-html/popper.min.js b/docs/site_libs/quarto-html/popper.min.js new file mode 100644 index 0000000..e3726d7 --- /dev/null +++ b/docs/site_libs/quarto-html/popper.min.js @@ -0,0 +1,6 @@ +/** + * @popperjs/core v2.11.7 - MIT License + */ + +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function n(e){return e instanceof t(e).Element||e instanceof Element}function r(e){return e instanceof t(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)}var i=Math.max,a=Math.min,s=Math.round;function f(){var e=navigator.userAgentData;return null!=e&&e.brands&&Array.isArray(e.brands)?e.brands.map((function(e){return e.brand+"/"+e.version})).join(" "):navigator.userAgent}function c(){return!/^((?!chrome|android).)*safari/i.test(f())}function p(e,o,i){void 0===o&&(o=!1),void 0===i&&(i=!1);var a=e.getBoundingClientRect(),f=1,p=1;o&&r(e)&&(f=e.offsetWidth>0&&s(a.width)/e.offsetWidth||1,p=e.offsetHeight>0&&s(a.height)/e.offsetHeight||1);var u=(n(e)?t(e):window).visualViewport,l=!c()&&i,d=(a.left+(l&&u?u.offsetLeft:0))/f,h=(a.top+(l&&u?u.offsetTop:0))/p,m=a.width/f,v=a.height/p;return{width:m,height:v,top:h,right:d+m,bottom:h+v,left:d,x:d,y:h}}function u(e){var n=t(e);return{scrollLeft:n.pageXOffset,scrollTop:n.pageYOffset}}function l(e){return e?(e.nodeName||"").toLowerCase():null}function d(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function h(e){return p(d(e)).left+u(e).scrollLeft}function m(e){return t(e).getComputedStyle(e)}function v(e){var t=m(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function y(e,n,o){void 0===o&&(o=!1);var i,a,f=r(n),c=r(n)&&function(e){var t=e.getBoundingClientRect(),n=s(t.width)/e.offsetWidth||1,r=s(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(n),m=d(n),y=p(e,c,o),g={scrollLeft:0,scrollTop:0},b={x:0,y:0};return(f||!f&&!o)&&(("body"!==l(n)||v(m))&&(g=(i=n)!==t(i)&&r(i)?{scrollLeft:(a=i).scrollLeft,scrollTop:a.scrollTop}:u(i)),r(n)?((b=p(n,!0)).x+=n.clientLeft,b.y+=n.clientTop):m&&(b.x=h(m))),{x:y.left+g.scrollLeft-b.x,y:y.top+g.scrollTop-b.y,width:y.width,height:y.height}}function g(e){var t=p(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function b(e){return"html"===l(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||d(e)}function x(e){return["html","body","#document"].indexOf(l(e))>=0?e.ownerDocument.body:r(e)&&v(e)?e:x(b(e))}function w(e,n){var r;void 0===n&&(n=[]);var o=x(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=t(o),s=i?[a].concat(a.visualViewport||[],v(o)?o:[]):o,f=n.concat(s);return i?f:f.concat(w(b(s)))}function O(e){return["table","td","th"].indexOf(l(e))>=0}function j(e){return r(e)&&"fixed"!==m(e).position?e.offsetParent:null}function E(e){for(var n=t(e),i=j(e);i&&O(i)&&"static"===m(i).position;)i=j(i);return i&&("html"===l(i)||"body"===l(i)&&"static"===m(i).position)?n:i||function(e){var t=/firefox/i.test(f());if(/Trident/i.test(f())&&r(e)&&"fixed"===m(e).position)return null;var n=b(e);for(o(n)&&(n=n.host);r(n)&&["html","body"].indexOf(l(n))<0;){var i=m(n);if("none"!==i.transform||"none"!==i.perspective||"paint"===i.contain||-1!==["transform","perspective"].indexOf(i.willChange)||t&&"filter"===i.willChange||t&&i.filter&&"none"!==i.filter)return n;n=n.parentNode}return null}(e)||n}var D="top",A="bottom",L="right",P="left",M="auto",k=[D,A,L,P],W="start",B="end",H="viewport",T="popper",R=k.reduce((function(e,t){return e.concat([t+"-"+W,t+"-"+B])}),[]),S=[].concat(k,[M]).reduce((function(e,t){return e.concat([t,t+"-"+W,t+"-"+B])}),[]),V=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function q(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}function C(e){return e.split("-")[0]}function N(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&o(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function I(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function _(e,r,o){return r===H?I(function(e,n){var r=t(e),o=d(e),i=r.visualViewport,a=o.clientWidth,s=o.clientHeight,f=0,p=0;if(i){a=i.width,s=i.height;var u=c();(u||!u&&"fixed"===n)&&(f=i.offsetLeft,p=i.offsetTop)}return{width:a,height:s,x:f+h(e),y:p}}(e,o)):n(r)?function(e,t){var n=p(e,!1,"fixed"===t);return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}(r,o):I(function(e){var t,n=d(e),r=u(e),o=null==(t=e.ownerDocument)?void 0:t.body,a=i(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=i(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),f=-r.scrollLeft+h(e),c=-r.scrollTop;return"rtl"===m(o||n).direction&&(f+=i(n.clientWidth,o?o.clientWidth:0)-a),{width:a,height:s,x:f,y:c}}(d(e)))}function F(e,t,o,s){var f="clippingParents"===t?function(e){var t=w(b(e)),o=["absolute","fixed"].indexOf(m(e).position)>=0&&r(e)?E(e):e;return n(o)?t.filter((function(e){return n(e)&&N(e,o)&&"body"!==l(e)})):[]}(e):[].concat(t),c=[].concat(f,[o]),p=c[0],u=c.reduce((function(t,n){var r=_(e,n,s);return t.top=i(r.top,t.top),t.right=a(r.right,t.right),t.bottom=a(r.bottom,t.bottom),t.left=i(r.left,t.left),t}),_(e,p,s));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function U(e){return e.split("-")[1]}function z(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function X(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?C(o):null,a=o?U(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case D:t={x:s,y:n.y-r.height};break;case A:t={x:s,y:n.y+n.height};break;case L:t={x:n.x+n.width,y:f};break;case P:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?z(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case W:t[c]=t[c]-(n[p]/2-r[p]/2);break;case B:t[c]=t[c]+(n[p]/2-r[p]/2)}}return t}function Y(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function G(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function J(e,t){void 0===t&&(t={});var r=t,o=r.placement,i=void 0===o?e.placement:o,a=r.strategy,s=void 0===a?e.strategy:a,f=r.boundary,c=void 0===f?"clippingParents":f,u=r.rootBoundary,l=void 0===u?H:u,h=r.elementContext,m=void 0===h?T:h,v=r.altBoundary,y=void 0!==v&&v,g=r.padding,b=void 0===g?0:g,x=Y("number"!=typeof b?b:G(b,k)),w=m===T?"reference":T,O=e.rects.popper,j=e.elements[y?w:m],E=F(n(j)?j:j.contextElement||d(e.elements.popper),c,l,s),P=p(e.elements.reference),M=X({reference:P,element:O,strategy:"absolute",placement:i}),W=I(Object.assign({},O,M)),B=m===T?W:P,R={top:E.top-B.top+x.top,bottom:B.bottom-E.bottom+x.bottom,left:E.left-B.left+x.left,right:B.right-E.right+x.right},S=e.modifiersData.offset;if(m===T&&S){var V=S[i];Object.keys(R).forEach((function(e){var t=[L,A].indexOf(e)>=0?1:-1,n=[D,A].indexOf(e)>=0?"y":"x";R[e]+=V[n]*t}))}return R}var K={placement:"bottom",modifiers:[],strategy:"absolute"};function Q(){for(var e=arguments.length,t=new Array(e),n=0;n=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[P,L].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,i),e}),{}),s=a[t.placement],f=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}},se={left:"right",right:"left",bottom:"top",top:"bottom"};function fe(e){return e.replace(/left|right|bottom|top/g,(function(e){return se[e]}))}var ce={start:"end",end:"start"};function pe(e){return e.replace(/start|end/g,(function(e){return ce[e]}))}function ue(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=void 0===f?S:f,p=U(r),u=p?s?R:R.filter((function(e){return U(e)===p})):k,l=u.filter((function(e){return c.indexOf(e)>=0}));0===l.length&&(l=u);var d=l.reduce((function(t,n){return t[n]=J(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[C(n)],t}),{});return Object.keys(d).sort((function(e,t){return d[e]-d[t]}))}var le={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,s=void 0===a||a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.flipVariations,h=void 0===d||d,m=n.allowedAutoPlacements,v=t.options.placement,y=C(v),g=f||(y===v||!h?[fe(v)]:function(e){if(C(e)===M)return[];var t=fe(e);return[pe(e),t,pe(t)]}(v)),b=[v].concat(g).reduce((function(e,n){return e.concat(C(n)===M?ue(t,{placement:n,boundary:p,rootBoundary:u,padding:c,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),x=t.rects.reference,w=t.rects.popper,O=new Map,j=!0,E=b[0],k=0;k=0,S=R?"width":"height",V=J(t,{placement:B,boundary:p,rootBoundary:u,altBoundary:l,padding:c}),q=R?T?L:P:T?A:D;x[S]>w[S]&&(q=fe(q));var N=fe(q),I=[];if(i&&I.push(V[H]<=0),s&&I.push(V[q]<=0,V[N]<=0),I.every((function(e){return e}))){E=B,j=!1;break}O.set(B,I)}if(j)for(var _=function(e){var t=b.find((function(t){var n=O.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return E=t,"break"},F=h?3:1;F>0;F--){if("break"===_(F))break}t.placement!==E&&(t.modifiersData[r]._skip=!0,t.placement=E,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function de(e,t,n){return i(e,a(t,n))}var he={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,s=void 0===o||o,f=n.altAxis,c=void 0!==f&&f,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.padding,h=n.tether,m=void 0===h||h,v=n.tetherOffset,y=void 0===v?0:v,b=J(t,{boundary:p,rootBoundary:u,padding:d,altBoundary:l}),x=C(t.placement),w=U(t.placement),O=!w,j=z(x),M="x"===j?"y":"x",k=t.modifiersData.popperOffsets,B=t.rects.reference,H=t.rects.popper,T="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,R="number"==typeof T?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,V={x:0,y:0};if(k){if(s){var q,N="y"===j?D:P,I="y"===j?A:L,_="y"===j?"height":"width",F=k[j],X=F+b[N],Y=F-b[I],G=m?-H[_]/2:0,K=w===W?B[_]:H[_],Q=w===W?-H[_]:-B[_],Z=t.elements.arrow,$=m&&Z?g(Z):{width:0,height:0},ee=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},te=ee[N],ne=ee[I],re=de(0,B[_],$[_]),oe=O?B[_]/2-G-re-te-R.mainAxis:K-re-te-R.mainAxis,ie=O?-B[_]/2+G+re+ne+R.mainAxis:Q+re+ne+R.mainAxis,ae=t.elements.arrow&&E(t.elements.arrow),se=ae?"y"===j?ae.clientTop||0:ae.clientLeft||0:0,fe=null!=(q=null==S?void 0:S[j])?q:0,ce=F+ie-fe,pe=de(m?a(X,F+oe-fe-se):X,F,m?i(Y,ce):Y);k[j]=pe,V[j]=pe-F}if(c){var ue,le="x"===j?D:P,he="x"===j?A:L,me=k[M],ve="y"===M?"height":"width",ye=me+b[le],ge=me-b[he],be=-1!==[D,P].indexOf(x),xe=null!=(ue=null==S?void 0:S[M])?ue:0,we=be?ye:me-B[ve]-H[ve]-xe+R.altAxis,Oe=be?me+B[ve]+H[ve]-xe-R.altAxis:ge,je=m&&be?function(e,t,n){var r=de(e,t,n);return r>n?n:r}(we,me,Oe):de(m?we:ye,me,m?Oe:ge);k[M]=je,V[M]=je-me}t.modifiersData[r]=V}},requiresIfExists:["offset"]};var me={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=C(n.placement),f=z(s),c=[P,L].indexOf(s)>=0?"height":"width";if(i&&a){var p=function(e,t){return Y("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:G(e,k))}(o.padding,n),u=g(i),l="y"===f?D:P,d="y"===f?A:L,h=n.rects.reference[c]+n.rects.reference[f]-a[f]-n.rects.popper[c],m=a[f]-n.rects.reference[f],v=E(i),y=v?"y"===f?v.clientHeight||0:v.clientWidth||0:0,b=h/2-m/2,x=p[l],w=y-u[c]-p[d],O=y/2-u[c]/2+b,j=de(x,O,w),M=f;n.modifiersData[r]=((t={})[M]=j,t.centerOffset=j-O,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&N(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ve(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function ye(e){return[D,L,A,P].some((function(t){return e[t]>=0}))}var ge={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=J(t,{elementContext:"reference"}),s=J(t,{altBoundary:!0}),f=ve(a,r),c=ve(s,o,i),p=ye(f),u=ye(c);t.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:u},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":u})}},be=Z({defaultModifiers:[ee,te,oe,ie]}),xe=[ee,te,oe,ie,ae,le,he,me,ge],we=Z({defaultModifiers:xe});e.applyStyles=ie,e.arrow=me,e.computeStyles=oe,e.createPopper=we,e.createPopperLite=be,e.defaultModifiers=xe,e.detectOverflow=J,e.eventListeners=ee,e.flip=le,e.hide=ge,e.offset=ae,e.popperGenerator=Z,e.popperOffsets=te,e.preventOverflow=he,Object.defineProperty(e,"__esModule",{value:!0})})); + diff --git a/docs/site_libs/quarto-html/quarto-syntax-highlighting-dark.css b/docs/site_libs/quarto-html/quarto-syntax-highlighting-dark.css new file mode 100644 index 0000000..1f5a3ab --- /dev/null +++ b/docs/site_libs/quarto-html/quarto-syntax-highlighting-dark.css @@ -0,0 +1,189 @@ +/* quarto syntax highlight colors */ +:root { + --quarto-hl-al-color: #f07178; + --quarto-hl-an-color: #d4d0ab; + --quarto-hl-at-color: #00e0e0; + --quarto-hl-bn-color: #d4d0ab; + --quarto-hl-bu-color: #abe338; + --quarto-hl-ch-color: #abe338; + --quarto-hl-co-color: #f8f8f2; + --quarto-hl-cv-color: #ffd700; + --quarto-hl-cn-color: #ffd700; + --quarto-hl-cf-color: #ffa07a; + --quarto-hl-dt-color: #ffa07a; + --quarto-hl-dv-color: #d4d0ab; + --quarto-hl-do-color: #f8f8f2; + --quarto-hl-er-color: #f07178; + --quarto-hl-ex-color: #00e0e0; + --quarto-hl-fl-color: #d4d0ab; + --quarto-hl-fu-color: #ffa07a; + --quarto-hl-im-color: #abe338; + --quarto-hl-in-color: #d4d0ab; + --quarto-hl-kw-color: #ffa07a; + --quarto-hl-op-color: #ffa07a; + --quarto-hl-ot-color: #00e0e0; + --quarto-hl-pp-color: #dcc6e0; + --quarto-hl-re-color: #00e0e0; + --quarto-hl-sc-color: #abe338; + --quarto-hl-ss-color: #abe338; + --quarto-hl-st-color: #abe338; + --quarto-hl-va-color: #00e0e0; + --quarto-hl-vs-color: #abe338; + --quarto-hl-wa-color: #dcc6e0; +} + +/* other quarto variables */ +:root { + --quarto-font-monospace: "Fira Mono", Menlo, Consolas, monospace; +} + +code span.al { + background-color: #2a0f15; + font-weight: bold; + color: #f07178; +} + +code span.an { + color: #d4d0ab; +} + +code span.at { + color: #00e0e0; +} + +code span.bn { + color: #d4d0ab; +} + +code span.bu { + color: #abe338; +} + +code span.ch { + color: #abe338; +} + +code span.co { + font-style: italic; + color: #f8f8f2; +} + +code span.cv { + color: #ffd700; +} + +code span.cn { + color: #ffd700; +} + +code span.cf { + font-weight: bold; + color: #ffa07a; +} + +code span.dt { + color: #ffa07a; +} + +code span.dv { + color: #d4d0ab; +} + +code span.do { + color: #f8f8f2; +} + +code span.er { + color: #f07178; + text-decoration: underline; +} + +code span.ex { + font-weight: bold; + color: #00e0e0; +} + +code span.fl { + color: #d4d0ab; +} + +code span.fu { + color: #ffa07a; +} + +code span.im { + color: #abe338; +} + +code span.in { + color: #d4d0ab; +} + +code span.kw { + font-weight: bold; + color: #ffa07a; +} + +pre > code.sourceCode > span { + color: #f8f8f2; +} + +code span { + color: #f8f8f2; +} + +code.sourceCode > span { + color: #f8f8f2; +} + +div.sourceCode, +div.sourceCode pre.sourceCode { + color: #f8f8f2; +} + +code span.op { + color: #ffa07a; +} + +code span.ot { + color: #00e0e0; +} + +code span.pp { + color: #dcc6e0; +} + +code span.re { + background-color: #f8f8f2; + color: #00e0e0; +} + +code span.sc { + color: #abe338; +} + +code span.ss { + color: #abe338; +} + +code span.st { + color: #abe338; +} + +code span.va { + color: #00e0e0; +} + +code span.vs { + color: #abe338; +} + +code span.wa { + color: #dcc6e0; +} + +.prevent-inlining { + content: " code.sourceCode > span { + color: #003B4F; +} + +code span { + color: #003B4F; +} + +code.sourceCode > span { + color: #003B4F; +} + +div.sourceCode, +div.sourceCode pre.sourceCode { + color: #003B4F; +} + +code span.ot { + color: #003B4F; + font-style: inherit; +} + +code span.at { + color: #657422; + font-style: inherit; +} + +code span.ss { + color: #20794D; + font-style: inherit; +} + +code span.an { + color: #5E5E5E; + font-style: inherit; +} + +code span.fu { + color: #4758AB; + font-style: inherit; +} + +code span.st { + color: #20794D; + font-style: inherit; +} + +code span.cf { + color: #003B4F; + font-weight: bold; + font-style: inherit; +} + +code span.op { + color: #5E5E5E; + font-style: inherit; +} + +code span.er { + color: #AD0000; + font-style: inherit; +} + +code span.bn { + color: #AD0000; + font-style: inherit; +} + +code span.al { + color: #AD0000; + font-style: inherit; +} + +code span.va { + color: #111111; + font-style: inherit; +} + +code span.bu { + font-style: inherit; +} + +code span.ex { + font-style: inherit; +} + +code span.pp { + color: #AD0000; + font-style: inherit; +} + +code span.in { + color: #5E5E5E; + font-style: inherit; +} + +code span.vs { + color: #20794D; + font-style: inherit; +} + +code span.wa { + color: #5E5E5E; + font-style: italic; +} + +code span.do { + color: #5E5E5E; + font-style: italic; +} + +code span.im { + color: #00769E; + font-style: inherit; +} + +code span.ch { + color: #20794D; + font-style: inherit; +} + +code span.dt { + color: #AD0000; + font-style: inherit; +} + +code span.fl { + color: #AD0000; + font-style: inherit; +} + +code span.co { + color: #5E5E5E; + font-style: inherit; +} + +code span.cv { + color: #5E5E5E; + font-style: italic; +} + +code span.cn { + color: #8f5902; + font-style: inherit; +} + +code span.sc { + color: #5E5E5E; + font-style: inherit; +} + +code span.dv { + color: #AD0000; + font-style: inherit; +} + +code span.kw { + color: #003B4F; + font-weight: bold; + font-style: inherit; +} + +.prevent-inlining { + content: " { + // Find any conflicting margin elements and add margins to the + // top to prevent overlap + const marginChildren = window.document.querySelectorAll( + ".column-margin.column-container > *, .margin-caption, .aside" + ); + + let lastBottom = 0; + for (const marginChild of marginChildren) { + if (marginChild.offsetParent !== null) { + // clear the top margin so we recompute it + marginChild.style.marginTop = null; + const top = marginChild.getBoundingClientRect().top + window.scrollY; + if (top < lastBottom) { + const marginChildStyle = window.getComputedStyle(marginChild); + const marginBottom = parseFloat(marginChildStyle["marginBottom"]); + const margin = lastBottom - top + marginBottom; + marginChild.style.marginTop = `${margin}px`; + } + const styles = window.getComputedStyle(marginChild); + const marginTop = parseFloat(styles["marginTop"]); + lastBottom = top + marginChild.getBoundingClientRect().height + marginTop; + } + } +}; + +window.document.addEventListener("DOMContentLoaded", function (_event) { + // Recompute the position of margin elements anytime the body size changes + if (window.ResizeObserver) { + const resizeObserver = new window.ResizeObserver( + throttle(() => { + layoutMarginEls(); + if ( + window.document.body.getBoundingClientRect().width < 990 && + isReaderMode() + ) { + quartoToggleReader(); + } + }, 50) + ); + resizeObserver.observe(window.document.body); + } + + const tocEl = window.document.querySelector('nav.toc-active[role="doc-toc"]'); + const sidebarEl = window.document.getElementById("quarto-sidebar"); + const leftTocEl = window.document.getElementById("quarto-sidebar-toc-left"); + const marginSidebarEl = window.document.getElementById( + "quarto-margin-sidebar" + ); + // function to determine whether the element has a previous sibling that is active + const prevSiblingIsActiveLink = (el) => { + const sibling = el.previousElementSibling; + if (sibling && sibling.tagName === "A") { + return sibling.classList.contains("active"); + } else { + return false; + } + }; + + // fire slideEnter for bootstrap tab activations (for htmlwidget resize behavior) + function fireSlideEnter(e) { + const event = window.document.createEvent("Event"); + event.initEvent("slideenter", true, true); + window.document.dispatchEvent(event); + } + const tabs = window.document.querySelectorAll('a[data-bs-toggle="tab"]'); + tabs.forEach((tab) => { + tab.addEventListener("shown.bs.tab", fireSlideEnter); + }); + + // fire slideEnter for tabby tab activations (for htmlwidget resize behavior) + document.addEventListener("tabby", fireSlideEnter, false); + + // Track scrolling and mark TOC links as active + // get table of contents and sidebar (bail if we don't have at least one) + const tocLinks = tocEl + ? [...tocEl.querySelectorAll("a[data-scroll-target]")] + : []; + const makeActive = (link) => tocLinks[link].classList.add("active"); + const removeActive = (link) => tocLinks[link].classList.remove("active"); + const removeAllActive = () => + [...Array(tocLinks.length).keys()].forEach((link) => removeActive(link)); + + // activate the anchor for a section associated with this TOC entry + tocLinks.forEach((link) => { + link.addEventListener("click", () => { + if (link.href.indexOf("#") !== -1) { + const anchor = link.href.split("#")[1]; + const heading = window.document.querySelector( + `[data-anchor-id="${anchor}"]` + ); + if (heading) { + // Add the class + heading.classList.add("reveal-anchorjs-link"); + + // function to show the anchor + const handleMouseout = () => { + heading.classList.remove("reveal-anchorjs-link"); + heading.removeEventListener("mouseout", handleMouseout); + }; + + // add a function to clear the anchor when the user mouses out of it + heading.addEventListener("mouseout", handleMouseout); + } + } + }); + }); + + const sections = tocLinks.map((link) => { + const target = link.getAttribute("data-scroll-target"); + if (target.startsWith("#")) { + return window.document.getElementById(decodeURI(`${target.slice(1)}`)); + } else { + return window.document.querySelector(decodeURI(`${target}`)); + } + }); + + const sectionMargin = 200; + let currentActive = 0; + // track whether we've initialized state the first time + let init = false; + + const updateActiveLink = () => { + // The index from bottom to top (e.g. reversed list) + let sectionIndex = -1; + if ( + window.innerHeight + window.pageYOffset >= + window.document.body.offsetHeight + ) { + // This is the no-scroll case where last section should be the active one + sectionIndex = 0; + } else { + // This finds the last section visible on screen that should be made active + sectionIndex = [...sections].reverse().findIndex((section) => { + if (section) { + return window.pageYOffset >= section.offsetTop - sectionMargin; + } else { + return false; + } + }); + } + if (sectionIndex > -1) { + const current = sections.length - sectionIndex - 1; + if (current !== currentActive) { + removeAllActive(); + currentActive = current; + makeActive(current); + if (init) { + window.dispatchEvent(sectionChanged); + } + init = true; + } + } + }; + + const inHiddenRegion = (top, bottom, hiddenRegions) => { + for (const region of hiddenRegions) { + if (top <= region.bottom && bottom >= region.top) { + return true; + } + } + return false; + }; + + const categorySelector = "header.quarto-title-block .quarto-category"; + const activateCategories = (href) => { + // Find any categories + // Surround them with a link pointing back to: + // #category=Authoring + try { + const categoryEls = window.document.querySelectorAll(categorySelector); + for (const categoryEl of categoryEls) { + const categoryText = categoryEl.textContent; + if (categoryText) { + const link = `${href}#category=${encodeURIComponent(categoryText)}`; + const linkEl = window.document.createElement("a"); + linkEl.setAttribute("href", link); + for (const child of categoryEl.childNodes) { + linkEl.append(child); + } + categoryEl.appendChild(linkEl); + } + } + } catch { + // Ignore errors + } + }; + function hasTitleCategories() { + return window.document.querySelector(categorySelector) !== null; + } + + function offsetRelativeUrl(url) { + const offset = getMeta("quarto:offset"); + return offset ? offset + url : url; + } + + function offsetAbsoluteUrl(url) { + const offset = getMeta("quarto:offset"); + const baseUrl = new URL(offset, window.location); + + const projRelativeUrl = url.replace(baseUrl, ""); + if (projRelativeUrl.startsWith("/")) { + return projRelativeUrl; + } else { + return "/" + projRelativeUrl; + } + } + + // read a meta tag value + function getMeta(metaName) { + const metas = window.document.getElementsByTagName("meta"); + for (let i = 0; i < metas.length; i++) { + if (metas[i].getAttribute("name") === metaName) { + return metas[i].getAttribute("content"); + } + } + return ""; + } + + async function findAndActivateCategories() { + const currentPagePath = offsetAbsoluteUrl(window.location.href); + const response = await fetch(offsetRelativeUrl("listings.json")); + if (response.status == 200) { + return response.json().then(function (listingPaths) { + const listingHrefs = []; + for (const listingPath of listingPaths) { + const pathWithoutLeadingSlash = listingPath.listing.substring(1); + for (const item of listingPath.items) { + if ( + item === currentPagePath || + item === currentPagePath + "index.html" + ) { + // Resolve this path against the offset to be sure + // we already are using the correct path to the listing + // (this adjusts the listing urls to be rooted against + // whatever root the page is actually running against) + const relative = offsetRelativeUrl(pathWithoutLeadingSlash); + const baseUrl = window.location; + const resolvedPath = new URL(relative, baseUrl); + listingHrefs.push(resolvedPath.pathname); + break; + } + } + } + + // Look up the tree for a nearby linting and use that if we find one + const nearestListing = findNearestParentListing( + offsetAbsoluteUrl(window.location.pathname), + listingHrefs + ); + if (nearestListing) { + activateCategories(nearestListing); + } else { + // See if the referrer is a listing page for this item + const referredRelativePath = offsetAbsoluteUrl(document.referrer); + const referrerListing = listingHrefs.find((listingHref) => { + const isListingReferrer = + listingHref === referredRelativePath || + listingHref === referredRelativePath + "index.html"; + return isListingReferrer; + }); + + if (referrerListing) { + // Try to use the referrer if possible + activateCategories(referrerListing); + } else if (listingHrefs.length > 0) { + // Otherwise, just fall back to the first listing + activateCategories(listingHrefs[0]); + } + } + }); + } + } + if (hasTitleCategories()) { + findAndActivateCategories(); + } + + const findNearestParentListing = (href, listingHrefs) => { + if (!href || !listingHrefs) { + return undefined; + } + // Look up the tree for a nearby linting and use that if we find one + const relativeParts = href.substring(1).split("/"); + while (relativeParts.length > 0) { + const path = relativeParts.join("/"); + for (const listingHref of listingHrefs) { + if (listingHref.startsWith(path)) { + return listingHref; + } + } + relativeParts.pop(); + } + + return undefined; + }; + + const manageSidebarVisiblity = (el, placeholderDescriptor) => { + let isVisible = true; + let elRect; + + return (hiddenRegions) => { + if (el === null) { + return; + } + + // Find the last element of the TOC + const lastChildEl = el.lastElementChild; + + if (lastChildEl) { + // Converts the sidebar to a menu + const convertToMenu = () => { + for (const child of el.children) { + child.style.opacity = 0; + child.style.overflow = "hidden"; + child.style.pointerEvents = "none"; + } + + nexttick(() => { + const toggleContainer = window.document.createElement("div"); + toggleContainer.style.width = "100%"; + toggleContainer.classList.add("zindex-over-content"); + toggleContainer.classList.add("quarto-sidebar-toggle"); + toggleContainer.classList.add("headroom-target"); // Marks this to be managed by headeroom + toggleContainer.id = placeholderDescriptor.id; + toggleContainer.style.position = "fixed"; + + const toggleIcon = window.document.createElement("i"); + toggleIcon.classList.add("quarto-sidebar-toggle-icon"); + toggleIcon.classList.add("bi"); + toggleIcon.classList.add("bi-caret-down-fill"); + + const toggleTitle = window.document.createElement("div"); + const titleEl = window.document.body.querySelector( + placeholderDescriptor.titleSelector + ); + if (titleEl) { + toggleTitle.append( + titleEl.textContent || titleEl.innerText, + toggleIcon + ); + } + toggleTitle.classList.add("zindex-over-content"); + toggleTitle.classList.add("quarto-sidebar-toggle-title"); + toggleContainer.append(toggleTitle); + + const toggleContents = window.document.createElement("div"); + toggleContents.classList = el.classList; + toggleContents.classList.add("zindex-over-content"); + toggleContents.classList.add("quarto-sidebar-toggle-contents"); + for (const child of el.children) { + if (child.id === "toc-title") { + continue; + } + + const clone = child.cloneNode(true); + clone.style.opacity = 1; + clone.style.pointerEvents = null; + clone.style.display = null; + toggleContents.append(clone); + } + toggleContents.style.height = "0px"; + const positionToggle = () => { + // position the element (top left of parent, same width as parent) + if (!elRect) { + elRect = el.getBoundingClientRect(); + } + toggleContainer.style.left = `${elRect.left}px`; + toggleContainer.style.top = `${elRect.top}px`; + toggleContainer.style.width = `${elRect.width}px`; + }; + positionToggle(); + + toggleContainer.append(toggleContents); + el.parentElement.prepend(toggleContainer); + + // Process clicks + let tocShowing = false; + // Allow the caller to control whether this is dismissed + // when it is clicked (e.g. sidebar navigation supports + // opening and closing the nav tree, so don't dismiss on click) + const clickEl = placeholderDescriptor.dismissOnClick + ? toggleContainer + : toggleTitle; + + const closeToggle = () => { + if (tocShowing) { + toggleContainer.classList.remove("expanded"); + toggleContents.style.height = "0px"; + tocShowing = false; + } + }; + + // Get rid of any expanded toggle if the user scrolls + window.document.addEventListener( + "scroll", + throttle(() => { + closeToggle(); + }, 50) + ); + + // Handle positioning of the toggle + window.addEventListener( + "resize", + throttle(() => { + elRect = undefined; + positionToggle(); + }, 50) + ); + + window.addEventListener("quarto-hrChanged", () => { + elRect = undefined; + }); + + // Process the click + clickEl.onclick = () => { + if (!tocShowing) { + toggleContainer.classList.add("expanded"); + toggleContents.style.height = null; + tocShowing = true; + } else { + closeToggle(); + } + }; + }); + }; + + // Converts a sidebar from a menu back to a sidebar + const convertToSidebar = () => { + for (const child of el.children) { + child.style.opacity = 1; + child.style.overflow = null; + child.style.pointerEvents = null; + } + + const placeholderEl = window.document.getElementById( + placeholderDescriptor.id + ); + if (placeholderEl) { + placeholderEl.remove(); + } + + el.classList.remove("rollup"); + }; + + if (isReaderMode()) { + convertToMenu(); + isVisible = false; + } else { + // Find the top and bottom o the element that is being managed + const elTop = el.offsetTop; + const elBottom = + elTop + lastChildEl.offsetTop + lastChildEl.offsetHeight; + + if (!isVisible) { + // If the element is current not visible reveal if there are + // no conflicts with overlay regions + if (!inHiddenRegion(elTop, elBottom, hiddenRegions)) { + convertToSidebar(); + isVisible = true; + } + } else { + // If the element is visible, hide it if it conflicts with overlay regions + // and insert a placeholder toggle (or if we're in reader mode) + if (inHiddenRegion(elTop, elBottom, hiddenRegions)) { + convertToMenu(); + isVisible = false; + } + } + } + } + }; + }; + + const tabEls = document.querySelectorAll('a[data-bs-toggle="tab"]'); + for (const tabEl of tabEls) { + const id = tabEl.getAttribute("data-bs-target"); + if (id) { + const columnEl = document.querySelector( + `${id} .column-margin, .tabset-margin-content` + ); + if (columnEl) + tabEl.addEventListener("shown.bs.tab", function (event) { + const el = event.srcElement; + if (el) { + const visibleCls = `${el.id}-margin-content`; + // walk up until we find a parent tabset + let panelTabsetEl = el.parentElement; + while (panelTabsetEl) { + if (panelTabsetEl.classList.contains("panel-tabset")) { + break; + } + panelTabsetEl = panelTabsetEl.parentElement; + } + + if (panelTabsetEl) { + const prevSib = panelTabsetEl.previousElementSibling; + if ( + prevSib && + prevSib.classList.contains("tabset-margin-container") + ) { + const childNodes = prevSib.querySelectorAll( + ".tabset-margin-content" + ); + for (const childEl of childNodes) { + if (childEl.classList.contains(visibleCls)) { + childEl.classList.remove("collapse"); + } else { + childEl.classList.add("collapse"); + } + } + } + } + } + + layoutMarginEls(); + }); + } + } + + // Manage the visibility of the toc and the sidebar + const marginScrollVisibility = manageSidebarVisiblity(marginSidebarEl, { + id: "quarto-toc-toggle", + titleSelector: "#toc-title", + dismissOnClick: true, + }); + const sidebarScrollVisiblity = manageSidebarVisiblity(sidebarEl, { + id: "quarto-sidebarnav-toggle", + titleSelector: ".title", + dismissOnClick: false, + }); + let tocLeftScrollVisibility; + if (leftTocEl) { + tocLeftScrollVisibility = manageSidebarVisiblity(leftTocEl, { + id: "quarto-lefttoc-toggle", + titleSelector: "#toc-title", + dismissOnClick: true, + }); + } + + // Find the first element that uses formatting in special columns + const conflictingEls = window.document.body.querySelectorAll( + '[class^="column-"], [class*=" column-"], aside, [class*="margin-caption"], [class*=" margin-caption"], [class*="margin-ref"], [class*=" margin-ref"]' + ); + + // Filter all the possibly conflicting elements into ones + // the do conflict on the left or ride side + const arrConflictingEls = Array.from(conflictingEls); + const leftSideConflictEls = arrConflictingEls.filter((el) => { + if (el.tagName === "ASIDE") { + return false; + } + return Array.from(el.classList).find((className) => { + return ( + className !== "column-body" && + className.startsWith("column-") && + !className.endsWith("right") && + !className.endsWith("container") && + className !== "column-margin" + ); + }); + }); + const rightSideConflictEls = arrConflictingEls.filter((el) => { + if (el.tagName === "ASIDE") { + return true; + } + + const hasMarginCaption = Array.from(el.classList).find((className) => { + return className == "margin-caption"; + }); + if (hasMarginCaption) { + return true; + } + + return Array.from(el.classList).find((className) => { + return ( + className !== "column-body" && + !className.endsWith("container") && + className.startsWith("column-") && + !className.endsWith("left") + ); + }); + }); + + const kOverlapPaddingSize = 10; + function toRegions(els) { + return els.map((el) => { + const boundRect = el.getBoundingClientRect(); + const top = + boundRect.top + + document.documentElement.scrollTop - + kOverlapPaddingSize; + return { + top, + bottom: top + el.scrollHeight + 2 * kOverlapPaddingSize, + }; + }); + } + + let hasObserved = false; + const visibleItemObserver = (els) => { + let visibleElements = [...els]; + const intersectionObserver = new IntersectionObserver( + (entries, _observer) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + if (visibleElements.indexOf(entry.target) === -1) { + visibleElements.push(entry.target); + } + } else { + visibleElements = visibleElements.filter((visibleEntry) => { + return visibleEntry !== entry; + }); + } + }); + + if (!hasObserved) { + hideOverlappedSidebars(); + } + hasObserved = true; + }, + {} + ); + els.forEach((el) => { + intersectionObserver.observe(el); + }); + + return { + getVisibleEntries: () => { + return visibleElements; + }, + }; + }; + + const rightElementObserver = visibleItemObserver(rightSideConflictEls); + const leftElementObserver = visibleItemObserver(leftSideConflictEls); + + const hideOverlappedSidebars = () => { + marginScrollVisibility(toRegions(rightElementObserver.getVisibleEntries())); + sidebarScrollVisiblity(toRegions(leftElementObserver.getVisibleEntries())); + if (tocLeftScrollVisibility) { + tocLeftScrollVisibility( + toRegions(leftElementObserver.getVisibleEntries()) + ); + } + }; + + window.quartoToggleReader = () => { + // Applies a slow class (or removes it) + // to update the transition speed + const slowTransition = (slow) => { + const manageTransition = (id, slow) => { + const el = document.getElementById(id); + if (el) { + if (slow) { + el.classList.add("slow"); + } else { + el.classList.remove("slow"); + } + } + }; + + manageTransition("TOC", slow); + manageTransition("quarto-sidebar", slow); + }; + const readerMode = !isReaderMode(); + setReaderModeValue(readerMode); + + // If we're entering reader mode, slow the transition + if (readerMode) { + slowTransition(readerMode); + } + highlightReaderToggle(readerMode); + hideOverlappedSidebars(); + + // If we're exiting reader mode, restore the non-slow transition + if (!readerMode) { + slowTransition(!readerMode); + } + }; + + const highlightReaderToggle = (readerMode) => { + const els = document.querySelectorAll(".quarto-reader-toggle"); + if (els) { + els.forEach((el) => { + if (readerMode) { + el.classList.add("reader"); + } else { + el.classList.remove("reader"); + } + }); + } + }; + + const setReaderModeValue = (val) => { + if (window.location.protocol !== "file:") { + window.localStorage.setItem("quarto-reader-mode", val); + } else { + localReaderMode = val; + } + }; + + const isReaderMode = () => { + if (window.location.protocol !== "file:") { + return window.localStorage.getItem("quarto-reader-mode") === "true"; + } else { + return localReaderMode; + } + }; + let localReaderMode = null; + + const tocOpenDepthStr = tocEl?.getAttribute("data-toc-expanded"); + const tocOpenDepth = tocOpenDepthStr ? Number(tocOpenDepthStr) : 1; + + // Walk the TOC and collapse/expand nodes + // Nodes are expanded if: + // - they are top level + // - they have children that are 'active' links + // - they are directly below an link that is 'active' + const walk = (el, depth) => { + // Tick depth when we enter a UL + if (el.tagName === "UL") { + depth = depth + 1; + } + + // It this is active link + let isActiveNode = false; + if (el.tagName === "A" && el.classList.contains("active")) { + isActiveNode = true; + } + + // See if there is an active child to this element + let hasActiveChild = false; + for (child of el.children) { + hasActiveChild = walk(child, depth) || hasActiveChild; + } + + // Process the collapse state if this is an UL + if (el.tagName === "UL") { + if (tocOpenDepth === -1 && depth > 1) { + // toc-expand: false + el.classList.add("collapse"); + } else if ( + depth <= tocOpenDepth || + hasActiveChild || + prevSiblingIsActiveLink(el) + ) { + el.classList.remove("collapse"); + } else { + el.classList.add("collapse"); + } + + // untick depth when we leave a UL + depth = depth - 1; + } + return hasActiveChild || isActiveNode; + }; + + // walk the TOC and expand / collapse any items that should be shown + if (tocEl) { + updateActiveLink(); + walk(tocEl, 0); + } + + // Throttle the scroll event and walk peridiocally + window.document.addEventListener( + "scroll", + throttle(() => { + if (tocEl) { + updateActiveLink(); + walk(tocEl, 0); + } + if (!isReaderMode()) { + hideOverlappedSidebars(); + } + }, 5) + ); + window.addEventListener( + "resize", + throttle(() => { + if (tocEl) { + updateActiveLink(); + walk(tocEl, 0); + } + if (!isReaderMode()) { + hideOverlappedSidebars(); + } + }, 10) + ); + hideOverlappedSidebars(); + highlightReaderToggle(isReaderMode()); +}); + +// grouped tabsets +window.addEventListener("pageshow", (_event) => { + function getTabSettings() { + const data = localStorage.getItem("quarto-persistent-tabsets-data"); + if (!data) { + localStorage.setItem("quarto-persistent-tabsets-data", "{}"); + return {}; + } + if (data) { + return JSON.parse(data); + } + } + + function setTabSettings(data) { + localStorage.setItem( + "quarto-persistent-tabsets-data", + JSON.stringify(data) + ); + } + + function setTabState(groupName, groupValue) { + const data = getTabSettings(); + data[groupName] = groupValue; + setTabSettings(data); + } + + function toggleTab(tab, active) { + const tabPanelId = tab.getAttribute("aria-controls"); + const tabPanel = document.getElementById(tabPanelId); + if (active) { + tab.classList.add("active"); + tabPanel.classList.add("active"); + } else { + tab.classList.remove("active"); + tabPanel.classList.remove("active"); + } + } + + function toggleAll(selectedGroup, selectorsToSync) { + for (const [thisGroup, tabs] of Object.entries(selectorsToSync)) { + const active = selectedGroup === thisGroup; + for (const tab of tabs) { + toggleTab(tab, active); + } + } + } + + function findSelectorsToSyncByLanguage() { + const result = {}; + const tabs = Array.from( + document.querySelectorAll(`div[data-group] a[id^='tabset-']`) + ); + for (const item of tabs) { + const div = item.parentElement.parentElement.parentElement; + const group = div.getAttribute("data-group"); + if (!result[group]) { + result[group] = {}; + } + const selectorsToSync = result[group]; + const value = item.innerHTML; + if (!selectorsToSync[value]) { + selectorsToSync[value] = []; + } + selectorsToSync[value].push(item); + } + return result; + } + + function setupSelectorSync() { + const selectorsToSync = findSelectorsToSyncByLanguage(); + Object.entries(selectorsToSync).forEach(([group, tabSetsByValue]) => { + Object.entries(tabSetsByValue).forEach(([value, items]) => { + items.forEach((item) => { + item.addEventListener("click", (_event) => { + setTabState(group, value); + toggleAll(value, selectorsToSync[group]); + }); + }); + }); + }); + return selectorsToSync; + } + + const selectorsToSync = setupSelectorSync(); + for (const [group, selectedName] of Object.entries(getTabSettings())) { + const selectors = selectorsToSync[group]; + // it's possible that stale state gives us empty selections, so we explicitly check here. + if (selectors) { + toggleAll(selectedName, selectors); + } + } +}); + +function throttle(func, wait) { + let waiting = false; + return function () { + if (!waiting) { + func.apply(this, arguments); + waiting = true; + setTimeout(function () { + waiting = false; + }, wait); + } + }; +} + +function nexttick(func) { + return setTimeout(func, 0); +} diff --git a/docs/site_libs/quarto-html/tippy.css b/docs/site_libs/quarto-html/tippy.css new file mode 100644 index 0000000..e6ae635 --- /dev/null +++ b/docs/site_libs/quarto-html/tippy.css @@ -0,0 +1 @@ +.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1} \ No newline at end of file diff --git a/docs/site_libs/quarto-html/tippy.umd.min.js b/docs/site_libs/quarto-html/tippy.umd.min.js new file mode 100644 index 0000000..ca292be --- /dev/null +++ b/docs/site_libs/quarto-html/tippy.umd.min.js @@ -0,0 +1,2 @@ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],t):(e=e||self).tippy=t(e.Popper)}(this,(function(e){"use strict";var t={passive:!0,capture:!0},n=function(){return document.body};function r(e,t,n){if(Array.isArray(e)){var r=e[t];return null==r?Array.isArray(n)?n[t]:n:r}return e}function o(e,t){var n={}.toString.call(e);return 0===n.indexOf("[object")&&n.indexOf(t+"]")>-1}function i(e,t){return"function"==typeof e?e.apply(void 0,t):e}function a(e,t){return 0===t?e:function(r){clearTimeout(n),n=setTimeout((function(){e(r)}),t)};var n}function s(e,t){var n=Object.assign({},e);return t.forEach((function(e){delete n[e]})),n}function u(e){return[].concat(e)}function c(e,t){-1===e.indexOf(t)&&e.push(t)}function p(e){return e.split("-")[0]}function f(e){return[].slice.call(e)}function l(e){return Object.keys(e).reduce((function(t,n){return void 0!==e[n]&&(t[n]=e[n]),t}),{})}function d(){return document.createElement("div")}function v(e){return["Element","Fragment"].some((function(t){return o(e,t)}))}function m(e){return o(e,"MouseEvent")}function g(e){return!(!e||!e._tippy||e._tippy.reference!==e)}function h(e){return v(e)?[e]:function(e){return o(e,"NodeList")}(e)?f(e):Array.isArray(e)?e:f(document.querySelectorAll(e))}function b(e,t){e.forEach((function(e){e&&(e.style.transitionDuration=t+"ms")}))}function y(e,t){e.forEach((function(e){e&&e.setAttribute("data-state",t)}))}function w(e){var t,n=u(e)[0];return null!=n&&null!=(t=n.ownerDocument)&&t.body?n.ownerDocument:document}function E(e,t,n){var r=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(t){e[r](t,n)}))}function O(e,t){for(var n=t;n;){var r;if(e.contains(n))return!0;n=null==n.getRootNode||null==(r=n.getRootNode())?void 0:r.host}return!1}var x={isTouch:!1},C=0;function T(){x.isTouch||(x.isTouch=!0,window.performance&&document.addEventListener("mousemove",A))}function A(){var e=performance.now();e-C<20&&(x.isTouch=!1,document.removeEventListener("mousemove",A)),C=e}function L(){var e=document.activeElement;if(g(e)){var t=e._tippy;e.blur&&!t.state.isVisible&&e.blur()}}var D=!!("undefined"!=typeof window&&"undefined"!=typeof document)&&!!window.msCrypto,R=Object.assign({appendTo:n,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),k=Object.keys(R);function P(e){var t=(e.plugins||[]).reduce((function(t,n){var r,o=n.name,i=n.defaultValue;o&&(t[o]=void 0!==e[o]?e[o]:null!=(r=R[o])?r:i);return t}),{});return Object.assign({},e,t)}function j(e,t){var n=Object.assign({},t,{content:i(t.content,[e])},t.ignoreAttributes?{}:function(e,t){return(t?Object.keys(P(Object.assign({},R,{plugins:t}))):k).reduce((function(t,n){var r=(e.getAttribute("data-tippy-"+n)||"").trim();if(!r)return t;if("content"===n)t[n]=r;else try{t[n]=JSON.parse(r)}catch(e){t[n]=r}return t}),{})}(e,t.plugins));return n.aria=Object.assign({},R.aria,n.aria),n.aria={expanded:"auto"===n.aria.expanded?t.interactive:n.aria.expanded,content:"auto"===n.aria.content?t.interactive?null:"describedby":n.aria.content},n}function M(e,t){e.innerHTML=t}function V(e){var t=d();return!0===e?t.className="tippy-arrow":(t.className="tippy-svg-arrow",v(e)?t.appendChild(e):M(t,e)),t}function I(e,t){v(t.content)?(M(e,""),e.appendChild(t.content)):"function"!=typeof t.content&&(t.allowHTML?M(e,t.content):e.textContent=t.content)}function S(e){var t=e.firstElementChild,n=f(t.children);return{box:t,content:n.find((function(e){return e.classList.contains("tippy-content")})),arrow:n.find((function(e){return e.classList.contains("tippy-arrow")||e.classList.contains("tippy-svg-arrow")})),backdrop:n.find((function(e){return e.classList.contains("tippy-backdrop")}))}}function N(e){var t=d(),n=d();n.className="tippy-box",n.setAttribute("data-state","hidden"),n.setAttribute("tabindex","-1");var r=d();function o(n,r){var o=S(t),i=o.box,a=o.content,s=o.arrow;r.theme?i.setAttribute("data-theme",r.theme):i.removeAttribute("data-theme"),"string"==typeof r.animation?i.setAttribute("data-animation",r.animation):i.removeAttribute("data-animation"),r.inertia?i.setAttribute("data-inertia",""):i.removeAttribute("data-inertia"),i.style.maxWidth="number"==typeof r.maxWidth?r.maxWidth+"px":r.maxWidth,r.role?i.setAttribute("role",r.role):i.removeAttribute("role"),n.content===r.content&&n.allowHTML===r.allowHTML||I(a,e.props),r.arrow?s?n.arrow!==r.arrow&&(i.removeChild(s),i.appendChild(V(r.arrow))):i.appendChild(V(r.arrow)):s&&i.removeChild(s)}return r.className="tippy-content",r.setAttribute("data-state","hidden"),I(r,e.props),t.appendChild(n),n.appendChild(r),o(e.props,e.props),{popper:t,onUpdate:o}}N.$$tippy=!0;var B=1,H=[],U=[];function _(o,s){var v,g,h,C,T,A,L,k,M=j(o,Object.assign({},R,P(l(s)))),V=!1,I=!1,N=!1,_=!1,F=[],W=a(we,M.interactiveDebounce),X=B++,Y=(k=M.plugins).filter((function(e,t){return k.indexOf(e)===t})),$={id:X,reference:o,popper:d(),popperInstance:null,props:M,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:Y,clearDelayTimeouts:function(){clearTimeout(v),clearTimeout(g),cancelAnimationFrame(h)},setProps:function(e){if($.state.isDestroyed)return;ae("onBeforeUpdate",[$,e]),be();var t=$.props,n=j(o,Object.assign({},t,l(e),{ignoreAttributes:!0}));$.props=n,he(),t.interactiveDebounce!==n.interactiveDebounce&&(ce(),W=a(we,n.interactiveDebounce));t.triggerTarget&&!n.triggerTarget?u(t.triggerTarget).forEach((function(e){e.removeAttribute("aria-expanded")})):n.triggerTarget&&o.removeAttribute("aria-expanded");ue(),ie(),J&&J(t,n);$.popperInstance&&(Ce(),Ae().forEach((function(e){requestAnimationFrame(e._tippy.popperInstance.forceUpdate)})));ae("onAfterUpdate",[$,e])},setContent:function(e){$.setProps({content:e})},show:function(){var e=$.state.isVisible,t=$.state.isDestroyed,o=!$.state.isEnabled,a=x.isTouch&&!$.props.touch,s=r($.props.duration,0,R.duration);if(e||t||o||a)return;if(te().hasAttribute("disabled"))return;if(ae("onShow",[$],!1),!1===$.props.onShow($))return;$.state.isVisible=!0,ee()&&(z.style.visibility="visible");ie(),de(),$.state.isMounted||(z.style.transition="none");if(ee()){var u=re(),p=u.box,f=u.content;b([p,f],0)}A=function(){var e;if($.state.isVisible&&!_){if(_=!0,z.offsetHeight,z.style.transition=$.props.moveTransition,ee()&&$.props.animation){var t=re(),n=t.box,r=t.content;b([n,r],s),y([n,r],"visible")}se(),ue(),c(U,$),null==(e=$.popperInstance)||e.forceUpdate(),ae("onMount",[$]),$.props.animation&&ee()&&function(e,t){me(e,t)}(s,(function(){$.state.isShown=!0,ae("onShown",[$])}))}},function(){var e,t=$.props.appendTo,r=te();e=$.props.interactive&&t===n||"parent"===t?r.parentNode:i(t,[r]);e.contains(z)||e.appendChild(z);$.state.isMounted=!0,Ce()}()},hide:function(){var e=!$.state.isVisible,t=$.state.isDestroyed,n=!$.state.isEnabled,o=r($.props.duration,1,R.duration);if(e||t||n)return;if(ae("onHide",[$],!1),!1===$.props.onHide($))return;$.state.isVisible=!1,$.state.isShown=!1,_=!1,V=!1,ee()&&(z.style.visibility="hidden");if(ce(),ve(),ie(!0),ee()){var i=re(),a=i.box,s=i.content;$.props.animation&&(b([a,s],o),y([a,s],"hidden"))}se(),ue(),$.props.animation?ee()&&function(e,t){me(e,(function(){!$.state.isVisible&&z.parentNode&&z.parentNode.contains(z)&&t()}))}(o,$.unmount):$.unmount()},hideWithInteractivity:function(e){ne().addEventListener("mousemove",W),c(H,W),W(e)},enable:function(){$.state.isEnabled=!0},disable:function(){$.hide(),$.state.isEnabled=!1},unmount:function(){$.state.isVisible&&$.hide();if(!$.state.isMounted)return;Te(),Ae().forEach((function(e){e._tippy.unmount()})),z.parentNode&&z.parentNode.removeChild(z);U=U.filter((function(e){return e!==$})),$.state.isMounted=!1,ae("onHidden",[$])},destroy:function(){if($.state.isDestroyed)return;$.clearDelayTimeouts(),$.unmount(),be(),delete o._tippy,$.state.isDestroyed=!0,ae("onDestroy",[$])}};if(!M.render)return $;var q=M.render($),z=q.popper,J=q.onUpdate;z.setAttribute("data-tippy-root",""),z.id="tippy-"+$.id,$.popper=z,o._tippy=$,z._tippy=$;var G=Y.map((function(e){return e.fn($)})),K=o.hasAttribute("aria-expanded");return he(),ue(),ie(),ae("onCreate",[$]),M.showOnCreate&&Le(),z.addEventListener("mouseenter",(function(){$.props.interactive&&$.state.isVisible&&$.clearDelayTimeouts()})),z.addEventListener("mouseleave",(function(){$.props.interactive&&$.props.trigger.indexOf("mouseenter")>=0&&ne().addEventListener("mousemove",W)})),$;function Q(){var e=$.props.touch;return Array.isArray(e)?e:[e,0]}function Z(){return"hold"===Q()[0]}function ee(){var e;return!(null==(e=$.props.render)||!e.$$tippy)}function te(){return L||o}function ne(){var e=te().parentNode;return e?w(e):document}function re(){return S(z)}function oe(e){return $.state.isMounted&&!$.state.isVisible||x.isTouch||C&&"focus"===C.type?0:r($.props.delay,e?0:1,R.delay)}function ie(e){void 0===e&&(e=!1),z.style.pointerEvents=$.props.interactive&&!e?"":"none",z.style.zIndex=""+$.props.zIndex}function ae(e,t,n){var r;(void 0===n&&(n=!0),G.forEach((function(n){n[e]&&n[e].apply(n,t)})),n)&&(r=$.props)[e].apply(r,t)}function se(){var e=$.props.aria;if(e.content){var t="aria-"+e.content,n=z.id;u($.props.triggerTarget||o).forEach((function(e){var r=e.getAttribute(t);if($.state.isVisible)e.setAttribute(t,r?r+" "+n:n);else{var o=r&&r.replace(n,"").trim();o?e.setAttribute(t,o):e.removeAttribute(t)}}))}}function ue(){!K&&$.props.aria.expanded&&u($.props.triggerTarget||o).forEach((function(e){$.props.interactive?e.setAttribute("aria-expanded",$.state.isVisible&&e===te()?"true":"false"):e.removeAttribute("aria-expanded")}))}function ce(){ne().removeEventListener("mousemove",W),H=H.filter((function(e){return e!==W}))}function pe(e){if(!x.isTouch||!N&&"mousedown"!==e.type){var t=e.composedPath&&e.composedPath()[0]||e.target;if(!$.props.interactive||!O(z,t)){if(u($.props.triggerTarget||o).some((function(e){return O(e,t)}))){if(x.isTouch)return;if($.state.isVisible&&$.props.trigger.indexOf("click")>=0)return}else ae("onClickOutside",[$,e]);!0===$.props.hideOnClick&&($.clearDelayTimeouts(),$.hide(),I=!0,setTimeout((function(){I=!1})),$.state.isMounted||ve())}}}function fe(){N=!0}function le(){N=!1}function de(){var e=ne();e.addEventListener("mousedown",pe,!0),e.addEventListener("touchend",pe,t),e.addEventListener("touchstart",le,t),e.addEventListener("touchmove",fe,t)}function ve(){var e=ne();e.removeEventListener("mousedown",pe,!0),e.removeEventListener("touchend",pe,t),e.removeEventListener("touchstart",le,t),e.removeEventListener("touchmove",fe,t)}function me(e,t){var n=re().box;function r(e){e.target===n&&(E(n,"remove",r),t())}if(0===e)return t();E(n,"remove",T),E(n,"add",r),T=r}function ge(e,t,n){void 0===n&&(n=!1),u($.props.triggerTarget||o).forEach((function(r){r.addEventListener(e,t,n),F.push({node:r,eventType:e,handler:t,options:n})}))}function he(){var e;Z()&&(ge("touchstart",ye,{passive:!0}),ge("touchend",Ee,{passive:!0})),(e=$.props.trigger,e.split(/\s+/).filter(Boolean)).forEach((function(e){if("manual"!==e)switch(ge(e,ye),e){case"mouseenter":ge("mouseleave",Ee);break;case"focus":ge(D?"focusout":"blur",Oe);break;case"focusin":ge("focusout",Oe)}}))}function be(){F.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),F=[]}function ye(e){var t,n=!1;if($.state.isEnabled&&!xe(e)&&!I){var r="focus"===(null==(t=C)?void 0:t.type);C=e,L=e.currentTarget,ue(),!$.state.isVisible&&m(e)&&H.forEach((function(t){return t(e)})),"click"===e.type&&($.props.trigger.indexOf("mouseenter")<0||V)&&!1!==$.props.hideOnClick&&$.state.isVisible?n=!0:Le(e),"click"===e.type&&(V=!n),n&&!r&&De(e)}}function we(e){var t=e.target,n=te().contains(t)||z.contains(t);"mousemove"===e.type&&n||function(e,t){var n=t.clientX,r=t.clientY;return e.every((function(e){var t=e.popperRect,o=e.popperState,i=e.props.interactiveBorder,a=p(o.placement),s=o.modifiersData.offset;if(!s)return!0;var u="bottom"===a?s.top.y:0,c="top"===a?s.bottom.y:0,f="right"===a?s.left.x:0,l="left"===a?s.right.x:0,d=t.top-r+u>i,v=r-t.bottom-c>i,m=t.left-n+f>i,g=n-t.right-l>i;return d||v||m||g}))}(Ae().concat(z).map((function(e){var t,n=null==(t=e._tippy.popperInstance)?void 0:t.state;return n?{popperRect:e.getBoundingClientRect(),popperState:n,props:M}:null})).filter(Boolean),e)&&(ce(),De(e))}function Ee(e){xe(e)||$.props.trigger.indexOf("click")>=0&&V||($.props.interactive?$.hideWithInteractivity(e):De(e))}function Oe(e){$.props.trigger.indexOf("focusin")<0&&e.target!==te()||$.props.interactive&&e.relatedTarget&&z.contains(e.relatedTarget)||De(e)}function xe(e){return!!x.isTouch&&Z()!==e.type.indexOf("touch")>=0}function Ce(){Te();var t=$.props,n=t.popperOptions,r=t.placement,i=t.offset,a=t.getReferenceClientRect,s=t.moveTransition,u=ee()?S(z).arrow:null,c=a?{getBoundingClientRect:a,contextElement:a.contextElement||te()}:o,p=[{name:"offset",options:{offset:i}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!s}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t=e.state;if(ee()){var n=re().box;["placement","reference-hidden","escaped"].forEach((function(e){"placement"===e?n.setAttribute("data-placement",t.placement):t.attributes.popper["data-popper-"+e]?n.setAttribute("data-"+e,""):n.removeAttribute("data-"+e)})),t.attributes.popper={}}}}];ee()&&u&&p.push({name:"arrow",options:{element:u,padding:3}}),p.push.apply(p,(null==n?void 0:n.modifiers)||[]),$.popperInstance=e.createPopper(c,z,Object.assign({},n,{placement:r,onFirstUpdate:A,modifiers:p}))}function Te(){$.popperInstance&&($.popperInstance.destroy(),$.popperInstance=null)}function Ae(){return f(z.querySelectorAll("[data-tippy-root]"))}function Le(e){$.clearDelayTimeouts(),e&&ae("onTrigger",[$,e]),de();var t=oe(!0),n=Q(),r=n[0],o=n[1];x.isTouch&&"hold"===r&&o&&(t=o),t?v=setTimeout((function(){$.show()}),t):$.show()}function De(e){if($.clearDelayTimeouts(),ae("onUntrigger",[$,e]),$.state.isVisible){if(!($.props.trigger.indexOf("mouseenter")>=0&&$.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(e.type)>=0&&V)){var t=oe(!1);t?g=setTimeout((function(){$.state.isVisible&&$.hide()}),t):h=requestAnimationFrame((function(){$.hide()}))}}else ve()}}function F(e,n){void 0===n&&(n={});var r=R.plugins.concat(n.plugins||[]);document.addEventListener("touchstart",T,t),window.addEventListener("blur",L);var o=Object.assign({},n,{plugins:r}),i=h(e).reduce((function(e,t){var n=t&&_(t,o);return n&&e.push(n),e}),[]);return v(e)?i[0]:i}F.defaultProps=R,F.setDefaultProps=function(e){Object.keys(e).forEach((function(t){R[t]=e[t]}))},F.currentInput=x;var W=Object.assign({},e.applyStyles,{effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow)}}),X={mouseover:"mouseenter",focusin:"focus",click:"click"};var Y={name:"animateFill",defaultValue:!1,fn:function(e){var t;if(null==(t=e.props.render)||!t.$$tippy)return{};var n=S(e.popper),r=n.box,o=n.content,i=e.props.animateFill?function(){var e=d();return e.className="tippy-backdrop",y([e],"hidden"),e}():null;return{onCreate:function(){i&&(r.insertBefore(i,r.firstElementChild),r.setAttribute("data-animatefill",""),r.style.overflow="hidden",e.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(i){var e=r.style.transitionDuration,t=Number(e.replace("ms",""));o.style.transitionDelay=Math.round(t/10)+"ms",i.style.transitionDuration=e,y([i],"visible")}},onShow:function(){i&&(i.style.transitionDuration="0ms")},onHide:function(){i&&y([i],"hidden")}}}};var $={clientX:0,clientY:0},q=[];function z(e){var t=e.clientX,n=e.clientY;$={clientX:t,clientY:n}}var J={name:"followCursor",defaultValue:!1,fn:function(e){var t=e.reference,n=w(e.props.triggerTarget||t),r=!1,o=!1,i=!0,a=e.props;function s(){return"initial"===e.props.followCursor&&e.state.isVisible}function u(){n.addEventListener("mousemove",f)}function c(){n.removeEventListener("mousemove",f)}function p(){r=!0,e.setProps({getReferenceClientRect:null}),r=!1}function f(n){var r=!n.target||t.contains(n.target),o=e.props.followCursor,i=n.clientX,a=n.clientY,s=t.getBoundingClientRect(),u=i-s.left,c=a-s.top;!r&&e.props.interactive||e.setProps({getReferenceClientRect:function(){var e=t.getBoundingClientRect(),n=i,r=a;"initial"===o&&(n=e.left+u,r=e.top+c);var s="horizontal"===o?e.top:r,p="vertical"===o?e.right:n,f="horizontal"===o?e.bottom:r,l="vertical"===o?e.left:n;return{width:p-l,height:f-s,top:s,right:p,bottom:f,left:l}}})}function l(){e.props.followCursor&&(q.push({instance:e,doc:n}),function(e){e.addEventListener("mousemove",z)}(n))}function d(){0===(q=q.filter((function(t){return t.instance!==e}))).filter((function(e){return e.doc===n})).length&&function(e){e.removeEventListener("mousemove",z)}(n)}return{onCreate:l,onDestroy:d,onBeforeUpdate:function(){a=e.props},onAfterUpdate:function(t,n){var i=n.followCursor;r||void 0!==i&&a.followCursor!==i&&(d(),i?(l(),!e.state.isMounted||o||s()||u()):(c(),p()))},onMount:function(){e.props.followCursor&&!o&&(i&&(f($),i=!1),s()||u())},onTrigger:function(e,t){m(t)&&($={clientX:t.clientX,clientY:t.clientY}),o="focus"===t.type},onHidden:function(){e.props.followCursor&&(p(),c(),i=!0)}}}};var G={name:"inlinePositioning",defaultValue:!1,fn:function(e){var t,n=e.reference;var r=-1,o=!1,i=[],a={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(o){var a=o.state;e.props.inlinePositioning&&(-1!==i.indexOf(a.placement)&&(i=[]),t!==a.placement&&-1===i.indexOf(a.placement)&&(i.push(a.placement),e.setProps({getReferenceClientRect:function(){return function(e){return function(e,t,n,r){if(n.length<2||null===e)return t;if(2===n.length&&r>=0&&n[0].left>n[1].right)return n[r]||t;switch(e){case"top":case"bottom":var o=n[0],i=n[n.length-1],a="top"===e,s=o.top,u=i.bottom,c=a?o.left:i.left,p=a?o.right:i.right;return{top:s,bottom:u,left:c,right:p,width:p-c,height:u-s};case"left":case"right":var f=Math.min.apply(Math,n.map((function(e){return e.left}))),l=Math.max.apply(Math,n.map((function(e){return e.right}))),d=n.filter((function(t){return"left"===e?t.left===f:t.right===l})),v=d[0].top,m=d[d.length-1].bottom;return{top:v,bottom:m,left:f,right:l,width:l-f,height:m-v};default:return t}}(p(e),n.getBoundingClientRect(),f(n.getClientRects()),r)}(a.placement)}})),t=a.placement)}};function s(){var t;o||(t=function(e,t){var n;return{popperOptions:Object.assign({},e.popperOptions,{modifiers:[].concat(((null==(n=e.popperOptions)?void 0:n.modifiers)||[]).filter((function(e){return e.name!==t.name})),[t])})}}(e.props,a),o=!0,e.setProps(t),o=!1)}return{onCreate:s,onAfterUpdate:s,onTrigger:function(t,n){if(m(n)){var o=f(e.reference.getClientRects()),i=o.find((function(e){return e.left-2<=n.clientX&&e.right+2>=n.clientX&&e.top-2<=n.clientY&&e.bottom+2>=n.clientY})),a=o.indexOf(i);r=a>-1?a:r}},onHidden:function(){r=-1}}}};var K={name:"sticky",defaultValue:!1,fn:function(e){var t=e.reference,n=e.popper;function r(t){return!0===e.props.sticky||e.props.sticky===t}var o=null,i=null;function a(){var s=r("reference")?(e.popperInstance?e.popperInstance.state.elements.reference:t).getBoundingClientRect():null,u=r("popper")?n.getBoundingClientRect():null;(s&&Q(o,s)||u&&Q(i,u))&&e.popperInstance&&e.popperInstance.update(),o=s,i=u,e.state.isMounted&&requestAnimationFrame(a)}return{onMount:function(){e.props.sticky&&a()}}}};function Q(e,t){return!e||!t||(e.top!==t.top||e.right!==t.right||e.bottom!==t.bottom||e.left!==t.left)}return F.setDefaultProps({plugins:[Y,J,G,K],render:N}),F.createSingleton=function(e,t){var n;void 0===t&&(t={});var r,o=e,i=[],a=[],c=t.overrides,p=[],f=!1;function l(){a=o.map((function(e){return u(e.props.triggerTarget||e.reference)})).reduce((function(e,t){return e.concat(t)}),[])}function v(){i=o.map((function(e){return e.reference}))}function m(e){o.forEach((function(t){e?t.enable():t.disable()}))}function g(e){return o.map((function(t){var n=t.setProps;return t.setProps=function(o){n(o),t.reference===r&&e.setProps(o)},function(){t.setProps=n}}))}function h(e,t){var n=a.indexOf(t);if(t!==r){r=t;var s=(c||[]).concat("content").reduce((function(e,t){return e[t]=o[n].props[t],e}),{});e.setProps(Object.assign({},s,{getReferenceClientRect:"function"==typeof s.getReferenceClientRect?s.getReferenceClientRect:function(){var e;return null==(e=i[n])?void 0:e.getBoundingClientRect()}}))}}m(!1),v(),l();var b={fn:function(){return{onDestroy:function(){m(!0)},onHidden:function(){r=null},onClickOutside:function(e){e.props.showOnCreate&&!f&&(f=!0,r=null)},onShow:function(e){e.props.showOnCreate&&!f&&(f=!0,h(e,i[0]))},onTrigger:function(e,t){h(e,t.currentTarget)}}}},y=F(d(),Object.assign({},s(t,["overrides"]),{plugins:[b].concat(t.plugins||[]),triggerTarget:a,popperOptions:Object.assign({},t.popperOptions,{modifiers:[].concat((null==(n=t.popperOptions)?void 0:n.modifiers)||[],[W])})})),w=y.show;y.show=function(e){if(w(),!r&&null==e)return h(y,i[0]);if(!r||null!=e){if("number"==typeof e)return i[e]&&h(y,i[e]);if(o.indexOf(e)>=0){var t=e.reference;return h(y,t)}return i.indexOf(e)>=0?h(y,e):void 0}},y.showNext=function(){var e=i[0];if(!r)return y.show(0);var t=i.indexOf(r);y.show(i[t+1]||e)},y.showPrevious=function(){var e=i[i.length-1];if(!r)return y.show(e);var t=i.indexOf(r),n=i[t-1]||e;y.show(n)};var E=y.setProps;return y.setProps=function(e){c=e.overrides||c,E(e)},y.setInstances=function(e){m(!0),p.forEach((function(e){return e()})),o=e,m(!1),v(),l(),p=g(y),y.setProps({triggerTarget:a})},p=g(y),y},F.delegate=function(e,n){var r=[],o=[],i=!1,a=n.target,c=s(n,["target"]),p=Object.assign({},c,{trigger:"manual",touch:!1}),f=Object.assign({touch:R.touch},c,{showOnCreate:!0}),l=F(e,p);function d(e){if(e.target&&!i){var t=e.target.closest(a);if(t){var r=t.getAttribute("data-tippy-trigger")||n.trigger||R.trigger;if(!t._tippy&&!("touchstart"===e.type&&"boolean"==typeof f.touch||"touchstart"!==e.type&&r.indexOf(X[e.type])<0)){var s=F(t,f);s&&(o=o.concat(s))}}}}function v(e,t,n,o){void 0===o&&(o=!1),e.addEventListener(t,n,o),r.push({node:e,eventType:t,handler:n,options:o})}return u(l).forEach((function(e){var n=e.destroy,a=e.enable,s=e.disable;e.destroy=function(e){void 0===e&&(e=!0),e&&o.forEach((function(e){e.destroy()})),o=[],r.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),r=[],n()},e.enable=function(){a(),o.forEach((function(e){return e.enable()})),i=!1},e.disable=function(){s(),o.forEach((function(e){return e.disable()})),i=!0},function(e){var n=e.reference;v(n,"touchstart",d,t),v(n,"mouseover",d),v(n,"focusin",d),v(n,"click",d)}(e)})),l},F.hideAll=function(e){var t=void 0===e?{}:e,n=t.exclude,r=t.duration;U.forEach((function(e){var t=!1;if(n&&(t=g(n)?e.reference===n:e.popper===n.popper),!t){var o=e.props.duration;e.setProps({duration:r}),e.hide(),e.state.isDestroyed||e.setProps({duration:o})}}))},F.roundArrow='',F})); + diff --git a/docs/site_libs/quarto-nav/headroom.min.js b/docs/site_libs/quarto-nav/headroom.min.js new file mode 100644 index 0000000..b08f1df --- /dev/null +++ b/docs/site_libs/quarto-nav/headroom.min.js @@ -0,0 +1,7 @@ +/*! + * headroom.js v0.12.0 - Give your page some headroom. Hide your header until you need it + * Copyright (c) 2020 Nick Williams - http://wicky.nillia.ms/headroom.js + * License: MIT + */ + +!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(t=t||self).Headroom=n()}(this,function(){"use strict";function t(){return"undefined"!=typeof window}function d(t){return function(t){return t&&t.document&&function(t){return 9===t.nodeType}(t.document)}(t)?function(t){var n=t.document,o=n.body,s=n.documentElement;return{scrollHeight:function(){return Math.max(o.scrollHeight,s.scrollHeight,o.offsetHeight,s.offsetHeight,o.clientHeight,s.clientHeight)},height:function(){return t.innerHeight||s.clientHeight||o.clientHeight},scrollY:function(){return void 0!==t.pageYOffset?t.pageYOffset:(s||o.parentNode||o).scrollTop}}}(t):function(t){return{scrollHeight:function(){return Math.max(t.scrollHeight,t.offsetHeight,t.clientHeight)},height:function(){return Math.max(t.offsetHeight,t.clientHeight)},scrollY:function(){return t.scrollTop}}}(t)}function n(t,s,e){var n,o=function(){var n=!1;try{var t={get passive(){n=!0}};window.addEventListener("test",t,t),window.removeEventListener("test",t,t)}catch(t){n=!1}return n}(),i=!1,r=d(t),l=r.scrollY(),a={};function c(){var t=Math.round(r.scrollY()),n=r.height(),o=r.scrollHeight();a.scrollY=t,a.lastScrollY=l,a.direction=ls.tolerance[a.direction],e(a),l=t,i=!1}function h(){i||(i=!0,n=requestAnimationFrame(c))}var u=!!o&&{passive:!0,capture:!1};return t.addEventListener("scroll",h,u),c(),{destroy:function(){cancelAnimationFrame(n),t.removeEventListener("scroll",h,u)}}}function o(t){return t===Object(t)?t:{down:t,up:t}}function s(t,n){n=n||{},Object.assign(this,s.options,n),this.classes=Object.assign({},s.options.classes,n.classes),this.elem=t,this.tolerance=o(this.tolerance),this.offset=o(this.offset),this.initialised=!1,this.frozen=!1}return s.prototype={constructor:s,init:function(){return s.cutsTheMustard&&!this.initialised&&(this.addClass("initial"),this.initialised=!0,setTimeout(function(t){t.scrollTracker=n(t.scroller,{offset:t.offset,tolerance:t.tolerance},t.update.bind(t))},100,this)),this},destroy:function(){this.initialised=!1,Object.keys(this.classes).forEach(this.removeClass,this),this.scrollTracker.destroy()},unpin:function(){!this.hasClass("pinned")&&this.hasClass("unpinned")||(this.addClass("unpinned"),this.removeClass("pinned"),this.onUnpin&&this.onUnpin.call(this))},pin:function(){this.hasClass("unpinned")&&(this.addClass("pinned"),this.removeClass("unpinned"),this.onPin&&this.onPin.call(this))},freeze:function(){this.frozen=!0,this.addClass("frozen")},unfreeze:function(){this.frozen=!1,this.removeClass("frozen")},top:function(){this.hasClass("top")||(this.addClass("top"),this.removeClass("notTop"),this.onTop&&this.onTop.call(this))},notTop:function(){this.hasClass("notTop")||(this.addClass("notTop"),this.removeClass("top"),this.onNotTop&&this.onNotTop.call(this))},bottom:function(){this.hasClass("bottom")||(this.addClass("bottom"),this.removeClass("notBottom"),this.onBottom&&this.onBottom.call(this))},notBottom:function(){this.hasClass("notBottom")||(this.addClass("notBottom"),this.removeClass("bottom"),this.onNotBottom&&this.onNotBottom.call(this))},shouldUnpin:function(t){return"down"===t.direction&&!t.top&&t.toleranceExceeded},shouldPin:function(t){return"up"===t.direction&&t.toleranceExceeded||t.top},addClass:function(t){this.elem.classList.add.apply(this.elem.classList,this.classes[t].split(" "))},removeClass:function(t){this.elem.classList.remove.apply(this.elem.classList,this.classes[t].split(" "))},hasClass:function(t){return this.classes[t].split(" ").every(function(t){return this.classList.contains(t)},this.elem)},update:function(t){t.isOutOfBounds||!0!==this.frozen&&(t.top?this.top():this.notTop(),t.bottom?this.bottom():this.notBottom(),this.shouldUnpin(t)?this.unpin():this.shouldPin(t)&&this.pin())}},s.options={tolerance:{up:0,down:0},offset:0,scroller:t()?window:null,classes:{frozen:"headroom--frozen",pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",bottom:"headroom--bottom",notBottom:"headroom--not-bottom",initial:"headroom"}},s.cutsTheMustard=!!(t()&&function(){}.bind&&"classList"in document.documentElement&&Object.assign&&Object.keys&&requestAnimationFrame),s}); diff --git a/docs/site_libs/quarto-nav/quarto-nav.js b/docs/site_libs/quarto-nav/quarto-nav.js new file mode 100644 index 0000000..38cc430 --- /dev/null +++ b/docs/site_libs/quarto-nav/quarto-nav.js @@ -0,0 +1,325 @@ +const headroomChanged = new CustomEvent("quarto-hrChanged", { + detail: {}, + bubbles: true, + cancelable: false, + composed: false, +}); + +const announceDismiss = () => { + const annEl = window.document.getElementById("quarto-announcement"); + if (annEl) { + annEl.remove(); + + const annId = annEl.getAttribute("data-announcement-id"); + window.localStorage.setItem(`quarto-announce-${annId}`, "true"); + } +}; + +const announceRegister = () => { + const annEl = window.document.getElementById("quarto-announcement"); + if (annEl) { + const annId = annEl.getAttribute("data-announcement-id"); + const isDismissed = + window.localStorage.getItem(`quarto-announce-${annId}`) || false; + if (isDismissed) { + announceDismiss(); + return; + } else { + annEl.classList.remove("hidden"); + } + + const actionEl = annEl.querySelector(".quarto-announcement-action"); + if (actionEl) { + actionEl.addEventListener("click", function (e) { + e.preventDefault(); + // Hide the bar immediately + announceDismiss(); + }); + } + } +}; + +window.document.addEventListener("DOMContentLoaded", function () { + let init = false; + + announceRegister(); + + // Manage the back to top button, if one is present. + let lastScrollTop = window.pageYOffset || document.documentElement.scrollTop; + const scrollDownBuffer = 5; + const scrollUpBuffer = 35; + const btn = document.getElementById("quarto-back-to-top"); + const hideBackToTop = () => { + btn.style.display = "none"; + }; + const showBackToTop = () => { + btn.style.display = "inline-block"; + }; + if (btn) { + window.document.addEventListener( + "scroll", + function () { + const currentScrollTop = + window.pageYOffset || document.documentElement.scrollTop; + + // Shows and hides the button 'intelligently' as the user scrolls + if (currentScrollTop - scrollDownBuffer > lastScrollTop) { + hideBackToTop(); + lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop; + } else if (currentScrollTop < lastScrollTop - scrollUpBuffer) { + showBackToTop(); + lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop; + } + + // Show the button at the bottom, hides it at the top + if (currentScrollTop <= 0) { + hideBackToTop(); + } else if ( + window.innerHeight + currentScrollTop >= + document.body.offsetHeight + ) { + showBackToTop(); + } + }, + false + ); + } + + function throttle(func, wait) { + var timeout; + return function () { + const context = this; + const args = arguments; + const later = function () { + clearTimeout(timeout); + timeout = null; + func.apply(context, args); + }; + + if (!timeout) { + timeout = setTimeout(later, wait); + } + }; + } + + function headerOffset() { + // Set an offset if there is are fixed top navbar + const headerEl = window.document.querySelector("header.fixed-top"); + if (headerEl) { + return headerEl.clientHeight; + } else { + return 0; + } + } + + function footerOffset() { + const footerEl = window.document.querySelector("footer.footer"); + if (footerEl) { + return footerEl.clientHeight; + } else { + return 0; + } + } + + function dashboardOffset() { + const dashboardNavEl = window.document.getElementById( + "quarto-dashboard-header" + ); + if (dashboardNavEl !== null) { + return dashboardNavEl.clientHeight; + } else { + return 0; + } + } + + function updateDocumentOffsetWithoutAnimation() { + updateDocumentOffset(false); + } + + function updateDocumentOffset(animated) { + // set body offset + const topOffset = headerOffset(); + const bodyOffset = topOffset + footerOffset() + dashboardOffset(); + const bodyEl = window.document.body; + bodyEl.setAttribute("data-bs-offset", topOffset); + bodyEl.style.paddingTop = topOffset + "px"; + + // deal with sidebar offsets + const sidebars = window.document.querySelectorAll( + ".sidebar, .headroom-target" + ); + sidebars.forEach((sidebar) => { + if (!animated) { + sidebar.classList.add("notransition"); + // Remove the no transition class after the animation has time to complete + setTimeout(function () { + sidebar.classList.remove("notransition"); + }, 201); + } + + if (window.Headroom && sidebar.classList.contains("sidebar-unpinned")) { + sidebar.style.top = "0"; + sidebar.style.maxHeight = "100vh"; + } else { + sidebar.style.top = topOffset + "px"; + sidebar.style.maxHeight = "calc(100vh - " + topOffset + "px)"; + } + }); + + // allow space for footer + const mainContainer = window.document.querySelector(".quarto-container"); + if (mainContainer) { + mainContainer.style.minHeight = "calc(100vh - " + bodyOffset + "px)"; + } + + // link offset + let linkStyle = window.document.querySelector("#quarto-target-style"); + if (!linkStyle) { + linkStyle = window.document.createElement("style"); + linkStyle.setAttribute("id", "quarto-target-style"); + window.document.head.appendChild(linkStyle); + } + while (linkStyle.firstChild) { + linkStyle.removeChild(linkStyle.firstChild); + } + if (topOffset > 0) { + linkStyle.appendChild( + window.document.createTextNode(` + section:target::before { + content: ""; + display: block; + height: ${topOffset}px; + margin: -${topOffset}px 0 0; + }`) + ); + } + if (init) { + window.dispatchEvent(headroomChanged); + } + init = true; + } + + // initialize headroom + var header = window.document.querySelector("#quarto-header"); + if (header && window.Headroom) { + const headroom = new window.Headroom(header, { + tolerance: 5, + onPin: function () { + const sidebars = window.document.querySelectorAll( + ".sidebar, .headroom-target" + ); + sidebars.forEach((sidebar) => { + sidebar.classList.remove("sidebar-unpinned"); + }); + updateDocumentOffset(); + }, + onUnpin: function () { + const sidebars = window.document.querySelectorAll( + ".sidebar, .headroom-target" + ); + sidebars.forEach((sidebar) => { + sidebar.classList.add("sidebar-unpinned"); + }); + updateDocumentOffset(); + }, + }); + headroom.init(); + + let frozen = false; + window.quartoToggleHeadroom = function () { + if (frozen) { + headroom.unfreeze(); + frozen = false; + } else { + headroom.freeze(); + frozen = true; + } + }; + } + + window.addEventListener( + "hashchange", + function (e) { + if ( + getComputedStyle(document.documentElement).scrollBehavior !== "smooth" + ) { + window.scrollTo(0, window.pageYOffset - headerOffset()); + } + }, + false + ); + + // Observe size changed for the header + const headerEl = window.document.querySelector("header.fixed-top"); + if (headerEl && window.ResizeObserver) { + const observer = new window.ResizeObserver(() => { + setTimeout(updateDocumentOffsetWithoutAnimation, 0); + }); + observer.observe(headerEl, { + attributes: true, + childList: true, + characterData: true, + }); + } else { + window.addEventListener( + "resize", + throttle(updateDocumentOffsetWithoutAnimation, 50) + ); + } + setTimeout(updateDocumentOffsetWithoutAnimation, 250); + + // fixup index.html links if we aren't on the filesystem + if (window.location.protocol !== "file:") { + const links = window.document.querySelectorAll("a"); + for (let i = 0; i < links.length; i++) { + if (links[i].href) { + links[i].dataset.originalHref = links[i].href; + links[i].href = links[i].href.replace(/\/index\.html/, "/"); + } + } + + // Fixup any sharing links that require urls + // Append url to any sharing urls + const sharingLinks = window.document.querySelectorAll( + "a.sidebar-tools-main-item, a.quarto-navigation-tool, a.quarto-navbar-tools, a.quarto-navbar-tools-item" + ); + for (let i = 0; i < sharingLinks.length; i++) { + const sharingLink = sharingLinks[i]; + const href = sharingLink.getAttribute("href"); + if (href) { + sharingLink.setAttribute( + "href", + href.replace("|url|", window.location.href) + ); + } + } + + // Scroll the active navigation item into view, if necessary + const navSidebar = window.document.querySelector("nav#quarto-sidebar"); + if (navSidebar) { + // Find the active item + const activeItem = navSidebar.querySelector("li.sidebar-item a.active"); + if (activeItem) { + // Wait for the scroll height and height to resolve by observing size changes on the + // nav element that is scrollable + const resizeObserver = new ResizeObserver((_entries) => { + // The bottom of the element + const elBottom = activeItem.offsetTop; + const viewBottom = navSidebar.scrollTop + navSidebar.clientHeight; + + // The element height and scroll height are the same, then we are still loading + if (viewBottom !== navSidebar.scrollHeight) { + // Determine if the item isn't visible and scroll to it + if (elBottom >= viewBottom) { + navSidebar.scrollTop = elBottom; + } + + // stop observing now since we've completed the scroll + resizeObserver.unobserve(navSidebar); + } + }); + resizeObserver.observe(navSidebar); + } + } + } +}); diff --git a/docs/site_libs/quarto-search/autocomplete.umd.js b/docs/site_libs/quarto-search/autocomplete.umd.js new file mode 100644 index 0000000..ae0063a --- /dev/null +++ b/docs/site_libs/quarto-search/autocomplete.umd.js @@ -0,0 +1,3 @@ +/*! @algolia/autocomplete-js 1.11.1 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self)["@algolia/autocomplete-js"]={})}(this,(function(e){"use strict";function t(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function n(e){for(var n=1;n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,u,a=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(u=n.return(),Object(u)!==u))return}finally{if(c)throw o}}return a}}(e,t)||c(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e){return function(e){if(Array.isArray(e))return s(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||c(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){if(e){if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function N(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:20,n=[],r=0;r=3||2===n&&r>=4||1===n&&r>=10);function i(t,n,r){if(o&&void 0!==r){var i=r[0].__autocomplete_algoliaCredentials,u={"X-Algolia-Application-Id":i.appId,"X-Algolia-API-Key":i.apiKey};e.apply(void 0,[t].concat(D(n),[{headers:u}]))}else e.apply(void 0,[t].concat(D(n)))}return{init:function(t,n){e("init",{appId:t,apiKey:n})},setUserToken:function(t){e("setUserToken",t)},clickedObjectIDsAfterSearch:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("clickedObjectIDsAfterSearch",B(t),t[0].items)},clickedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("clickedObjectIDs",B(t),t[0].items)},clickedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["clickedFilters"].concat(n))},convertedObjectIDsAfterSearch:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("convertedObjectIDsAfterSearch",B(t),t[0].items)},convertedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("convertedObjectIDs",B(t),t[0].items)},convertedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["convertedFilters"].concat(n))},viewedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&t.reduce((function(e,t){var n=t.items,r=k(t,A);return[].concat(D(e),D(q(N(N({},r),{},{objectIDs:(null==n?void 0:n.map((function(e){return e.objectID})))||r.objectIDs})).map((function(e){return{items:n,payload:e}}))))}),[]).forEach((function(e){var t=e.items;return i("viewedObjectIDs",[e.payload],t)}))},viewedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["viewedFilters"].concat(n))}}}function F(e){var t=e.items.reduce((function(e,t){var n;return e[t.__autocomplete_indexName]=(null!==(n=e[t.__autocomplete_indexName])&&void 0!==n?n:[]).concat(t),e}),{});return Object.keys(t).map((function(e){return{index:e,items:t[e],algoliaSource:["autocomplete"]}}))}function L(e){return e.objectID&&e.__autocomplete_indexName&&e.__autocomplete_queryID}function U(e){return U="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U(e)}function M(e){return function(e){if(Array.isArray(e))return H(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return H(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return H(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function H(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&z({onItemsChange:r,items:n,insights:a,state:t}))}}),0);return{name:"aa.algoliaInsightsPlugin",subscribe:function(e){var t=e.setContext,n=e.onSelect,r=e.onActive;function l(e){t({algoliaInsightsPlugin:{__algoliaSearchParameters:W({clickAnalytics:!0},e?{userToken:e}:{}),insights:a}})}u("addAlgoliaAgent","insights-plugin"),l(),u("onUserTokenChange",l),u("getUserToken",null,(function(e,t){l(t)})),n((function(e){var t=e.item,n=e.state,r=e.event,i=e.source;L(t)&&o({state:n,event:r,insights:a,item:t,insightsEvents:[W({eventName:"Item Selected"},j({item:t,items:i.getItems().filter(L)}))]})})),r((function(e){var t=e.item,n=e.source,r=e.state,o=e.event;L(t)&&i({state:r,event:o,insights:a,item:t,insightsEvents:[W({eventName:"Item Active"},j({item:t,items:n.getItems().filter(L)}))]})}))},onStateChange:function(e){var t=e.state;c({state:t})},__autocomplete_pluginOptions:e}}function J(e,t){var n=t;return{then:function(t,r){return J(e.then(Y(t,n,e),Y(r,n,e)),n)},catch:function(t){return J(e.catch(Y(t,n,e)),n)},finally:function(t){return t&&n.onCancelList.push(t),J(e.finally(Y(t&&function(){return n.onCancelList=[],t()},n,e)),n)},cancel:function(){n.isCanceled=!0;var e=n.onCancelList;n.onCancelList=[],e.forEach((function(e){e()}))},isCanceled:function(){return!0===n.isCanceled}}}function X(e){return J(e,{isCanceled:!1,onCancelList:[]})}function Y(e,t,n){return e?function(n){return t.isCanceled?n:e(n)}:n}function Z(e,t,n,r){if(!n)return null;if(e<0&&(null===t||null!==r&&0===t))return n+e;var o=(null===t?-1:t)+e;return o<=-1||o>=n?null===r?null:0:o}function ee(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function te(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n0},reshape:function(e){return e.sources}},e),{},{id:null!==(n=e.id)&&void 0!==n?n:d(),plugins:o,initialState:he({activeItemId:null,query:"",completion:null,collections:[],isOpen:!1,status:"idle",context:{}},e.initialState),onStateChange:function(t){var n;null===(n=e.onStateChange)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onStateChange)||void 0===n?void 0:n.call(e,t)}))},onSubmit:function(t){var n;null===(n=e.onSubmit)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onSubmit)||void 0===n?void 0:n.call(e,t)}))},onReset:function(t){var n;null===(n=e.onReset)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onReset)||void 0===n?void 0:n.call(e,t)}))},getSources:function(n){return Promise.all([].concat(ye(o.map((function(e){return e.getSources}))),[e.getSources]).filter(Boolean).map((function(e){return function(e,t){var n=[];return Promise.resolve(e(t)).then((function(e){return Promise.all(e.filter((function(e){return Boolean(e)})).map((function(e){if(e.sourceId,n.includes(e.sourceId))throw new Error("[Autocomplete] The `sourceId` ".concat(JSON.stringify(e.sourceId)," is not unique."));n.push(e.sourceId);var t={getItemInputValue:function(e){return e.state.query},getItemUrl:function(){},onSelect:function(e){(0,e.setIsOpen)(!1)},onActive:O,onResolve:O};Object.keys(t).forEach((function(e){t[e].__default=!0}));var r=te(te({},t),e);return Promise.resolve(r)})))}))}(e,n)}))).then((function(e){return m(e)})).then((function(e){return e.map((function(e){return he(he({},e),{},{onSelect:function(n){e.onSelect(n),t.forEach((function(e){var t;return null===(t=e.onSelect)||void 0===t?void 0:t.call(e,n)}))},onActive:function(n){e.onActive(n),t.forEach((function(e){var t;return null===(t=e.onActive)||void 0===t?void 0:t.call(e,n)}))},onResolve:function(n){e.onResolve(n),t.forEach((function(e){var t;return null===(t=e.onResolve)||void 0===t?void 0:t.call(e,n)}))}})}))}))},navigator:he({navigate:function(e){var t=e.itemUrl;r.location.assign(t)},navigateNewTab:function(e){var t=e.itemUrl,n=r.open(t,"_blank","noopener");null==n||n.focus()},navigateNewWindow:function(e){var t=e.itemUrl;r.open(t,"_blank","noopener")}},e.navigator)})}function Se(e){return Se="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Se(e)}function je(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pe(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var He,Ve,We,Ke=null,Qe=(He=-1,Ve=-1,We=void 0,function(e){var t=++He;return Promise.resolve(e).then((function(e){return We&&t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function et(e){return et="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},et(e)}var tt=["props","refresh","store"],nt=["inputElement","formElement","panelElement"],rt=["inputElement"],ot=["inputElement","maxLength"],it=["source"],ut=["item","source"];function at(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function lt(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ft(e){var t=e.props,n=e.refresh,r=e.store,o=st(e,tt);return{getEnvironmentProps:function(e){var n=e.inputElement,o=e.formElement,i=e.panelElement;function u(e){!r.getState().isOpen&&r.pendingRequests.isEmpty()||e.target===n||!1===[o,i].some((function(t){return n=t,r=e.target,n===r||n.contains(r);var n,r}))&&(r.dispatch("blur",null),t.debug||r.pendingRequests.cancelAll())}return lt({onTouchStart:u,onMouseDown:u,onTouchMove:function(e){!1!==r.getState().isOpen&&n===t.environment.document.activeElement&&e.target!==n&&n.blur()}},st(e,nt))},getRootProps:function(e){return lt({role:"combobox","aria-expanded":r.getState().isOpen,"aria-haspopup":"listbox","aria-owns":r.getState().isOpen?r.getState().collections.map((function(e){var n=e.source;return ie(t.id,"list",n)})).join(" "):void 0,"aria-labelledby":ie(t.id,"label")},e)},getFormProps:function(e){return e.inputElement,lt({action:"",noValidate:!0,role:"search",onSubmit:function(i){var u;i.preventDefault(),t.onSubmit(lt({event:i,refresh:n,state:r.getState()},o)),r.dispatch("submit",null),null===(u=e.inputElement)||void 0===u||u.blur()},onReset:function(i){var u;i.preventDefault(),t.onReset(lt({event:i,refresh:n,state:r.getState()},o)),r.dispatch("reset",null),null===(u=e.inputElement)||void 0===u||u.focus()}},st(e,rt))},getLabelProps:function(e){return lt({htmlFor:ie(t.id,"input"),id:ie(t.id,"label")},e)},getInputProps:function(e){var i;function u(e){(t.openOnFocus||Boolean(r.getState().query))&&$e(lt({event:e,props:t,query:r.getState().completion||r.getState().query,refresh:n,store:r},o)),r.dispatch("focus",null)}var a=e||{};a.inputElement;var l=a.maxLength,c=void 0===l?512:l,s=st(a,ot),f=oe(r.getState()),p=function(e){return Boolean(e&&e.match(ue))}((null===(i=t.environment.navigator)||void 0===i?void 0:i.userAgent)||""),m=t.enterKeyHint||(null!=f&&f.itemUrl&&!p?"go":"search");return lt({"aria-autocomplete":"both","aria-activedescendant":r.getState().isOpen&&null!==r.getState().activeItemId?ie(t.id,"item-".concat(r.getState().activeItemId),null==f?void 0:f.source):void 0,"aria-controls":r.getState().isOpen?r.getState().collections.map((function(e){var n=e.source;return ie(t.id,"list",n)})).join(" "):void 0,"aria-labelledby":ie(t.id,"label"),value:r.getState().completion||r.getState().query,id:ie(t.id,"input"),autoComplete:"off",autoCorrect:"off",autoCapitalize:"off",enterKeyHint:m,spellCheck:"false",autoFocus:t.autoFocus,placeholder:t.placeholder,maxLength:c,type:"search",onChange:function(e){$e(lt({event:e,props:t,query:e.currentTarget.value.slice(0,c),refresh:n,store:r},o))},onKeyDown:function(e){!function(e){var t=e.event,n=e.props,r=e.refresh,o=e.store,i=Ze(e,Ge);if("ArrowUp"===t.key||"ArrowDown"===t.key){var u=function(){var e=oe(o.getState()),t=n.environment.document.getElementById(ie(n.id,"item-".concat(o.getState().activeItemId),null==e?void 0:e.source));t&&(t.scrollIntoViewIfNeeded?t.scrollIntoViewIfNeeded(!1):t.scrollIntoView(!1))},a=function(){var e=oe(o.getState());if(null!==o.getState().activeItemId&&e){var n=e.item,u=e.itemInputValue,a=e.itemUrl,l=e.source;l.onActive(Xe({event:t,item:n,itemInputValue:u,itemUrl:a,refresh:r,source:l,state:o.getState()},i))}};t.preventDefault(),!1===o.getState().isOpen&&(n.openOnFocus||Boolean(o.getState().query))?$e(Xe({event:t,props:n,query:o.getState().query,refresh:r,store:o},i)).then((function(){o.dispatch(t.key,{nextActiveItemId:n.defaultActiveItemId}),a(),setTimeout(u,0)})):(o.dispatch(t.key,{}),a(),u())}else if("Escape"===t.key)t.preventDefault(),o.dispatch(t.key,null),o.pendingRequests.cancelAll();else if("Tab"===t.key)o.dispatch("blur",null),o.pendingRequests.cancelAll();else if("Enter"===t.key){if(null===o.getState().activeItemId||o.getState().collections.every((function(e){return 0===e.items.length})))return void(n.debug||o.pendingRequests.cancelAll());t.preventDefault();var l=oe(o.getState()),c=l.item,s=l.itemInputValue,f=l.itemUrl,p=l.source;if(t.metaKey||t.ctrlKey)void 0!==f&&(p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i)),n.navigator.navigateNewTab({itemUrl:f,item:c,state:o.getState()}));else if(t.shiftKey)void 0!==f&&(p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i)),n.navigator.navigateNewWindow({itemUrl:f,item:c,state:o.getState()}));else if(t.altKey);else{if(void 0!==f)return p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i)),void n.navigator.navigate({itemUrl:f,item:c,state:o.getState()});$e(Xe({event:t,nextState:{isOpen:!1},props:n,query:s,refresh:r,store:o},i)).then((function(){p.onSelect(Xe({event:t,item:c,itemInputValue:s,itemUrl:f,refresh:r,source:p,state:o.getState()},i))}))}}}(lt({event:e,props:t,refresh:n,store:r},o))},onFocus:u,onBlur:O,onClick:function(n){e.inputElement!==t.environment.document.activeElement||r.getState().isOpen||u(n)}},s)},getPanelProps:function(e){return lt({onMouseDown:function(e){e.preventDefault()},onMouseLeave:function(){r.dispatch("mouseleave",null)}},e)},getListProps:function(e){var n=e||{},r=n.source,o=st(n,it);return lt({role:"listbox","aria-labelledby":ie(t.id,"label"),id:ie(t.id,"list",r)},o)},getItemProps:function(e){var i=e.item,u=e.source,a=st(e,ut);return lt({id:ie(t.id,"item-".concat(i.__autocomplete_id),u),role:"option","aria-selected":r.getState().activeItemId===i.__autocomplete_id,onMouseMove:function(e){if(i.__autocomplete_id!==r.getState().activeItemId){r.dispatch("mousemove",i.__autocomplete_id);var t=oe(r.getState());if(null!==r.getState().activeItemId&&t){var u=t.item,a=t.itemInputValue,l=t.itemUrl,c=t.source;c.onActive(lt({event:e,item:u,itemInputValue:a,itemUrl:l,refresh:n,source:c,state:r.getState()},o))}}},onMouseDown:function(e){e.preventDefault()},onClick:function(e){var a=u.getItemInputValue({item:i,state:r.getState()}),l=u.getItemUrl({item:i,state:r.getState()});(l?Promise.resolve():$e(lt({event:e,nextState:{isOpen:!1},props:t,query:a,refresh:n,store:r},o))).then((function(){u.onSelect(lt({event:e,item:i,itemInputValue:a,itemUrl:l,refresh:n,source:u,state:r.getState()},o))}))}},a)}}}function pt(e){return pt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},pt(e)}function mt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function vt(e){for(var t=1;t=5&&((o||!e&&5===r)&&(u.push(r,0,o,n),r=6),e&&(u.push(r,e,0,n),r=6)),o=""},l=0;l"===t?(r=1,o=""):o=t+o[0]:i?t===i?i="":o+=t:'"'===t||"'"===t?i=t:">"===t?(a(),r=1):r&&("="===t?(r=5,n=o,o=""):"/"===t&&(r<5||">"===e[l][c+1])?(a(),3===r&&(u=u[0]),r=u,(u=u[0]).push(2,0,r),r=0):" "===t||"\t"===t||"\n"===t||"\r"===t?(a(),r=2):o+=t),3===r&&"!--"===o&&(r=4,u=u[0])}return a(),u}(e)),t),arguments,[])).length>1?t:t[0]}var kt=function(e){var t=e.environment,n=t.document.createElementNS("http://www.w3.org/2000/svg","svg");n.setAttribute("class","aa-ClearIcon"),n.setAttribute("viewBox","0 0 24 24"),n.setAttribute("width","18"),n.setAttribute("height","18"),n.setAttribute("fill","currentColor");var r=t.document.createElementNS("http://www.w3.org/2000/svg","path");return r.setAttribute("d","M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"),n.appendChild(r),n};function xt(e,t){if("string"==typeof t){var n=e.document.querySelector(t);return"The element ".concat(JSON.stringify(t)," is not in the document."),n}return t}function Nt(){for(var e=arguments.length,t=new Array(e),n=0;n2&&(u.children=arguments.length>3?Jt.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===u[i]&&(u[i]=e.defaultProps[i]);return sn(e,u,r,o,null)}function sn(e,t,n,r,o){var i={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==o?++Yt:o};return null==o&&null!=Xt.vnode&&Xt.vnode(i),i}function fn(e){return e.children}function pn(e,t){this.props=e,this.context=t}function mn(e,t){if(null==t)return e.__?mn(e.__,e.__.__k.indexOf(e)+1):null;for(var n;tt&&Zt.sort(nn));yn.__r=0}function bn(e,t,n,r,o,i,u,a,l,c){var s,f,p,m,v,d,y,b=r&&r.__k||on,g=b.length;for(n.__k=[],s=0;s0?sn(m.type,m.props,m.key,m.ref?m.ref:null,m.__v):m)){if(m.__=n,m.__b=n.__b+1,null===(p=b[s])||p&&m.key==p.key&&m.type===p.type)b[s]=void 0;else for(f=0;f=0;t--)if((n=e.__k[t])&&(r=On(n)))return r;return null}function _n(e,t,n){"-"===t[0]?e.setProperty(t,null==n?"":n):e[t]=null==n?"":"number"!=typeof n||un.test(t)?n:n+"px"}function Sn(e,t,n,r,o){var i;e:if("style"===t)if("string"==typeof n)e.style.cssText=n;else{if("string"==typeof r&&(e.style.cssText=r=""),r)for(t in r)n&&t in n||_n(e.style,t,"");if(n)for(t in n)r&&n[t]===r[t]||_n(e.style,t,n[t])}else if("o"===t[0]&&"n"===t[1])i=t!==(t=t.replace(/Capture$/,"")),t=t.toLowerCase()in e?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+i]=n,n?r||e.addEventListener(t,i?Pn:jn,i):e.removeEventListener(t,i?Pn:jn,i);else if("dangerouslySetInnerHTML"!==t){if(o)t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!==t&&"height"!==t&&"href"!==t&&"list"!==t&&"form"!==t&&"tabIndex"!==t&&"download"!==t&&t in e)try{e[t]=null==n?"":n;break e}catch(e){}"function"==typeof n||(null==n||!1===n&&"-"!==t[4]?e.removeAttribute(t):e.setAttribute(t,n))}}function jn(e){return this.l[e.type+!1](Xt.event?Xt.event(e):e)}function Pn(e){return this.l[e.type+!0](Xt.event?Xt.event(e):e)}function wn(e,t,n,r,o,i,u,a,l){var c,s,f,p,m,v,d,y,b,g,h,O,_,S,j,P=t.type;if(void 0!==t.constructor)return null;null!=n.__h&&(l=n.__h,a=t.__e=n.__e,t.__h=null,i=[a]),(c=Xt.__b)&&c(t);try{e:if("function"==typeof P){if(y=t.props,b=(c=P.contextType)&&r[c.__c],g=c?b?b.props.value:c.__:r,n.__c?d=(s=t.__c=n.__c).__=s.__E:("prototype"in P&&P.prototype.render?t.__c=s=new P(y,g):(t.__c=s=new pn(y,g),s.constructor=P,s.render=Cn),b&&b.sub(s),s.props=y,s.state||(s.state={}),s.context=g,s.__n=r,f=s.__d=!0,s.__h=[],s._sb=[]),null==s.__s&&(s.__s=s.state),null!=P.getDerivedStateFromProps&&(s.__s==s.state&&(s.__s=an({},s.__s)),an(s.__s,P.getDerivedStateFromProps(y,s.__s))),p=s.props,m=s.state,s.__v=t,f)null==P.getDerivedStateFromProps&&null!=s.componentWillMount&&s.componentWillMount(),null!=s.componentDidMount&&s.__h.push(s.componentDidMount);else{if(null==P.getDerivedStateFromProps&&y!==p&&null!=s.componentWillReceiveProps&&s.componentWillReceiveProps(y,g),!s.__e&&null!=s.shouldComponentUpdate&&!1===s.shouldComponentUpdate(y,s.__s,g)||t.__v===n.__v){for(t.__v!==n.__v&&(s.props=y,s.state=s.__s,s.__d=!1),s.__e=!1,t.__e=n.__e,t.__k=n.__k,t.__k.forEach((function(e){e&&(e.__=t)})),h=0;h0&&void 0!==arguments[0]?arguments[0]:[];return{get:function(){return e},add:function(t){var n=e[e.length-1];(null==n?void 0:n.isHighlighted)===t.isHighlighted?e[e.length-1]={value:n.value+t.value,isHighlighted:n.isHighlighted}:e.push(t)}}}(n?[{value:n,isHighlighted:!1}]:[]);return t.forEach((function(e){var t=e.split(xn);r.add({value:t[0],isHighlighted:!0}),""!==t[1]&&r.add({value:t[1],isHighlighted:!1})})),r.get()}function Tn(e){return function(e){if(Array.isArray(e))return qn(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return qn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return qn(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function qn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n",""":'"',"'":"'"},Fn=new RegExp(/\w/i),Ln=/&(amp|quot|lt|gt|#39);/g,Un=RegExp(Ln.source);function Mn(e,t){var n,r,o,i=e[t],u=(null===(n=e[t+1])||void 0===n?void 0:n.isHighlighted)||!0,a=(null===(r=e[t-1])||void 0===r?void 0:r.isHighlighted)||!0;return Fn.test((o=i.value)&&Un.test(o)?o.replace(Ln,(function(e){return Rn[e]})):o)||a!==u?i.isHighlighted:a}function Hn(e){return Hn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Hn(e)}function Vn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Wn(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ur(e){return function(e){if(Array.isArray(e))return ar(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return ar(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ar(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ar(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0;if(!O.value.core.openOnFocus&&!t.query)return n;var r=Boolean(y.current||O.value.renderer.renderNoResults);return!n&&r||n},__autocomplete_metadata:{userAgents:br,options:e}}))})),j=f(n({collections:[],completion:null,context:{},isOpen:!1,query:"",activeItemId:null,status:"idle"},O.value.core.initialState)),P={getEnvironmentProps:O.value.renderer.getEnvironmentProps,getFormProps:O.value.renderer.getFormProps,getInputProps:O.value.renderer.getInputProps,getItemProps:O.value.renderer.getItemProps,getLabelProps:O.value.renderer.getLabelProps,getListProps:O.value.renderer.getListProps,getPanelProps:O.value.renderer.getPanelProps,getRootProps:O.value.renderer.getRootProps},w={setActiveItemId:S.value.setActiveItemId,setQuery:S.value.setQuery,setCollections:S.value.setCollections,setIsOpen:S.value.setIsOpen,setStatus:S.value.setStatus,setContext:S.value.setContext,refresh:S.value.refresh,navigator:S.value.navigator},I=m((function(){return Ct.bind(O.value.renderer.renderer.createElement)})),A=m((function(){return Gt({autocomplete:S.value,autocompleteScopeApi:w,classNames:O.value.renderer.classNames,environment:O.value.core.environment,isDetached:_.value,placeholder:O.value.core.placeholder,propGetters:P,setIsModalOpen:k,state:j.current,translations:O.value.renderer.translations})}));function E(){Ht(A.value.panel,{style:_.value?{}:yr({panelPlacement:O.value.renderer.panelPlacement,container:A.value.root,form:A.value.form,environment:O.value.core.environment})})}function D(e){j.current=e;var t={autocomplete:S.value,autocompleteScopeApi:w,classNames:O.value.renderer.classNames,components:O.value.renderer.components,container:O.value.renderer.container,html:I.value,dom:A.value,panelContainer:_.value?A.value.detachedContainer:O.value.renderer.panelContainer,propGetters:P,state:j.current,renderer:O.value.renderer.renderer},r=!b(e)&&!y.current&&O.value.renderer.renderNoResults||O.value.renderer.render;!function(e){var t=e.autocomplete,r=e.autocompleteScopeApi,o=e.dom,i=e.propGetters,u=e.state;Vt(o.root,i.getRootProps(n({state:u,props:t.getRootProps({})},r))),Vt(o.input,i.getInputProps(n({state:u,props:t.getInputProps({inputElement:o.input}),inputElement:o.input},r))),Ht(o.label,{hidden:"stalled"===u.status}),Ht(o.loadingIndicator,{hidden:"stalled"!==u.status}),Ht(o.clearButton,{hidden:!u.query}),Ht(o.detachedSearchButtonQuery,{textContent:u.query}),Ht(o.detachedSearchButtonPlaceholder,{hidden:Boolean(u.query)})}(t),function(e,t){var r=t.autocomplete,o=t.autocompleteScopeApi,u=t.classNames,a=t.html,l=t.dom,c=t.panelContainer,s=t.propGetters,f=t.state,p=t.components,m=t.renderer;if(f.isOpen){c.contains(l.panel)||"loading"===f.status||c.appendChild(l.panel),l.panel.classList.toggle("aa-Panel--stalled","stalled"===f.status);var v=f.collections.filter((function(e){var t=e.source,n=e.items;return t.templates.noResults||n.length>0})).map((function(e,t){var l=e.source,c=e.items;return m.createElement("section",{key:t,className:u.source,"data-autocomplete-source-id":l.sourceId},l.templates.header&&m.createElement("div",{className:u.sourceHeader},l.templates.header({components:p,createElement:m.createElement,Fragment:m.Fragment,items:c,source:l,state:f,html:a})),l.templates.noResults&&0===c.length?m.createElement("div",{className:u.sourceNoResults},l.templates.noResults({components:p,createElement:m.createElement,Fragment:m.Fragment,source:l,state:f,html:a})):m.createElement("ul",i({className:u.list},s.getListProps(n({state:f,props:r.getListProps({source:l})},o))),c.map((function(e){var t=r.getItemProps({item:e,source:l});return m.createElement("li",i({key:t.id,className:u.item},s.getItemProps(n({state:f,props:t},o))),l.templates.item({components:p,createElement:m.createElement,Fragment:m.Fragment,item:e,state:f,html:a}))}))),l.templates.footer&&m.createElement("div",{className:u.sourceFooter},l.templates.footer({components:p,createElement:m.createElement,Fragment:m.Fragment,items:c,source:l,state:f,html:a})))})),d=m.createElement(m.Fragment,null,m.createElement("div",{className:u.panelLayout},v),m.createElement("div",{className:"aa-GradientBottom"})),y=v.reduce((function(e,t){return e[t.props["data-autocomplete-source-id"]]=t,e}),{});e(n(n({children:d,state:f,sections:v,elements:y},m),{},{components:p,html:a},o),l.panel)}else c.contains(l.panel)&&c.removeChild(l.panel)}(r,t)}function C(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};l();var t=O.value.renderer,n=t.components,r=u(t,gr);g.current=qt(r,O.value.core,{components:Bt(n,(function(e){return!e.value.hasOwnProperty("__autocomplete_componentName")})),initialState:j.current},e),v(),c(),S.value.refresh().then((function(){D(j.current)}))}function k(e){requestAnimationFrame((function(){var t=O.value.core.environment.document.body.contains(A.value.detachedOverlay);e!==t&&(e?(O.value.core.environment.document.body.appendChild(A.value.detachedOverlay),O.value.core.environment.document.body.classList.add("aa-Detached"),A.value.input.focus()):(O.value.core.environment.document.body.removeChild(A.value.detachedOverlay),O.value.core.environment.document.body.classList.remove("aa-Detached")))}))}return a((function(){var e=S.value.getEnvironmentProps({formElement:A.value.form,panelElement:A.value.panel,inputElement:A.value.input});return Ht(O.value.core.environment,e),function(){Ht(O.value.core.environment,Object.keys(e).reduce((function(e,t){return n(n({},e),{},o({},t,void 0))}),{}))}})),a((function(){var e=_.value?O.value.core.environment.document.body:O.value.renderer.panelContainer,t=_.value?A.value.detachedOverlay:A.value.panel;return _.value&&j.current.isOpen&&k(!0),D(j.current),function(){e.contains(t)&&e.removeChild(t)}})),a((function(){var e=O.value.renderer.container;return e.appendChild(A.value.root),function(){e.removeChild(A.value.root)}})),a((function(){var e=p((function(e){D(e.state)}),0);return h.current=function(t){var n=t.state,r=t.prevState;(_.value&&r.isOpen!==n.isOpen&&k(n.isOpen),_.value||!n.isOpen||r.isOpen||E(),n.query!==r.query)&&O.value.core.environment.document.querySelectorAll(".aa-Panel--scrollable").forEach((function(e){0!==e.scrollTop&&(e.scrollTop=0)}));e({state:n})},function(){h.current=void 0}})),a((function(){var e=p((function(){var e=_.value;_.value=O.value.core.environment.matchMedia(O.value.renderer.detachedMediaQuery).matches,e!==_.value?C({}):requestAnimationFrame(E)}),20);return O.value.core.environment.addEventListener("resize",e),function(){O.value.core.environment.removeEventListener("resize",e)}})),a((function(){if(!_.value)return function(){};function e(e){A.value.detachedContainer.classList.toggle("aa-DetachedContainer--modal",e)}function t(t){e(t.matches)}var n=O.value.core.environment.matchMedia(getComputedStyle(O.value.core.environment.document.documentElement).getPropertyValue("--aa-detached-modal-media-query"));e(n.matches);var r=Boolean(n.addEventListener);return r?n.addEventListener("change",t):n.addListener(t),function(){r?n.removeEventListener("change",t):n.removeListener(t)}})),a((function(){return requestAnimationFrame(E),function(){}})),n(n({},w),{},{update:C,destroy:function(){l()}})},e.getAlgoliaFacets=function(e){var t=hr({transformResponse:function(e){return e.facetHits}}),r=e.queries.map((function(e){return n(n({},e),{},{type:"facet"})}));return t(n(n({},e),{},{queries:r}))},e.getAlgoliaResults=Or,Object.defineProperty(e,"__esModule",{value:!0})})); + diff --git a/docs/site_libs/quarto-search/fuse.min.js b/docs/site_libs/quarto-search/fuse.min.js new file mode 100644 index 0000000..adc2835 --- /dev/null +++ b/docs/site_libs/quarto-search/fuse.min.js @@ -0,0 +1,9 @@ +/** + * Fuse.js v6.6.2 - Lightweight fuzzy-search (http://fusejs.io) + * + * Copyright (c) 2022 Kiro Risk (http://kiro.me) + * All Rights Reserved. Apache Software License 2.0 + * + * http://www.apache.org/licenses/LICENSE-2.0 + */ +var e,t;e=this,t=function(){"use strict";function e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function t(t){for(var n=1;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:1,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=new Map,r=Math.pow(10,t);return{get:function(t){var i=t.match(C).length;if(n.has(i))return n.get(i);var o=1/Math.pow(i,.5*e),c=parseFloat(Math.round(o*r)/r);return n.set(i,c),c},clear:function(){n.clear()}}}var $=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.getFn,i=void 0===n?I.getFn:n,o=t.fieldNormWeight,c=void 0===o?I.fieldNormWeight:o;r(this,e),this.norm=E(c,3),this.getFn=i,this.isCreated=!1,this.setIndexRecords()}return o(e,[{key:"setSources",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.docs=e}},{key:"setIndexRecords",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.records=e}},{key:"setKeys",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.keys=t,this._keysMap={},t.forEach((function(t,n){e._keysMap[t.id]=n}))}},{key:"create",value:function(){var e=this;!this.isCreated&&this.docs.length&&(this.isCreated=!0,g(this.docs[0])?this.docs.forEach((function(t,n){e._addString(t,n)})):this.docs.forEach((function(t,n){e._addObject(t,n)})),this.norm.clear())}},{key:"add",value:function(e){var t=this.size();g(e)?this._addString(e,t):this._addObject(e,t)}},{key:"removeAt",value:function(e){this.records.splice(e,1);for(var t=e,n=this.size();t2&&void 0!==arguments[2]?arguments[2]:{},r=n.getFn,i=void 0===r?I.getFn:r,o=n.fieldNormWeight,c=void 0===o?I.fieldNormWeight:o,a=new $({getFn:i,fieldNormWeight:c});return a.setKeys(e.map(_)),a.setSources(t),a.create(),a}function R(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.errors,r=void 0===n?0:n,i=t.currentLocation,o=void 0===i?0:i,c=t.expectedLocation,a=void 0===c?0:c,s=t.distance,u=void 0===s?I.distance:s,h=t.ignoreLocation,l=void 0===h?I.ignoreLocation:h,f=r/e.length;if(l)return f;var d=Math.abs(a-o);return u?f+d/u:d?1:f}function N(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:I.minMatchCharLength,n=[],r=-1,i=-1,o=0,c=e.length;o=t&&n.push([r,i]),r=-1)}return e[o-1]&&o-r>=t&&n.push([r,o-1]),n}var P=32;function W(e){for(var t={},n=0,r=e.length;n1&&void 0!==arguments[1]?arguments[1]:{},o=i.location,c=void 0===o?I.location:o,a=i.threshold,s=void 0===a?I.threshold:a,u=i.distance,h=void 0===u?I.distance:u,l=i.includeMatches,f=void 0===l?I.includeMatches:l,d=i.findAllMatches,v=void 0===d?I.findAllMatches:d,g=i.minMatchCharLength,y=void 0===g?I.minMatchCharLength:g,p=i.isCaseSensitive,m=void 0===p?I.isCaseSensitive:p,k=i.ignoreLocation,M=void 0===k?I.ignoreLocation:k;if(r(this,e),this.options={location:c,threshold:s,distance:h,includeMatches:f,findAllMatches:v,minMatchCharLength:y,isCaseSensitive:m,ignoreLocation:M},this.pattern=m?t:t.toLowerCase(),this.chunks=[],this.pattern.length){var b=function(e,t){n.chunks.push({pattern:e,alphabet:W(e),startIndex:t})},x=this.pattern.length;if(x>P){for(var w=0,L=x%P,S=x-L;w3&&void 0!==arguments[3]?arguments[3]:{},i=r.location,o=void 0===i?I.location:i,c=r.distance,a=void 0===c?I.distance:c,s=r.threshold,u=void 0===s?I.threshold:s,h=r.findAllMatches,l=void 0===h?I.findAllMatches:h,f=r.minMatchCharLength,d=void 0===f?I.minMatchCharLength:f,v=r.includeMatches,g=void 0===v?I.includeMatches:v,y=r.ignoreLocation,p=void 0===y?I.ignoreLocation:y;if(t.length>P)throw new Error(w(P));for(var m,k=t.length,M=e.length,b=Math.max(0,Math.min(o,M)),x=u,L=b,S=d>1||g,_=S?Array(M):[];(m=e.indexOf(t,L))>-1;){var O=R(t,{currentLocation:m,expectedLocation:b,distance:a,ignoreLocation:p});if(x=Math.min(O,x),L=m+k,S)for(var j=0;j=z;q-=1){var B=q-1,J=n[e.charAt(B)];if(S&&(_[B]=+!!J),K[q]=(K[q+1]<<1|1)&J,F&&(K[q]|=(A[q+1]|A[q])<<1|1|A[q+1]),K[q]&$&&(C=R(t,{errors:F,currentLocation:B,expectedLocation:b,distance:a,ignoreLocation:p}))<=x){if(x=C,(L=B)<=b)break;z=Math.max(1,2*b-L)}}if(R(t,{errors:F+1,currentLocation:b,expectedLocation:b,distance:a,ignoreLocation:p})>x)break;A=K}var U={isMatch:L>=0,score:Math.max(.001,C)};if(S){var V=N(_,d);V.length?g&&(U.indices=V):U.isMatch=!1}return U}(e,n,i,{location:c+o,distance:a,threshold:s,findAllMatches:u,minMatchCharLength:h,includeMatches:r,ignoreLocation:l}),p=y.isMatch,m=y.score,k=y.indices;p&&(g=!0),v+=m,p&&k&&(d=[].concat(f(d),f(k)))}));var y={isMatch:g,score:g?v/this.chunks.length:1};return g&&r&&(y.indices=d),y}}]),e}(),z=function(){function e(t){r(this,e),this.pattern=t}return o(e,[{key:"search",value:function(){}}],[{key:"isMultiMatch",value:function(e){return D(e,this.multiRegex)}},{key:"isSingleMatch",value:function(e){return D(e,this.singleRegex)}}]),e}();function D(e,t){var n=e.match(t);return n?n[1]:null}var K=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"exact"}},{key:"multiRegex",get:function(){return/^="(.*)"$/}},{key:"singleRegex",get:function(){return/^=(.*)$/}}]),n}(z),q=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"$/}},{key:"singleRegex",get:function(){return/^!(.*)$/}}]),n}(z),B=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"prefix-exact"}},{key:"multiRegex",get:function(){return/^\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^\^(.*)$/}}]),n}(z),J=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-prefix-exact"}},{key:"multiRegex",get:function(){return/^!\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^!\^(.*)$/}}]),n}(z),U=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}}],[{key:"type",get:function(){return"suffix-exact"}},{key:"multiRegex",get:function(){return/^"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^(.*)\$$/}}]),n}(z),V=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-suffix-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^!(.*)\$$/}}]),n}(z),G=function(e){a(n,e);var t=l(n);function n(e){var i,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},c=o.location,a=void 0===c?I.location:c,s=o.threshold,u=void 0===s?I.threshold:s,h=o.distance,l=void 0===h?I.distance:h,f=o.includeMatches,d=void 0===f?I.includeMatches:f,v=o.findAllMatches,g=void 0===v?I.findAllMatches:v,y=o.minMatchCharLength,p=void 0===y?I.minMatchCharLength:y,m=o.isCaseSensitive,k=void 0===m?I.isCaseSensitive:m,M=o.ignoreLocation,b=void 0===M?I.ignoreLocation:M;return r(this,n),(i=t.call(this,e))._bitapSearch=new T(e,{location:a,threshold:u,distance:l,includeMatches:d,findAllMatches:g,minMatchCharLength:p,isCaseSensitive:k,ignoreLocation:b}),i}return o(n,[{key:"search",value:function(e){return this._bitapSearch.searchIn(e)}}],[{key:"type",get:function(){return"fuzzy"}},{key:"multiRegex",get:function(){return/^"(.*)"$/}},{key:"singleRegex",get:function(){return/^(.*)$/}}]),n}(z),H=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){for(var t,n=0,r=[],i=this.pattern.length;(t=e.indexOf(this.pattern,n))>-1;)n=t+i,r.push([t,n-1]);var o=!!r.length;return{isMatch:o,score:o?0:1,indices:r}}}],[{key:"type",get:function(){return"include"}},{key:"multiRegex",get:function(){return/^'"(.*)"$/}},{key:"singleRegex",get:function(){return/^'(.*)$/}}]),n}(z),Q=[K,H,B,J,V,U,q,G],X=Q.length,Y=/ +(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/;function Z(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.split("|").map((function(e){for(var n=e.trim().split(Y).filter((function(e){return e&&!!e.trim()})),r=[],i=0,o=n.length;i1&&void 0!==arguments[1]?arguments[1]:{},i=n.isCaseSensitive,o=void 0===i?I.isCaseSensitive:i,c=n.includeMatches,a=void 0===c?I.includeMatches:c,s=n.minMatchCharLength,u=void 0===s?I.minMatchCharLength:s,h=n.ignoreLocation,l=void 0===h?I.ignoreLocation:h,f=n.findAllMatches,d=void 0===f?I.findAllMatches:f,v=n.location,g=void 0===v?I.location:v,y=n.threshold,p=void 0===y?I.threshold:y,m=n.distance,k=void 0===m?I.distance:m;r(this,e),this.query=null,this.options={isCaseSensitive:o,includeMatches:a,minMatchCharLength:u,findAllMatches:d,ignoreLocation:l,location:g,threshold:p,distance:k},this.pattern=o?t:t.toLowerCase(),this.query=Z(this.pattern,this.options)}return o(e,[{key:"searchIn",value:function(e){var t=this.query;if(!t)return{isMatch:!1,score:1};var n=this.options,r=n.includeMatches;e=n.isCaseSensitive?e:e.toLowerCase();for(var i=0,o=[],c=0,a=0,s=t.length;a-1&&(n.refIndex=e.idx),t.matches.push(n)}}))}function ve(e,t){t.score=e.score}function ge(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.includeMatches,i=void 0===r?I.includeMatches:r,o=n.includeScore,c=void 0===o?I.includeScore:o,a=[];return i&&a.push(de),c&&a.push(ve),e.map((function(e){var n=e.idx,r={item:t[n],refIndex:n};return a.length&&a.forEach((function(t){t(e,r)})),r}))}var ye=function(){function e(n){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2?arguments[2]:void 0;r(this,e),this.options=t(t({},I),i),this.options.useExtendedSearch,this._keyStore=new S(this.options.keys),this.setCollection(n,o)}return o(e,[{key:"setCollection",value:function(e,t){if(this._docs=e,t&&!(t instanceof $))throw new Error("Incorrect 'index' type");this._myIndex=t||F(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}},{key:"add",value:function(e){k(e)&&(this._docs.push(e),this._myIndex.add(e))}},{key:"remove",value:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!1},t=[],n=0,r=this._docs.length;n1&&void 0!==arguments[1]?arguments[1]:{},n=t.limit,r=void 0===n?-1:n,i=this.options,o=i.includeMatches,c=i.includeScore,a=i.shouldSort,s=i.sortFn,u=i.ignoreFieldNorm,h=g(e)?g(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return fe(h,{ignoreFieldNorm:u}),a&&h.sort(s),y(r)&&r>-1&&(h=h.slice(0,r)),ge(h,this._docs,{includeMatches:o,includeScore:c})}},{key:"_searchStringList",value:function(e){var t=re(e,this.options),n=this._myIndex.records,r=[];return n.forEach((function(e){var n=e.v,i=e.i,o=e.n;if(k(n)){var c=t.searchIn(n),a=c.isMatch,s=c.score,u=c.indices;a&&r.push({item:n,idx:i,matches:[{score:s,value:n,norm:o,indices:u}]})}})),r}},{key:"_searchLogical",value:function(e){var t=this,n=function(e,t){var n=(arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).auto,r=void 0===n||n,i=function e(n){var i=Object.keys(n),o=ue(n);if(!o&&i.length>1&&!se(n))return e(le(n));if(he(n)){var c=o?n[ce]:i[0],a=o?n[ae]:n[c];if(!g(a))throw new Error(x(c));var s={keyId:j(c),pattern:a};return r&&(s.searcher=re(a,t)),s}var u={children:[],operator:i[0]};return i.forEach((function(t){var r=n[t];v(r)&&r.forEach((function(t){u.children.push(e(t))}))})),u};return se(e)||(e=le(e)),i(e)}(e,this.options),r=function e(n,r,i){if(!n.children){var o=n.keyId,c=n.searcher,a=t._findMatches({key:t._keyStore.get(o),value:t._myIndex.getValueForItemAtKeyId(r,o),searcher:c});return a&&a.length?[{idx:i,item:r,matches:a}]:[]}for(var s=[],u=0,h=n.children.length;u1&&void 0!==arguments[1]?arguments[1]:{},n=t.getFn,r=void 0===n?I.getFn:n,i=t.fieldNormWeight,o=void 0===i?I.fieldNormWeight:i,c=e.keys,a=e.records,s=new $({getFn:r,fieldNormWeight:o});return s.setKeys(c),s.setIndexRecords(a),s},ye.config=I,function(){ne.push.apply(ne,arguments)}(te),ye},"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).Fuse=t(); \ No newline at end of file diff --git a/docs/site_libs/quarto-search/quarto-search.js b/docs/site_libs/quarto-search/quarto-search.js new file mode 100644 index 0000000..d788a95 --- /dev/null +++ b/docs/site_libs/quarto-search/quarto-search.js @@ -0,0 +1,1290 @@ +const kQueryArg = "q"; +const kResultsArg = "show-results"; + +// If items don't provide a URL, then both the navigator and the onSelect +// function aren't called (and therefore, the default implementation is used) +// +// We're using this sentinel URL to signal to those handlers that this +// item is a more item (along with the type) and can be handled appropriately +const kItemTypeMoreHref = "0767FDFD-0422-4E5A-BC8A-3BE11E5BBA05"; + +window.document.addEventListener("DOMContentLoaded", function (_event) { + // Ensure that search is available on this page. If it isn't, + // should return early and not do anything + var searchEl = window.document.getElementById("quarto-search"); + if (!searchEl) return; + + const { autocomplete } = window["@algolia/autocomplete-js"]; + + let quartoSearchOptions = {}; + let language = {}; + const searchOptionEl = window.document.getElementById( + "quarto-search-options" + ); + if (searchOptionEl) { + const jsonStr = searchOptionEl.textContent; + quartoSearchOptions = JSON.parse(jsonStr); + language = quartoSearchOptions.language; + } + + // note the search mode + if (quartoSearchOptions.type === "overlay") { + searchEl.classList.add("type-overlay"); + } else { + searchEl.classList.add("type-textbox"); + } + + // Used to determine highlighting behavior for this page + // A `q` query param is expected when the user follows a search + // to this page + const currentUrl = new URL(window.location); + const query = currentUrl.searchParams.get(kQueryArg); + const showSearchResults = currentUrl.searchParams.get(kResultsArg); + const mainEl = window.document.querySelector("main"); + + // highlight matches on the page + if (query && mainEl) { + // perform any highlighting + highlight(escapeRegExp(query), mainEl); + + // fix up the URL to remove the q query param + const replacementUrl = new URL(window.location); + replacementUrl.searchParams.delete(kQueryArg); + window.history.replaceState({}, "", replacementUrl); + } + + // function to clear highlighting on the page when the search query changes + // (e.g. if the user edits the query or clears it) + let highlighting = true; + const resetHighlighting = (searchTerm) => { + if (mainEl && highlighting && query && searchTerm !== query) { + clearHighlight(query, mainEl); + highlighting = false; + } + }; + + // Clear search highlighting when the user scrolls sufficiently + const resetFn = () => { + resetHighlighting(""); + window.removeEventListener("quarto-hrChanged", resetFn); + window.removeEventListener("quarto-sectionChanged", resetFn); + }; + + // Register this event after the initial scrolling and settling of events + // on the page + window.addEventListener("quarto-hrChanged", resetFn); + window.addEventListener("quarto-sectionChanged", resetFn); + + // Responsively switch to overlay mode if the search is present on the navbar + // Note that switching the sidebar to overlay mode requires more coordinate (not just + // the media query since we generate different HTML for sidebar overlays than we do + // for sidebar input UI) + const detachedMediaQuery = + quartoSearchOptions.type === "overlay" ? "all" : "(max-width: 991px)"; + + // If configured, include the analytics client to send insights + const plugins = configurePlugins(quartoSearchOptions); + + let lastState = null; + const { setIsOpen, setQuery, setCollections } = autocomplete({ + container: searchEl, + detachedMediaQuery: detachedMediaQuery, + defaultActiveItemId: 0, + panelContainer: "#quarto-search-results", + panelPlacement: quartoSearchOptions["panel-placement"], + debug: false, + openOnFocus: true, + plugins, + classNames: { + form: "d-flex", + }, + placeholder: language["search-text-placeholder"], + translations: { + clearButtonTitle: language["search-clear-button-title"], + detachedCancelButtonText: language["search-detached-cancel-button-title"], + submitButtonTitle: language["search-submit-button-title"], + }, + initialState: { + query, + }, + getItemUrl({ item }) { + return item.href; + }, + onStateChange({ state }) { + // If this is a file URL, note that + + // Perhaps reset highlighting + resetHighlighting(state.query); + + // If the panel just opened, ensure the panel is positioned properly + if (state.isOpen) { + if (lastState && !lastState.isOpen) { + setTimeout(() => { + positionPanel(quartoSearchOptions["panel-placement"]); + }, 150); + } + } + + // Perhaps show the copy link + showCopyLink(state.query, quartoSearchOptions); + + lastState = state; + }, + reshape({ sources, state }) { + return sources.map((source) => { + try { + const items = source.getItems(); + + // Validate the items + validateItems(items); + + // group the items by document + const groupedItems = new Map(); + items.forEach((item) => { + const hrefParts = item.href.split("#"); + const baseHref = hrefParts[0]; + const isDocumentItem = hrefParts.length === 1; + + const items = groupedItems.get(baseHref); + if (!items) { + groupedItems.set(baseHref, [item]); + } else { + // If the href for this item matches the document + // exactly, place this item first as it is the item that represents + // the document itself + if (isDocumentItem) { + items.unshift(item); + } else { + items.push(item); + } + groupedItems.set(baseHref, items); + } + }); + + const reshapedItems = []; + let count = 1; + for (const [_key, value] of groupedItems) { + const firstItem = value[0]; + reshapedItems.push({ + ...firstItem, + type: kItemTypeDoc, + }); + + const collapseMatches = quartoSearchOptions["collapse-after"]; + const collapseCount = + typeof collapseMatches === "number" ? collapseMatches : 1; + + if (value.length > 1) { + const target = `search-more-${count}`; + const isExpanded = + state.context.expanded && + state.context.expanded.includes(target); + + const remainingCount = value.length - collapseCount; + + for (let i = 1; i < value.length; i++) { + if (collapseMatches && i === collapseCount) { + reshapedItems.push({ + target, + title: isExpanded + ? language["search-hide-matches-text"] + : remainingCount === 1 + ? `${remainingCount} ${language["search-more-match-text"]}` + : `${remainingCount} ${language["search-more-matches-text"]}`, + type: kItemTypeMore, + href: kItemTypeMoreHref, + }); + } + + if (isExpanded || !collapseMatches || i < collapseCount) { + reshapedItems.push({ + ...value[i], + type: kItemTypeItem, + target, + }); + } + } + } + count += 1; + } + + return { + ...source, + getItems() { + return reshapedItems; + }, + }; + } catch (error) { + // Some form of error occurred + return { + ...source, + getItems() { + return [ + { + title: error.name || "An Error Occurred While Searching", + text: + error.message || + "An unknown error occurred while attempting to perform the requested search.", + type: kItemTypeError, + }, + ]; + }, + }; + } + }); + }, + navigator: { + navigate({ itemUrl }) { + if (itemUrl !== offsetURL(kItemTypeMoreHref)) { + window.location.assign(itemUrl); + } + }, + navigateNewTab({ itemUrl }) { + if (itemUrl !== offsetURL(kItemTypeMoreHref)) { + const windowReference = window.open(itemUrl, "_blank", "noopener"); + if (windowReference) { + windowReference.focus(); + } + } + }, + navigateNewWindow({ itemUrl }) { + if (itemUrl !== offsetURL(kItemTypeMoreHref)) { + window.open(itemUrl, "_blank", "noopener"); + } + }, + }, + getSources({ state, setContext, setActiveItemId, refresh }) { + return [ + { + sourceId: "documents", + getItemUrl({ item }) { + if (item.href) { + return offsetURL(item.href); + } else { + return undefined; + } + }, + onSelect({ + item, + state, + setContext, + setIsOpen, + setActiveItemId, + refresh, + }) { + if (item.type === kItemTypeMore) { + toggleExpanded(item, state, setContext, setActiveItemId, refresh); + + // Toggle more + setIsOpen(true); + } + }, + getItems({ query }) { + if (query === null || query === "") { + return []; + } + + const limit = quartoSearchOptions.limit; + if (quartoSearchOptions.algolia) { + return algoliaSearch(query, limit, quartoSearchOptions.algolia); + } else { + // Fuse search options + const fuseSearchOptions = { + isCaseSensitive: false, + shouldSort: true, + minMatchCharLength: 2, + limit: limit, + }; + + return readSearchData().then(function (fuse) { + return fuseSearch(query, fuse, fuseSearchOptions); + }); + } + }, + templates: { + noResults({ createElement }) { + const hasQuery = lastState.query; + + return createElement( + "div", + { + class: `quarto-search-no-results${ + hasQuery ? "" : " no-query" + }`, + }, + language["search-no-results-text"] + ); + }, + header({ items, createElement }) { + // count the documents + const count = items.filter((item) => { + return item.type === kItemTypeDoc; + }).length; + + if (count > 0) { + return createElement( + "div", + { class: "search-result-header" }, + `${count} ${language["search-matching-documents-text"]}` + ); + } else { + return createElement( + "div", + { class: "search-result-header-no-results" }, + `` + ); + } + }, + footer({ _items, createElement }) { + if ( + quartoSearchOptions.algolia && + quartoSearchOptions.algolia["show-logo"] + ) { + const libDir = quartoSearchOptions.algolia["libDir"]; + const logo = createElement("img", { + src: offsetURL( + `${libDir}/quarto-search/search-by-algolia.svg` + ), + class: "algolia-search-logo", + }); + return createElement( + "a", + { href: "http://www.algolia.com/" }, + logo + ); + } + }, + + item({ item, createElement }) { + return renderItem( + item, + createElement, + state, + setActiveItemId, + setContext, + refresh, + quartoSearchOptions + ); + }, + }, + }, + ]; + }, + }); + + window.quartoOpenSearch = () => { + setIsOpen(false); + setIsOpen(true); + focusSearchInput(); + }; + + document.addEventListener("keyup", (event) => { + const { key } = event; + const kbds = quartoSearchOptions["keyboard-shortcut"]; + const focusedEl = document.activeElement; + + const isFormElFocused = [ + "input", + "select", + "textarea", + "button", + "option", + ].find((tag) => { + return focusedEl.tagName.toLowerCase() === tag; + }); + + if ( + kbds && + kbds.includes(key) && + !isFormElFocused && + !document.activeElement.isContentEditable + ) { + event.preventDefault(); + window.quartoOpenSearch(); + } + }); + + // Remove the labeleledby attribute since it is pointing + // to a non-existent label + if (quartoSearchOptions.type === "overlay") { + const inputEl = window.document.querySelector( + "#quarto-search .aa-Autocomplete" + ); + if (inputEl) { + inputEl.removeAttribute("aria-labelledby"); + } + } + + function throttle(func, wait) { + let waiting = false; + return function () { + if (!waiting) { + func.apply(this, arguments); + waiting = true; + setTimeout(function () { + waiting = false; + }, wait); + } + }; + } + + // If the main document scrolls dismiss the search results + // (otherwise, since they're floating in the document they can scroll with the document) + window.document.body.onscroll = throttle(() => { + // Only do this if we're not detached + // Bug #7117 + // This will happen when the keyboard is shown on ios (resulting in a scroll) + // which then closed the search UI + if (!window.matchMedia(detachedMediaQuery).matches) { + setIsOpen(false); + } + }, 50); + + if (showSearchResults) { + setIsOpen(true); + focusSearchInput(); + } +}); + +function configurePlugins(quartoSearchOptions) { + const autocompletePlugins = []; + const algoliaOptions = quartoSearchOptions.algolia; + if ( + algoliaOptions && + algoliaOptions["analytics-events"] && + algoliaOptions["search-only-api-key"] && + algoliaOptions["application-id"] + ) { + const apiKey = algoliaOptions["search-only-api-key"]; + const appId = algoliaOptions["application-id"]; + + // Aloglia insights may not be loaded because they require cookie consent + // Use deferred loading so events will start being recorded when/if consent + // is granted. + const algoliaInsightsDeferredPlugin = deferredLoadPlugin(() => { + if ( + window.aa && + window["@algolia/autocomplete-plugin-algolia-insights"] + ) { + window.aa("init", { + appId, + apiKey, + useCookie: true, + }); + + const { createAlgoliaInsightsPlugin } = + window["@algolia/autocomplete-plugin-algolia-insights"]; + // Register the insights client + const algoliaInsightsPlugin = createAlgoliaInsightsPlugin({ + insightsClient: window.aa, + onItemsChange({ insights, insightsEvents }) { + const events = insightsEvents.flatMap((event) => { + // This API limits the number of items per event to 20 + const chunkSize = 20; + const itemChunks = []; + const eventItems = event.items; + for (let i = 0; i < eventItems.length; i += chunkSize) { + itemChunks.push(eventItems.slice(i, i + chunkSize)); + } + // Split the items into multiple events that can be sent + const events = itemChunks.map((items) => { + return { + ...event, + items, + }; + }); + return events; + }); + + for (const event of events) { + insights.viewedObjectIDs(event); + } + }, + }); + return algoliaInsightsPlugin; + } + }); + + // Add the plugin + autocompletePlugins.push(algoliaInsightsDeferredPlugin); + return autocompletePlugins; + } +} + +// For plugins that may not load immediately, create a wrapper +// plugin and forward events and plugin data once the plugin +// is initialized. This is useful for cases like cookie consent +// which may prevent the analytics insights event plugin from initializing +// immediately. +function deferredLoadPlugin(createPlugin) { + let plugin = undefined; + let subscribeObj = undefined; + const wrappedPlugin = () => { + if (!plugin && subscribeObj) { + plugin = createPlugin(); + if (plugin && plugin.subscribe) { + plugin.subscribe(subscribeObj); + } + } + return plugin; + }; + + return { + subscribe: (obj) => { + subscribeObj = obj; + }, + onStateChange: (obj) => { + const plugin = wrappedPlugin(); + if (plugin && plugin.onStateChange) { + plugin.onStateChange(obj); + } + }, + onSubmit: (obj) => { + const plugin = wrappedPlugin(); + if (plugin && plugin.onSubmit) { + plugin.onSubmit(obj); + } + }, + onReset: (obj) => { + const plugin = wrappedPlugin(); + if (plugin && plugin.onReset) { + plugin.onReset(obj); + } + }, + getSources: (obj) => { + const plugin = wrappedPlugin(); + if (plugin && plugin.getSources) { + return plugin.getSources(obj); + } else { + return Promise.resolve([]); + } + }, + data: (obj) => { + const plugin = wrappedPlugin(); + if (plugin && plugin.data) { + plugin.data(obj); + } + }, + }; +} + +function validateItems(items) { + // Validate the first item + if (items.length > 0) { + const item = items[0]; + const missingFields = []; + if (item.href == undefined) { + missingFields.push("href"); + } + if (!item.title == undefined) { + missingFields.push("title"); + } + if (!item.text == undefined) { + missingFields.push("text"); + } + + if (missingFields.length === 1) { + throw { + name: `Error: Search index is missing the ${missingFields[0]} field.`, + message: `The items being returned for this search do not include all the required fields. Please ensure that your index items include the ${missingFields[0]} field or use index-fields in your _quarto.yml file to specify the field names.`, + }; + } else if (missingFields.length > 1) { + const missingFieldList = missingFields + .map((field) => { + return `${field}`; + }) + .join(", "); + + throw { + name: `Error: Search index is missing the following fields: ${missingFieldList}.`, + message: `The items being returned for this search do not include all the required fields. Please ensure that your index items includes the following fields: ${missingFieldList}, or use index-fields in your _quarto.yml file to specify the field names.`, + }; + } + } +} + +let lastQuery = null; +function showCopyLink(query, options) { + const language = options.language; + lastQuery = query; + // Insert share icon + const inputSuffixEl = window.document.body.querySelector( + ".aa-Form .aa-InputWrapperSuffix" + ); + + if (inputSuffixEl) { + let copyButtonEl = window.document.body.querySelector( + ".aa-Form .aa-InputWrapperSuffix .aa-CopyButton" + ); + + if (copyButtonEl === null) { + copyButtonEl = window.document.createElement("button"); + copyButtonEl.setAttribute("class", "aa-CopyButton"); + copyButtonEl.setAttribute("type", "button"); + copyButtonEl.setAttribute("title", language["search-copy-link-title"]); + copyButtonEl.onmousedown = (e) => { + e.preventDefault(); + e.stopPropagation(); + }; + + const linkIcon = "bi-clipboard"; + const checkIcon = "bi-check2"; + + const shareIconEl = window.document.createElement("i"); + shareIconEl.setAttribute("class", `bi ${linkIcon}`); + copyButtonEl.appendChild(shareIconEl); + inputSuffixEl.prepend(copyButtonEl); + + const clipboard = new window.ClipboardJS(".aa-CopyButton", { + text: function (_trigger) { + const copyUrl = new URL(window.location); + copyUrl.searchParams.set(kQueryArg, lastQuery); + copyUrl.searchParams.set(kResultsArg, "1"); + return copyUrl.toString(); + }, + }); + clipboard.on("success", function (e) { + // Focus the input + + // button target + const button = e.trigger; + const icon = button.querySelector("i.bi"); + + // flash "checked" + icon.classList.add(checkIcon); + icon.classList.remove(linkIcon); + setTimeout(function () { + icon.classList.remove(checkIcon); + icon.classList.add(linkIcon); + }, 1000); + }); + } + + // If there is a query, show the link icon + if (copyButtonEl) { + if (lastQuery && options["copy-button"]) { + copyButtonEl.style.display = "flex"; + } else { + copyButtonEl.style.display = "none"; + } + } + } +} + +/* Search Index Handling */ +// create the index +var fuseIndex = undefined; +var shownWarning = false; + +// fuse index options +const kFuseIndexOptions = { + keys: [ + { name: "title", weight: 20 }, + { name: "section", weight: 20 }, + { name: "text", weight: 10 }, + ], + ignoreLocation: true, + threshold: 0.1, +}; + +async function readSearchData() { + // Initialize the search index on demand + if (fuseIndex === undefined) { + if (window.location.protocol === "file:" && !shownWarning) { + window.alert( + "Search requires JavaScript features disabled when running in file://... URLs. In order to use search, please run this document in a web server." + ); + shownWarning = true; + return; + } + const fuse = new window.Fuse([], kFuseIndexOptions); + + // fetch the main search.json + const response = await fetch(offsetURL("search.json")); + if (response.status == 200) { + return response.json().then(function (searchDocs) { + searchDocs.forEach(function (searchDoc) { + fuse.add(searchDoc); + }); + fuseIndex = fuse; + return fuseIndex; + }); + } else { + return Promise.reject( + new Error( + "Unexpected status from search index request: " + response.status + ) + ); + } + } + + return fuseIndex; +} + +function inputElement() { + return window.document.body.querySelector(".aa-Form .aa-Input"); +} + +function focusSearchInput() { + setTimeout(() => { + const inputEl = inputElement(); + if (inputEl) { + inputEl.focus(); + } + }, 50); +} + +/* Panels */ +const kItemTypeDoc = "document"; +const kItemTypeMore = "document-more"; +const kItemTypeItem = "document-item"; +const kItemTypeError = "error"; + +function renderItem( + item, + createElement, + state, + setActiveItemId, + setContext, + refresh, + quartoSearchOptions +) { + switch (item.type) { + case kItemTypeDoc: + return createDocumentCard( + createElement, + "file-richtext", + item.title, + item.section, + item.text, + item.href, + item.crumbs, + quartoSearchOptions + ); + case kItemTypeMore: + return createMoreCard( + createElement, + item, + state, + setActiveItemId, + setContext, + refresh + ); + case kItemTypeItem: + return createSectionCard( + createElement, + item.section, + item.text, + item.href + ); + case kItemTypeError: + return createErrorCard(createElement, item.title, item.text); + default: + return undefined; + } +} + +function createDocumentCard( + createElement, + icon, + title, + section, + text, + href, + crumbs, + quartoSearchOptions +) { + const iconEl = createElement("i", { + class: `bi bi-${icon} search-result-icon`, + }); + const titleEl = createElement("p", { class: "search-result-title" }, title); + const titleContents = [iconEl, titleEl]; + const showParent = quartoSearchOptions["show-item-context"]; + if (crumbs && showParent) { + let crumbsOut = undefined; + const crumbClz = ["search-result-crumbs"]; + if (showParent === "root") { + crumbsOut = crumbs.length > 1 ? crumbs[0] : undefined; + } else if (showParent === "parent") { + crumbsOut = crumbs.length > 1 ? crumbs[crumbs.length - 2] : undefined; + } else { + crumbsOut = crumbs.length > 1 ? crumbs.join(" > ") : undefined; + crumbClz.push("search-result-crumbs-wrap"); + } + + const crumbEl = createElement( + "p", + { class: crumbClz.join(" ") }, + crumbsOut + ); + titleContents.push(crumbEl); + } + + const titleContainerEl = createElement( + "div", + { class: "search-result-title-container" }, + titleContents + ); + + const textEls = []; + if (section) { + const sectionEl = createElement( + "p", + { class: "search-result-section" }, + section + ); + textEls.push(sectionEl); + } + const descEl = createElement("p", { + class: "search-result-text", + dangerouslySetInnerHTML: { + __html: text, + }, + }); + textEls.push(descEl); + + const textContainerEl = createElement( + "div", + { class: "search-result-text-container" }, + textEls + ); + + const containerEl = createElement( + "div", + { + class: "search-result-container", + }, + [titleContainerEl, textContainerEl] + ); + + const linkEl = createElement( + "a", + { + href: offsetURL(href), + class: "search-result-link", + }, + containerEl + ); + + const classes = ["search-result-doc", "search-item"]; + if (!section) { + classes.push("document-selectable"); + } + + return createElement( + "div", + { + class: classes.join(" "), + }, + linkEl + ); +} + +function createMoreCard( + createElement, + item, + state, + setActiveItemId, + setContext, + refresh +) { + const moreCardEl = createElement( + "div", + { + class: "search-result-more search-item", + onClick: (e) => { + // Handle expanding the sections by adding the expanded + // section to the list of expanded sections + toggleExpanded(item, state, setContext, setActiveItemId, refresh); + e.stopPropagation(); + }, + }, + item.title + ); + + return moreCardEl; +} + +function toggleExpanded(item, state, setContext, setActiveItemId, refresh) { + const expanded = state.context.expanded || []; + if (expanded.includes(item.target)) { + setContext({ + expanded: expanded.filter((target) => target !== item.target), + }); + } else { + setContext({ expanded: [...expanded, item.target] }); + } + + refresh(); + setActiveItemId(item.__autocomplete_id); +} + +function createSectionCard(createElement, section, text, href) { + const sectionEl = createSection(createElement, section, text, href); + return createElement( + "div", + { + class: "search-result-doc-section search-item", + }, + sectionEl + ); +} + +function createSection(createElement, title, text, href) { + const descEl = createElement("p", { + class: "search-result-text", + dangerouslySetInnerHTML: { + __html: text, + }, + }); + + const titleEl = createElement("p", { class: "search-result-section" }, title); + const linkEl = createElement( + "a", + { + href: offsetURL(href), + class: "search-result-link", + }, + [titleEl, descEl] + ); + return linkEl; +} + +function createErrorCard(createElement, title, text) { + const descEl = createElement("p", { + class: "search-error-text", + dangerouslySetInnerHTML: { + __html: text, + }, + }); + + const titleEl = createElement("p", { + class: "search-error-title", + dangerouslySetInnerHTML: { + __html: ` ${title}`, + }, + }); + const errorEl = createElement("div", { class: "search-error" }, [ + titleEl, + descEl, + ]); + return errorEl; +} + +function positionPanel(pos) { + const panelEl = window.document.querySelector( + "#quarto-search-results .aa-Panel" + ); + const inputEl = window.document.querySelector( + "#quarto-search .aa-Autocomplete" + ); + + if (panelEl && inputEl) { + panelEl.style.top = `${Math.round(panelEl.offsetTop)}px`; + if (pos === "start") { + panelEl.style.left = `${Math.round(inputEl.left)}px`; + } else { + panelEl.style.right = `${Math.round(inputEl.offsetRight)}px`; + } + } +} + +/* Highlighting */ +// highlighting functions +function highlightMatch(query, text) { + if (text) { + const start = text.toLowerCase().indexOf(query.toLowerCase()); + if (start !== -1) { + const startMark = ""; + const endMark = ""; + + const end = start + query.length; + text = + text.slice(0, start) + + startMark + + text.slice(start, end) + + endMark + + text.slice(end); + const startInfo = clipStart(text, start); + const endInfo = clipEnd( + text, + startInfo.position + startMark.length + endMark.length + ); + text = + startInfo.prefix + + text.slice(startInfo.position, endInfo.position) + + endInfo.suffix; + + return text; + } else { + return text; + } + } else { + return text; + } +} + +function clipStart(text, pos) { + const clipStart = pos - 50; + if (clipStart < 0) { + // This will just return the start of the string + return { + position: 0, + prefix: "", + }; + } else { + // We're clipping before the start of the string, walk backwards to the first space. + const spacePos = findSpace(text, pos, -1); + return { + position: spacePos.position, + prefix: "", + }; + } +} + +function clipEnd(text, pos) { + const clipEnd = pos + 200; + if (clipEnd > text.length) { + return { + position: text.length, + suffix: "", + }; + } else { + const spacePos = findSpace(text, clipEnd, 1); + return { + position: spacePos.position, + suffix: spacePos.clipped ? "…" : "", + }; + } +} + +function findSpace(text, start, step) { + let stepPos = start; + while (stepPos > -1 && stepPos < text.length) { + const char = text[stepPos]; + if (char === " " || char === "," || char === ":") { + return { + position: step === 1 ? stepPos : stepPos - step, + clipped: stepPos > 1 && stepPos < text.length, + }; + } + stepPos = stepPos + step; + } + + return { + position: stepPos - step, + clipped: false, + }; +} + +// removes highlighting as implemented by the mark tag +function clearHighlight(searchterm, el) { + const childNodes = el.childNodes; + for (let i = childNodes.length - 1; i >= 0; i--) { + const node = childNodes[i]; + if (node.nodeType === Node.ELEMENT_NODE) { + if ( + node.tagName === "MARK" && + node.innerText.toLowerCase() === searchterm.toLowerCase() + ) { + el.replaceChild(document.createTextNode(node.innerText), node); + } else { + clearHighlight(searchterm, node); + } + } + } +} + +function escapeRegExp(string) { + return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string +} + +// highlight matches +function highlight(term, el) { + const termRegex = new RegExp(term, "ig"); + const childNodes = el.childNodes; + + // walk back to front avoid mutating elements in front of us + for (let i = childNodes.length - 1; i >= 0; i--) { + const node = childNodes[i]; + + if (node.nodeType === Node.TEXT_NODE) { + // Search text nodes for text to highlight + const text = node.nodeValue; + + let startIndex = 0; + let matchIndex = text.search(termRegex); + if (matchIndex > -1) { + const markFragment = document.createDocumentFragment(); + while (matchIndex > -1) { + const prefix = text.slice(startIndex, matchIndex); + markFragment.appendChild(document.createTextNode(prefix)); + + const mark = document.createElement("mark"); + mark.appendChild( + document.createTextNode( + text.slice(matchIndex, matchIndex + term.length) + ) + ); + markFragment.appendChild(mark); + + startIndex = matchIndex + term.length; + matchIndex = text.slice(startIndex).search(new RegExp(term, "ig")); + if (matchIndex > -1) { + matchIndex = startIndex + matchIndex; + } + } + if (startIndex < text.length) { + markFragment.appendChild( + document.createTextNode(text.slice(startIndex, text.length)) + ); + } + + el.replaceChild(markFragment, node); + } + } else if (node.nodeType === Node.ELEMENT_NODE) { + // recurse through elements + highlight(term, node); + } + } +} + +/* Link Handling */ +// get the offset from this page for a given site root relative url +function offsetURL(url) { + var offset = getMeta("quarto:offset"); + return offset ? offset + url : url; +} + +// read a meta tag value +function getMeta(metaName) { + var metas = window.document.getElementsByTagName("meta"); + for (let i = 0; i < metas.length; i++) { + if (metas[i].getAttribute("name") === metaName) { + return metas[i].getAttribute("content"); + } + } + return ""; +} + +function algoliaSearch(query, limit, algoliaOptions) { + const { getAlgoliaResults } = window["@algolia/autocomplete-preset-algolia"]; + + const applicationId = algoliaOptions["application-id"]; + const searchOnlyApiKey = algoliaOptions["search-only-api-key"]; + const indexName = algoliaOptions["index-name"]; + const indexFields = algoliaOptions["index-fields"]; + const searchClient = window.algoliasearch(applicationId, searchOnlyApiKey); + const searchParams = algoliaOptions["params"]; + const searchAnalytics = !!algoliaOptions["analytics-events"]; + + return getAlgoliaResults({ + searchClient, + queries: [ + { + indexName: indexName, + query, + params: { + hitsPerPage: limit, + clickAnalytics: searchAnalytics, + ...searchParams, + }, + }, + ], + transformResponse: (response) => { + if (!indexFields) { + return response.hits.map((hit) => { + return hit.map((item) => { + return { + ...item, + text: highlightMatch(query, item.text), + }; + }); + }); + } else { + const remappedHits = response.hits.map((hit) => { + return hit.map((item) => { + const newItem = { ...item }; + ["href", "section", "title", "text", "crumbs"].forEach( + (keyName) => { + const mappedName = indexFields[keyName]; + if ( + mappedName && + item[mappedName] !== undefined && + mappedName !== keyName + ) { + newItem[keyName] = item[mappedName]; + delete newItem[mappedName]; + } + } + ); + newItem.text = highlightMatch(query, newItem.text); + return newItem; + }); + }); + return remappedHits; + } + }, + }); +} + +let subSearchTerm = undefined; +let subSearchFuse = undefined; +const kFuseMaxWait = 125; + +async function fuseSearch(query, fuse, fuseOptions) { + let index = fuse; + // Fuse.js using the Bitap algorithm for text matching which runs in + // O(nm) time (no matter the structure of the text). In our case this + // means that long search terms mixed with large index gets very slow + // + // This injects a subIndex that will be used once the terms get long enough + // Usually making this subindex is cheap since there will typically be + // a subset of results matching the existing query + if (subSearchFuse !== undefined && query.startsWith(subSearchTerm)) { + // Use the existing subSearchFuse + index = subSearchFuse; + } else if (subSearchFuse !== undefined) { + // The term changed, discard the existing fuse + subSearchFuse = undefined; + subSearchTerm = undefined; + } + + // Search using the active fuse + const then = performance.now(); + const resultsRaw = await index.search(query, fuseOptions); + const now = performance.now(); + + const results = resultsRaw.map((result) => { + const addParam = (url, name, value) => { + const anchorParts = url.split("#"); + const baseUrl = anchorParts[0]; + const sep = baseUrl.search("\\?") > 0 ? "&" : "?"; + anchorParts[0] = baseUrl + sep + name + "=" + value; + return anchorParts.join("#"); + }; + + return { + title: result.item.title, + section: result.item.section, + href: addParam(result.item.href, kQueryArg, query), + text: highlightMatch(query, result.item.text), + crumbs: result.item.crumbs, + }; + }); + + // If we don't have a subfuse and the query is long enough, go ahead + // and create a subfuse to use for subsequent queries + if ( + now - then > kFuseMaxWait && + subSearchFuse === undefined && + resultsRaw.length < fuseOptions.limit + ) { + subSearchTerm = query; + subSearchFuse = new window.Fuse([], kFuseIndexOptions); + resultsRaw.forEach((rr) => { + subSearchFuse.add(rr.item); + }); + } + return results; +} diff --git a/docs/sitemap.xml b/docs/sitemap.xml new file mode 100644 index 0000000..f337115 --- /dev/null +++ b/docs/sitemap.xml @@ -0,0 +1,39 @@ + + + + http://graeter-group.github.io/kimmdy-reactions/_reference/dummyreaction.reaction.html + 2024-09-05T08:32:41.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/reaction.NaiveHAT.html + 2024-09-05T08:20:57.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/hat_naive.reaction.html + 2024-09-05T08:32:41.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/reaction.DummyReaction.html + 2024-09-05T08:20:57.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/homolysis.reaction.html + 2024-09-05T08:32:41.000Z + + + http://graeter-group.github.io/kimmdy-reactions/index.html + 2024-09-05T08:12:58.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/index.html + 2024-09-05T08:32:41.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/reaction.html + 2024-09-05T08:25:27.000Z + + + http://graeter-group.github.io/kimmdy-reactions/_reference/reaction.Homolysis.html + 2024-09-05T08:20:57.000Z + + diff --git a/index.qmd b/index.qmd new file mode 100644 index 0000000..4b68473 --- /dev/null +++ b/index.qmd @@ -0,0 +1 @@ +{{< include README.md >}} diff --git a/objects.json b/objects.json new file mode 100644 index 0000000..d215c47 --- /dev/null +++ b/objects.json @@ -0,0 +1 @@ +{"project": null, "version": "0.0.9999", "count": 6, "items": [{"name": "homolysis.reaction.Homolysis", "domain": "py", "role": "class", "priority": "1", "uri": "_reference/homolysis.reaction.html#homolysis.reaction.Homolysis", "dispname": "-"}, {"name": "homolysis.reaction", "domain": "py", "role": "module", "priority": "1", "uri": "_reference/homolysis.reaction.html#homolysis.reaction", "dispname": "-"}, {"name": "hat_naive.reaction.NaiveHAT", "domain": "py", "role": "class", "priority": "1", "uri": "_reference/hat_naive.reaction.html#hat_naive.reaction.NaiveHAT", "dispname": "-"}, {"name": "hat_naive.reaction", "domain": "py", "role": "module", "priority": "1", "uri": "_reference/hat_naive.reaction.html#hat_naive.reaction", "dispname": "-"}, {"name": "dummyreaction.reaction.DummyReaction", "domain": "py", "role": "class", "priority": "1", "uri": "_reference/dummyreaction.reaction.html#dummyreaction.reaction.DummyReaction", "dispname": "-"}, {"name": "dummyreaction.reaction", "domain": "py", "role": "module", "priority": "1", "uri": "_reference/dummyreaction.reaction.html#dummyreaction.reaction", "dispname": "-"}]} \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 63c0b2c..c84fa79 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,6 +23,16 @@ install_requires = python_requires = >= 3.9 +[options.extras_require] +dev = + pytest + tox + black + hypothesis + jupyter + griffe >= 0.33, < 1.0.0 + quartodoc + [options.package_data] dummyreaction = *.json diff --git a/www/theme-dark.scss b/www/theme-dark.scss new file mode 100644 index 0000000..8d37274 --- /dev/null +++ b/www/theme-dark.scss @@ -0,0 +1,32 @@ +/*-- scss:defaults --*/ + +// Base document colors +$body-bg: #050725; +$body-color: #ffffffde; +$link-color: #75AADB; + +$input-color: $link-color; + +$input-group-text-color: orange; + +// Navigation element colors +$footer-bg: #030316; +$navbar-bg: #030316; +$sidebar-bg: #030316; + +// Code blocks +$code-block-bg-alpha: -.90; + +/*-- scss:rules --*/ +.navbar-light .navbar-brand { + color: #ffffffde; +} + +pre code { + color: $body-color; +} + +:root { +// inline code + --bs-code-color: #769dff; +} diff --git a/www/theme.scss b/www/theme.scss new file mode 100644 index 0000000..6fa6aa3 --- /dev/null +++ b/www/theme.scss @@ -0,0 +1,55 @@ +@import url('https://fonts.googleapis.com/css2?family=Miriam+Libre&family=Roboto&display=swap'); + +/*-- scss:defaults --*/ +$brand-primary: #1E4287; +$primary: #1E4287; +/*$link-color: $brand-primary !default;*/ +$font-family-sans-serif: "Roboto", "Helvetica Neue", sans-serif !default; +$headings-font-family: "Miriam Libre"; +$font-family-monospace: "Fira Mono", Menlo, Consolas, monospace !default; +$gray-base: #000 !default; +$gray-dark: lighten($gray-base, 20%) !default; // #333 + +$code-color: #1E4287; + +/*-- scss:rules --*/ + +.video-container { + position: relative; + width: 100%; + padding-bottom: 56.25%; +} + +.video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} + +.code-copy-button { + z-index: 1; +} + +/* +* { + scrollbar-width: thin; + scrollbar-color: $brand-primary; +} + +*::-webkit-scrollbar { + width: 8px; +} + +*::-webkit-scrollbar-track { + background: $gray-dark $brand-primary; +} + +*::-webkit-scrollbar-thumb { + background-color: $brand-primary; + border-radius: 20px; + border: 1px solid $brand-primary; +} +*/ From 043222fd6531c61833c25b031ee7e4cebf602345 Mon Sep 17 00:00:00 2001 From: Jannik Buhr Date: Thu, 5 Sep 2024 12:39:02 +0200 Subject: [PATCH 4/4] interlink with kimmdy docs --- README.md | 3 +- _freeze/config/execute-results/html.json | 12 + _freeze/site_libs/clipboard/clipboard.min.js | 7 + _inv/kimmdy_objects.json | 1 + _quarto.yml | 9 +- config.qmd | 68 ++ docs/_reference/dummyreaction.reaction.html | 8 + docs/_reference/hat_naive.reaction.html | 8 + docs/_reference/homolysis.reaction.html | 8 + docs/_reference/index.html | 8 + docs/_reference/reaction.DummyReaction.html | 8 + docs/_reference/reaction.Homolysis.html | 8 + docs/_reference/reaction.NaiveHAT.html | 8 + docs/_reference/reaction.html | 8 + docs/config.html | 883 +++++++++++++++++++ docs/index.html | 10 +- docs/search.json | 134 +-- docs/sitemap.xml | 18 +- setup.cfg | 1 + 19 files changed, 1147 insertions(+), 63 deletions(-) create mode 100644 _freeze/config/execute-results/html.json create mode 100644 _freeze/site_libs/clipboard/clipboard.min.js create mode 100644 _inv/kimmdy_objects.json create mode 100644 config.qmd create mode 100644 docs/config.html diff --git a/README.md b/README.md index 3504644..ab013ba 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,8 @@ ## Documentation -See [KIMMDY documentation](https://graeter-group.github.io/kimmdy/). +See [KIMMDY documentation](https://graeter-group.github.io/kimmdy/) +and [documentation for these reactions](https://graeter-group.github.io/kimmdy-reactions/). ## Installation diff --git a/_freeze/config/execute-results/html.json b/_freeze/config/execute-results/html.json new file mode 100644 index 0000000..f42a2c2 --- /dev/null +++ b/_freeze/config/execute-results/html.json @@ -0,0 +1,12 @@ +{ + "hash": "80e294a73e06e47b40b43cfdbb332c36", + "result": { + "engine": "jupyter", + "markdown": "---\ntitle: All Options\n---\n\n\n\nFor all KIMMDY options see [here](https://graeter-group.github.io/kimmdy/guide/references/input.html#all-options).\n\n\n\n\n## Homolysis\n\n```yaml\nreactions:\n homolysis: ...\n```\n\n### edis\n\nDissociation energies data file\n\n\n**Type**: Path\n\n\n**Default**: edissoc.dat\n\n\n### itp\n\nAdditional itp file with bonded parameters\n\n\n**Type**: Path\n\n\n**Default**: ffbonded.itp\n\n\n### kmc\n\nKMC algorithm for this reaction.\n\n\n**Type**: str\n\n\n**Options**: ['rfkmc', 'frm', 'extrande', 'extrande_mod']\n\n\n**Default**: rfkmc\n\n\n### check_bound\n\nCheck the topology for bonds between plumed atom pairs\n\n\n**Type**: bool\n\n\n**Default**: False\n\n\n### arrhenius_equation\n\nFor setting values in the arrhenius equation\n\n\n\n\n## Dummy Reaction\n\n```yaml\nreactions:\n dummyreaction: ...\n```\n\n### example\n\nThis is an example of an option for a reaction.\n\n\n**Type**: float\n\n\n**Default**: 0.0\n\n\n### example2\n\nThis is another example of an option for a reaction.\n\n\n**Type**: str\n\n\n**Default**: hello\n\n\n### kmc\n\nKMC algorithm for this reaction.\n\n\n**Type**: str\n\n\n**Options**: ['rfkmc', 'frm', 'extrande', 'extrande_mod']\n\n\n**Default**: extrande_mod\n\n\n\n\n## Naive HAT\n\n```yaml\nreactions:\n hat_naive: ...\n```\n\n### frequency_factor\n\nFrequency factor\n\n\n**Type**: float\n\n\n**Default**: 1\n\n\n### h_cutoff\n\nCutoff for H atom\n\n\n**Type**: float\n\n\n**Default**: 4\n\n\n### polling_rate\n\nPolling rate\n\n\n**Type**: float\n\n\n**Default**: 1\n\n\n### kmc\n\nKMC algorithm for this reaction.\n\n\n**Type**: str\n\n\n**Options**: ['rfkmc', 'frm', 'extrande', 'extrande_mod']\n\n\n**Default**: extrande_mod\n\n\n\n\n", + "supporting": [ + "config_files" + ], + "filters": [], + "includes": {} + } +} \ No newline at end of file diff --git a/_freeze/site_libs/clipboard/clipboard.min.js b/_freeze/site_libs/clipboard/clipboard.min.js new file mode 100644 index 0000000..1103f81 --- /dev/null +++ b/_freeze/site_libs/clipboard/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v2.0.11 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=1
diff --git a/docs/_reference/hat_naive.reaction.html b/docs/_reference/hat_naive.reaction.html index e7422e2..d29670e 100644 --- a/docs/_reference/hat_naive.reaction.html +++ b/docs/_reference/hat_naive.reaction.html @@ -91,10 +91,18 @@
diff --git a/docs/_reference/homolysis.reaction.html b/docs/_reference/homolysis.reaction.html index 0c2ce74..468350d 100644 --- a/docs/_reference/homolysis.reaction.html +++ b/docs/_reference/homolysis.reaction.html @@ -91,10 +91,18 @@
diff --git a/docs/_reference/index.html b/docs/_reference/index.html index 5344cc6..e076177 100644 --- a/docs/_reference/index.html +++ b/docs/_reference/index.html @@ -90,10 +90,18 @@
diff --git a/docs/_reference/reaction.DummyReaction.html b/docs/_reference/reaction.DummyReaction.html index 27f1442..187ceac 100644 --- a/docs/_reference/reaction.DummyReaction.html +++ b/docs/_reference/reaction.DummyReaction.html @@ -89,10 +89,18 @@
diff --git a/docs/_reference/reaction.Homolysis.html b/docs/_reference/reaction.Homolysis.html index 64d7735..4e7bad3 100644 --- a/docs/_reference/reaction.Homolysis.html +++ b/docs/_reference/reaction.Homolysis.html @@ -89,10 +89,18 @@
diff --git a/docs/_reference/reaction.NaiveHAT.html b/docs/_reference/reaction.NaiveHAT.html index ee80f59..3904f2e 100644 --- a/docs/_reference/reaction.NaiveHAT.html +++ b/docs/_reference/reaction.NaiveHAT.html @@ -89,10 +89,18 @@
diff --git a/docs/_reference/reaction.html b/docs/_reference/reaction.html index 9d771bb..b0139ad 100644 --- a/docs/_reference/reaction.html +++ b/docs/_reference/reaction.html @@ -89,10 +89,18 @@
diff --git a/docs/config.html b/docs/config.html new file mode 100644 index 0000000..783322f --- /dev/null +++ b/docs/config.html @@ -0,0 +1,883 @@ + + + + + + + + + +config – KIMMDY-Reactions + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ +
+ + + + +
+ +
+
+

All Options

+
+ + + +
+ + + + +
+ + + +
+ + +

For all KIMMDY options see here.

+
+

Homolysis

+
reactions:
+  homolysis: ...
+
+

edis

+

Dissociation energies data file

+

Type: Path

+

Default: edissoc.dat

+
+
+

itp

+

Additional itp file with bonded parameters

+

Type: Path

+

Default: ffbonded.itp

+
+
+

kmc

+

KMC algorithm for this reaction.

+

Type: str

+

Options: [‘rfkmc’, ‘frm’, ‘extrande’, ‘extrande_mod’]

+

Default: rfkmc

+
+
+

check_bound

+

Check the topology for bonds between plumed atom pairs

+

Type: bool

+

Default: False

+
+
+

arrhenius_equation

+

For setting values in the arrhenius equation

+
+
+
+

Dummy Reaction

+
reactions:
+  dummyreaction: ...
+
+

example

+

This is an example of an option for a reaction.

+

Type: float

+

Default: 0.0

+
+
+

example2

+

This is another example of an option for a reaction.

+

Type: str

+

Default: hello

+
+
+

kmc

+

KMC algorithm for this reaction.

+

Type: str

+

Options: [‘rfkmc’, ‘frm’, ‘extrande’, ‘extrande_mod’]

+

Default: extrande_mod

+
+
+
+

Naive HAT

+
reactions:
+  hat_naive: ...
+
+

frequency_factor

+

Frequency factor

+

Type: float

+

Default: 1

+
+
+

h_cutoff

+

Cutoff for H atom

+

Type: float

+

Default: 4

+
+
+

polling_rate

+

Polling rate

+

Type: float

+

Default: 1

+
+
+

kmc

+

KMC algorithm for this reaction.

+

Type: str

+

Options: [‘rfkmc’, ‘frm’, ‘extrande’, ‘extrande_mod’]

+

Default: extrande_mod

+ + +
+
+ + Back to top
+ +
+ + + + + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 06c1319..b0b8b2f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -123,10 +123,18 @@
@@ -189,7 +197,7 @@

A collection of simple reactions for KIMMDY

Documentation

-

See KIMMDY documentation.

+

See KIMMDY documentation and documentation for these reactions.

Installation

diff --git a/docs/search.json b/docs/search.json index f4ca51d..aad28be 100644 --- a/docs/search.json +++ b/docs/search.json @@ -31,58 +31,75 @@ "text": "reaction.NaiveHAT\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n Back to top" }, { - "objectID": "_reference/hat_naive.reaction.html", - "href": "_reference/hat_naive.reaction.html", - "title": "hat_naive.reaction", + "objectID": "config.html", + "href": "config.html", + "title": "All Options", "section": "", - "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nNaiveHAT\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random", - "crumbs": [ - "Reference", - "Naive HAT", - "hat_naive.reaction" - ] + "text": "For all KIMMDY options see here." }, { - "objectID": "_reference/hat_naive.reaction.html#classes", - "href": "_reference/hat_naive.reaction.html#classes", - "title": "hat_naive.reaction", + "objectID": "config.html#homolysis", + "href": "config.html#homolysis", + "title": "All Options", + "section": "Homolysis", + "text": "Homolysis\nreactions:\n homolysis: ...\n\nedis\nDissociation energies data file\nType: Path\nDefault: edissoc.dat\n\n\nitp\nAdditional itp file with bonded parameters\nType: Path\nDefault: ffbonded.itp\n\n\nkmc\nKMC algorithm for this reaction.\nType: str\nOptions: [‘rfkmc’, ‘frm’, ‘extrande’, ‘extrande_mod’]\nDefault: rfkmc\n\n\ncheck_bound\nCheck the topology for bonds between plumed atom pairs\nType: bool\nDefault: False\n\n\narrhenius_equation\nFor setting values in the arrhenius equation" + }, + { + "objectID": "config.html#dummy-reaction", + "href": "config.html#dummy-reaction", + "title": "All Options", + "section": "Dummy Reaction", + "text": "Dummy Reaction\nreactions:\n dummyreaction: ...\n\nexample\nThis is an example of an option for a reaction.\nType: float\nDefault: 0.0\n\n\nexample2\nThis is another example of an option for a reaction.\nType: str\nDefault: hello\n\n\nkmc\nKMC algorithm for this reaction.\nType: str\nOptions: [‘rfkmc’, ‘frm’, ‘extrande’, ‘extrande_mod’]\nDefault: extrande_mod" + }, + { + "objectID": "config.html#naive-hat", + "href": "config.html#naive-hat", + "title": "All Options", + "section": "Naive HAT", + "text": "Naive HAT\nreactions:\n hat_naive: ...\n\nfrequency_factor\nFrequency factor\nType: float\nDefault: 1\n\n\nh_cutoff\nCutoff for H atom\nType: float\nDefault: 4\n\n\npolling_rate\nPolling rate\nType: float\nDefault: 1\n\n\nkmc\nKMC algorithm for this reaction.\nType: str\nOptions: [‘rfkmc’, ‘frm’, ‘extrande’, ‘extrande_mod’]\nDefault: extrande_mod" + }, + { + "objectID": "_reference/index.html", + "href": "_reference/index.html", + "title": "References", "section": "", - "text": "Name\nDescription\n\n\n\n\nNaiveHAT\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random", + "text": "homolysis.reaction\n\n\n\n\n\n\n\n\n\n\nhat_naive.reaction\n\n\n\n\n\n\n\n\n\n\ndummyreaction.reaction", "crumbs": [ "Reference", - "Naive HAT", - "hat_naive.reaction" + "References" ] }, { - "objectID": "_reference/reaction.DummyReaction.html", - "href": "_reference/reaction.DummyReaction.html", - "title": "reaction.DummyReaction", + "objectID": "_reference/index.html#homolysis", + "href": "_reference/index.html#homolysis", + "title": "References", "section": "", - "text": "reaction.DummyReaction\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n Back to top" + "text": "homolysis.reaction", + "crumbs": [ + "Reference", + "References" + ] }, { - "objectID": "_reference/homolysis.reaction.html", - "href": "_reference/homolysis.reaction.html", - "title": "homolysis.reaction", + "objectID": "_reference/index.html#naive-hat", + "href": "_reference/index.html#naive-hat", + "title": "References", "section": "", - "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nHomolysis\nHomolytic bond breaking leading to 2 radicals.\n\n\n\n\n\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates", + "text": "hat_naive.reaction", "crumbs": [ "Reference", - "Homolysis", - "homolysis.reaction" + "References" ] }, { - "objectID": "_reference/homolysis.reaction.html#classes", - "href": "_reference/homolysis.reaction.html#classes", - "title": "homolysis.reaction", + "objectID": "_reference/index.html#dummyreaction", + "href": "_reference/index.html#dummyreaction", + "title": "References", "section": "", - "text": "Name\nDescription\n\n\n\n\nHomolysis\nHomolytic bond breaking leading to 2 radicals.\n\n\n\n\n\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates", + "text": "dummyreaction.reaction", "crumbs": [ "Reference", - "Homolysis", - "homolysis.reaction" + "References" ] }, { @@ -90,14 +107,14 @@ "href": "index.html", "title": "A collection of simple reactions for KIMMDY", "section": "", - "text": "test latest release\n\n\n\n\nSee KIMMDY documentation.\n\n\n\nTogether with KIMMDY\npip installl kimmdy[reactions]\nTo install it separatly:\npip install kimmdy-reactions\n\n\n\n\nImplement your reaction as a subclass of kimmdy.reaction.Reaction\nRegister your Reaction class in the [options.entry_points] section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy!" + "text": "test latest release\n\n\n\n\nSee KIMMDY documentation and documentation for these reactions.\n\n\n\nTogether with KIMMDY\npip installl kimmdy[reactions]\nTo install it separatly:\npip install kimmdy-reactions\n\n\n\n\nImplement your reaction as a subclass of kimmdy.reaction.Reaction\nRegister your Reaction class in the [options.entry_points] section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy!" }, { "objectID": "index.html#documentation", "href": "index.html#documentation", "title": "A collection of simple reactions for KIMMDY", "section": "", - "text": "See KIMMDY documentation." + "text": "See KIMMDY documentation and documentation for these reactions." }, { "objectID": "index.html#installation", @@ -114,47 +131,58 @@ "text": "Implement your reaction as a subclass of kimmdy.reaction.Reaction\nRegister your Reaction class in the [options.entry_points] section in the setup.cfg. The name you give here must match the entry in the config.yml for Kimmdy!" }, { - "objectID": "_reference/index.html", - "href": "_reference/index.html", - "title": "References", + "objectID": "_reference/homolysis.reaction.html", + "href": "_reference/homolysis.reaction.html", + "title": "homolysis.reaction", "section": "", - "text": "homolysis.reaction\n\n\n\n\n\n\n\n\n\n\nhat_naive.reaction\n\n\n\n\n\n\n\n\n\n\ndummyreaction.reaction", + "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nHomolysis\nHomolytic bond breaking leading to 2 radicals.\n\n\n\n\n\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates", "crumbs": [ "Reference", - "References" + "Homolysis", + "homolysis.reaction" ] }, { - "objectID": "_reference/index.html#homolysis", - "href": "_reference/index.html#homolysis", - "title": "References", + "objectID": "_reference/homolysis.reaction.html#classes", + "href": "_reference/homolysis.reaction.html#classes", + "title": "homolysis.reaction", "section": "", - "text": "homolysis.reaction", + "text": "Name\nDescription\n\n\n\n\nHomolysis\nHomolytic bond breaking leading to 2 radicals.\n\n\n\n\n\nreaction.Homolysis()\nHomolytic bond breaking leading to 2 radicals. Implementation for time-varying rates", "crumbs": [ "Reference", - "References" + "Homolysis", + "homolysis.reaction" ] }, { - "objectID": "_reference/index.html#naive-hat", - "href": "_reference/index.html#naive-hat", - "title": "References", + "objectID": "_reference/reaction.DummyReaction.html", + "href": "_reference/reaction.DummyReaction.html", + "title": "reaction.DummyReaction", "section": "", - "text": "hat_naive.reaction", + "text": "reaction.DummyReaction\nreaction.DummyReaction()\nDummy reaction, returns empty RecipeCollection\n\n\n\n\n Back to top" + }, + { + "objectID": "_reference/hat_naive.reaction.html", + "href": "_reference/hat_naive.reaction.html", + "title": "hat_naive.reaction", + "section": "", + "text": "reaction\n\n\n\n\n\nName\nDescription\n\n\n\n\nNaiveHAT\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random", "crumbs": [ "Reference", - "References" + "Naive HAT", + "hat_naive.reaction" ] }, { - "objectID": "_reference/index.html#dummyreaction", - "href": "_reference/index.html#dummyreaction", - "title": "References", + "objectID": "_reference/hat_naive.reaction.html#classes", + "href": "_reference/hat_naive.reaction.html#classes", + "title": "hat_naive.reaction", "section": "", - "text": "dummyreaction.reaction", + "text": "Name\nDescription\n\n\n\n\nNaiveHAT\nNaive HAT reaction, selects hydrogens at random\n\n\n\n\n\nreaction.NaiveHAT()\nNaive HAT reaction, selects hydrogens at random", "crumbs": [ "Reference", - "References" + "Naive HAT", + "hat_naive.reaction" ] }, { diff --git a/docs/sitemap.xml b/docs/sitemap.xml index f337115..63f6b6f 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -9,23 +9,27 @@ 2024-09-05T08:20:57.000Z - http://graeter-group.github.io/kimmdy-reactions/_reference/hat_naive.reaction.html - 2024-09-05T08:32:41.000Z + http://graeter-group.github.io/kimmdy-reactions/config.html + 2024-09-05T10:27:12.000Z - http://graeter-group.github.io/kimmdy-reactions/_reference/reaction.DummyReaction.html - 2024-09-05T08:20:57.000Z + http://graeter-group.github.io/kimmdy-reactions/_reference/index.html + 2024-09-05T10:38:40.000Z + + + http://graeter-group.github.io/kimmdy-reactions/index.html + 2024-09-05T08:12:58.000Z http://graeter-group.github.io/kimmdy-reactions/_reference/homolysis.reaction.html 2024-09-05T08:32:41.000Z - http://graeter-group.github.io/kimmdy-reactions/index.html - 2024-09-05T08:12:58.000Z + http://graeter-group.github.io/kimmdy-reactions/_reference/reaction.DummyReaction.html + 2024-09-05T08:20:57.000Z - http://graeter-group.github.io/kimmdy-reactions/_reference/index.html + http://graeter-group.github.io/kimmdy-reactions/_reference/hat_naive.reaction.html 2024-09-05T08:32:41.000Z diff --git a/setup.cfg b/setup.cfg index c84fa79..8068545 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,6 +25,7 @@ python_requires = >= 3.9 [options.extras_require] dev = + kimmdy pytest tox black